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 91C68138359 for ; Wed, 11 Nov 2020 15:41:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2D27E0BC6; Wed, 11 Nov 2020 15:41:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BDC4BE0BC6 for ; Wed, 11 Nov 2020 15:41:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E403C340D3A for ; Wed, 11 Nov 2020 15:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F48B3F6 for ; Wed, 11 Nov 2020 15:41:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1605109295.806a95ff5e7c934e9fe02c2ecc40ab6c3ce80ebd.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 806a95ff5e7c934e9fe02c2ecc40ab6c3ce80ebd X-VCS-Branch: master Date: Wed, 11 Nov 2020 15:41:46 +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: d9e2a7cd-43d2-4401-8ca0-cbc590283eb7 X-Archives-Hash: 6bf2c9ed03c87a5f97ce7c74898ab298 commit: 806a95ff5e7c934e9fe02c2ecc40ab6c3ce80ebd Author: Sam James gentoo org> AuthorDate: Wed Nov 11 15:41:02 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Nov 11 15:41:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=806a95ff Revert "dev-python/pyaml: yaml readable serializer" Removes duplicate package of dev-python/pretty-yaml. This reverts commit df9570f0e458c9013a2103630b473c0f7186628c. Closes: https://bugs.gentoo.org/753976 Signed-off-by: Sam James 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 deletions(-) diff --git a/dev-python/pyaml/Manifest b/dev-python/pyaml/Manifest deleted file mode 100644 index 32b92a64403..00000000000 --- a/dev-python/pyaml/Manifest +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 48318551267..00000000000 --- a/dev-python/pyaml/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - 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 deleted file mode 100644 index e958c5ef424..00000000000 --- a/dev-python/pyaml/pyaml-20.4.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# 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}" -}