From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0CDA138359 for ; Mon, 9 Nov 2020 14:02:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19E0CE07D7; Mon, 9 Nov 2020 14:02:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 356E6E07D7 for ; Mon, 9 Nov 2020 14:02:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCAAB340BE2 for ; Mon, 9 Nov 2020 14:02:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94FC4446 for ; Mon, 9 Nov 2020 14:02:07 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1604930506.df9570f0e458c9013a2103630b473c0f7186628c.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyaml/Manifest dev-python/pyaml/metadata.xml dev-python/pyaml/pyaml-20.4.0.ebuild X-VCS-Directories: dev-python/pyaml/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: df9570f0e458c9013a2103630b473c0f7186628c X-VCS-Branch: master Date: Mon, 9 Nov 2020 14:02:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d50e337d-0c9c-429b-a8ed-883749aeb87a X-Archives-Hash: a98dd0ba998c192f29d722d7e49cf18f commit: df9570f0e458c9013a2103630b473c0f7186628c Author: Aisha Tammy aisha cc> AuthorDate: Fri Oct 16 15:05:00 2020 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Nov 9 14:01:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9570f0 dev-python/pyaml: yaml readable serializer dependency for dev-python/scikit-optimize Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> Signed-off-by: Benda Xu gentoo.org> dev-python/pyaml/Manifest | 1 + dev-python/pyaml/metadata.xml | 12 ++++++++++++ dev-python/pyaml/pyaml-20.4.0.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/pyaml/Manifest b/dev-python/pyaml/Manifest new file mode 100644 index 00000000000..32b92a64403 --- /dev/null +++ b/dev-python/pyaml/Manifest @@ -0,0 +1 @@ +DIST pyaml-20.4.0.tar.gz 21176 BLAKE2B 0aac0250d610d7b2ef042e251142de4520e7db96073d46bde0dcb37ad43d9c278cbdfc7ab247b4d41c7c30e893306aa47b25a584a2aa4c157d66203b8e140895 SHA512 432fd215e034beafc07270a6aa8b726d5a16ef8946a95c1db9a34b4f492bbe2089dffbb1ce856d3e8153ec18ac943973a23e3aa9283d53ee0b2e7ba5dcd3d317 diff --git a/dev-python/pyaml/metadata.xml b/dev-python/pyaml/metadata.xml new file mode 100644 index 00000000000..48318551267 --- /dev/null +++ b/dev-python/pyaml/metadata.xml @@ -0,0 +1,12 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + sci@gentoo.org + Gentoo Science Project + + diff --git a/dev-python/pyaml/pyaml-20.4.0.ebuild b/dev-python/pyaml/pyaml-20.4.0.ebuild new file mode 100644 index 00000000000..e958c5ef424 --- /dev/null +++ b/dev-python/pyaml/pyaml-20.4.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +inherit distutils-r1 + +DESCRIPTION="pretty and readable YAML-serialized data generator" +HOMEPAGE="https://github.com/mk-fg/pretty-yaml" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/unidecode[${PYTHON_USEDEP}] +" + +python_test() { + ${EPYTHON} pyaml/tests/dump.py || die "tests failed with ${EPYTHON}" +}