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/ruamel-yaml/
Date: Sun, 03 Oct 2021 19:27:16
Message-Id: 1633289199.c664f1e0995b72ab0d346f272ebfe3bd1a36610b.mgorny@gentoo
1 commit: c664f1e0995b72ab0d346f272ebfe3bd1a36610b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 3 19:26:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 3 19:26:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c664f1e0
7
8 dev-python/ruamel-yaml: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ruamel-yaml/Manifest | 2 -
13 dev-python/ruamel-yaml/ruamel-yaml-0.17.10.ebuild | 50 -----------------------
14 dev-python/ruamel-yaml/ruamel-yaml-0.17.15.ebuild | 47 ---------------------
15 3 files changed, 99 deletions(-)
16
17 diff --git a/dev-python/ruamel-yaml/Manifest b/dev-python/ruamel-yaml/Manifest
18 index 457d7cb0742..436be85cfdc 100644
19 --- a/dev-python/ruamel-yaml/Manifest
20 +++ b/dev-python/ruamel-yaml/Manifest
21 @@ -1,3 +1 @@
22 -DIST ruamel-yaml-0.17.10.tar.xz 183116 BLAKE2B 2795f470a3f7da609780109dfac502a5b47184f465c68420f467209275c8857418a4ec7424e130df2e7acef614d93f91551910eceb06cd9e49b365bb23d2a015 SHA512 3cd2598fa37564c44c74720e72babcd2252b2dbcdde626bdcf771b591da5d2852d90bb1f22428e28cd7ec38304be2a437aa0569ffbd3ebb526b2b79a955bc88d
23 -DIST ruamel.yaml-0.17.15.tar.xz 183820 BLAKE2B 901c08d05994a45cb9d8e7071244332c7b3f30fb83f22f9f2f9cfb769ec99ebc39fbdbcf652bc8e7ae8e5b9918aafbc229bcfcbeb1b7d64bd4bed2f8fe0d9ee7 SHA512 cd2fd4d0e2aba1f3f90bd54b355fa603045e913f90c7e460bcc4630619db027b1283af77c613fdc029f48300d8822ca349fb169e30679a1dd86beb1a3f75c49f
24 DIST ruamel.yaml-0.17.16.tar.xz 183884 BLAKE2B 3f7b0995cfa49ed9e19b5dafbddc7514f58ab23186410b4a718027112be471d9136675259800e0136b21ad6d1645c364f14ac071dc10d12a5f60aefdc05bc56f SHA512 7da1e5c229b78ecdccd648fb6a734095c0a1e0848eaf46af93e6ce69f5e065cdd07eb65217f8b3e4c82ce383dc11de07a1345026c6782aa26c4ad0f5a85fd80f
25
26 diff --git a/dev-python/ruamel-yaml/ruamel-yaml-0.17.10.ebuild b/dev-python/ruamel-yaml/ruamel-yaml-0.17.10.ebuild
27 deleted file mode 100644
28 index 86fa6a9be48..00000000000
29 --- a/dev-python/ruamel-yaml/ruamel-yaml-0.17.10.ebuild
30 +++ /dev/null
31 @@ -1,50 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
38 -
39 -inherit distutils-r1
40 -
41 -MY_PN="${PN//-/.}"
42 -MY_P="${MY_PN}-${PV}"
43 -
44 -DESCRIPTION="YAML parser/emitter that supports roundtrip comment preservation"
45 -HOMEPAGE="
46 - https://pypi.org/project/ruamel.yaml/
47 - https://sourceforge.net/p/ruamel-yaml/"
48 -# PyPI tarballs do not include tests
49 -SRC_URI="mirror://sourceforge/ruamel-dl-tagged-releases/${MY_P}.tar.xz -> ${P}.tar.xz"
50 -S="${WORKDIR}"/${MY_P}
51 -
52 -LICENSE="MIT"
53 -SLOT="0"
54 -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
55 -
56 -RDEPEND="
57 - dev-python/namespace-ruamel[${PYTHON_USEDEP}]
58 - dev-python/ruamel-yaml-clib[${PYTHON_USEDEP}]"
59 -BDEPEND="
60 - test? (
61 - dev-python/ruamel-std-pathlib[${PYTHON_USEDEP}]
62 - )"
63 -
64 -distutils_enable_tests pytest
65 -
66 -# Old PyYAML tests from lib/ require special set-up and are invoked indirectly
67 -# via test_z_olddata, tell pytest itself to leave the subdir alone.
68 -python_test() {
69 - local deselect=()
70 -
71 - [[ ${EPYTHON} == pypy3 ]] && deselect+=(
72 - _test/test_deprecation.py::test_collections_deprecation
73 - )
74 -
75 - epytest --ignore _test/lib/ ${deselect[@]/#/--deselect }
76 -}
77 -
78 -python_install() {
79 - distutils-r1_python_install --single-version-externally-managed
80 - find "${ED}" -name '*.pth' -delete || die
81 -}
82
83 diff --git a/dev-python/ruamel-yaml/ruamel-yaml-0.17.15.ebuild b/dev-python/ruamel-yaml/ruamel-yaml-0.17.15.ebuild
84 deleted file mode 100644
85 index f87789872e5..00000000000
86 --- a/dev-python/ruamel-yaml/ruamel-yaml-0.17.15.ebuild
87 +++ /dev/null
88 @@ -1,47 +0,0 @@
89 -# Copyright 1999-2021 Gentoo Authors
90 -# Distributed under the terms of the GNU General Public License v2
91 -
92 -EAPI=8
93 -
94 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
95 -inherit distutils-r1
96 -
97 -MY_P="${P/-/.}"
98 -DESCRIPTION="YAML parser/emitter that supports roundtrip comment preservation"
99 -HOMEPAGE="
100 - https://pypi.org/project/ruamel.yaml/
101 - https://sourceforge.net/p/ruamel-yaml/"
102 -# PyPI tarballs do not include tests
103 -SRC_URI="mirror://sourceforge/ruamel-dl-tagged-releases/${MY_P}.tar.xz"
104 -S="${WORKDIR}"/${MY_P}
105 -
106 -LICENSE="MIT"
107 -SLOT="0"
108 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
109 -
110 -RDEPEND="
111 - dev-python/namespace-ruamel[${PYTHON_USEDEP}]
112 - dev-python/ruamel-yaml-clib[${PYTHON_USEDEP}]"
113 -BDEPEND="
114 - test? (
115 - dev-python/ruamel-std-pathlib[${PYTHON_USEDEP}]
116 - )"
117 -
118 -distutils_enable_tests pytest
119 -
120 -# Old PyYAML tests from lib/ require special set-up and are invoked indirectly
121 -# via test_z_olddata, tell pytest itself to leave the subdir alone.
122 -python_test() {
123 - local deselect=()
124 -
125 - [[ ${EPYTHON} == pypy3 ]] && deselect+=(
126 - _test/test_deprecation.py::test_collections_deprecation
127 - )
128 -
129 - epytest --ignore _test/lib/ ${deselect[@]/#/--deselect }
130 -}
131 -
132 -python_install() {
133 - distutils-r1_python_install --single-version-externally-managed
134 - find "${ED}" -name '*.pth' -delete || die
135 -}