Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pretty-yaml/
Date: Fri, 31 Jul 2020 06:21:13
Message-Id: 1596176457.d1cec360ca487f53c03fea745d1269b7314a8c0e.mgorny@gentoo
1 commit: d1cec360ca487f53c03fea745d1269b7314a8c0e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:35:51 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:20:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cec360
7
8 dev-python/pretty-yaml: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pretty-yaml/Manifest | 1 -
13 dev-python/pretty-yaml/pretty-yaml-15.8.2.ebuild | 32 ------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/pretty-yaml/Manifest b/dev-python/pretty-yaml/Manifest
17 index f9cb3f79a40..32b92a64403 100644
18 --- a/dev-python/pretty-yaml/Manifest
19 +++ b/dev-python/pretty-yaml/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyaml-15.8.2.tar.gz 16544 BLAKE2B 1e9820c172bb0c2e05c78f5dee3299c6bb0d83e2c658f3cd45322abac3404af1c9dd1f3b00e2c7b285cbd00c17d382c82cbb16b96bbac10021a0ca1a008d0287 SHA512 74f1fdacdd601f0b6f710457627e4dcbc42e7301fe5faa061d3e8d593842d6e5dd85041625aba576bba9cda2a713ee07ca3067221a720cbddc6dcd417fccee64
22 DIST pyaml-20.4.0.tar.gz 21176 BLAKE2B 0aac0250d610d7b2ef042e251142de4520e7db96073d46bde0dcb37ad43d9c278cbdfc7ab247b4d41c7c30e893306aa47b25a584a2aa4c157d66203b8e140895 SHA512 432fd215e034beafc07270a6aa8b726d5a16ef8946a95c1db9a34b4f492bbe2089dffbb1ce856d3e8153ec18ac943973a23e3aa9283d53ee0b2e7ba5dcd3d317
23
24 diff --git a/dev-python/pretty-yaml/pretty-yaml-15.8.2.ebuild b/dev-python/pretty-yaml/pretty-yaml-15.8.2.ebuild
25 deleted file mode 100644
26 index 0a7759c4537..00000000000
27 --- a/dev-python/pretty-yaml/pretty-yaml-15.8.2.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{6..9} )
35 -
36 -inherit distutils-r1
37 -
38 -MY_PN="${PN//retty-}"
39 -DESCRIPTION="PyYAML-based module to produce pretty and readable YAML-serialized data"
40 -HOMEPAGE="https://github.com/mk-fg/pretty-yaml"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
42 -
43 -LICENSE="WTFPL-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
50 -DEPEND="
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? (
53 - ${RDEPEND}
54 - dev-python/unidecode[${PYTHON_USEDEP}]
55 - )"
56 -
57 -S="${WORKDIR}/${MY_PN}-${PV}"
58 -
59 -python_test() {
60 - "${PYTHON}" pyaml/tests/dump.py || die "tests failed under ${EPYTHON}"
61 -}