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/yamlpath/
Date: Wed, 28 Sep 2022 18:34:32
Message-Id: 1664389981.5769ebe6e8b85ff5b250204ba7e155d7adfcc4b2.mgorny@gentoo
1 commit: 5769ebe6e8b85ff5b250204ba7e155d7adfcc4b2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 18:11:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 18:33:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5769ebe6
7
8 dev-python/yamlpath: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/yamlpath/Manifest | 3 --
13 dev-python/yamlpath/yamlpath-3.6.4.ebuild | 50 -----------------------------
14 dev-python/yamlpath/yamlpath-3.6.5.ebuild | 50 -----------------------------
15 dev-python/yamlpath/yamlpath-3.6.6.ebuild | 52 -------------------------------
16 4 files changed, 155 deletions(-)
17
18 diff --git a/dev-python/yamlpath/Manifest b/dev-python/yamlpath/Manifest
19 index 25aa199e16b7..a562dc54191e 100644
20 --- a/dev-python/yamlpath/Manifest
21 +++ b/dev-python/yamlpath/Manifest
22 @@ -1,4 +1 @@
23 -DIST yamlpath-3.6.4.gh.tar.gz 216016 BLAKE2B fc6537b7c80ecfb9f69c646970e43935374bb105df007c123cf837eb1de6827ac2cc443294b69500c966ea6bc5d7f56498aec13340238c7660118f17cc6685e5 SHA512 eb1ac0d5861818f4f4b57b07f9fa7f758846982abbb3ac4ec58a1adaca8ec36deba1e21ce3e13916e74a946512f4d66e341a9d45392ef7133d0293e5fd6f66c9
24 -DIST yamlpath-3.6.5.gh.tar.gz 216508 BLAKE2B df1d849840356eb75d9e19a5b53ec94ce140d7474be2fde19ab7f438229d347f247ee3c0f25cef4948f71d95d6935aebc0f8e58bc869083849820f9d641d7f22 SHA512 1d80514516eb573b0c644af7eaab7211714e271cc4334db5d965e2da58f06d26b3cdcb8c1412d03151a196e1b48aeb0c0d5038364a09907bb2af1efa71dd71f3
25 -DIST yamlpath-3.6.6.gh.tar.gz 222605 BLAKE2B b8e4345e68bb03b9aa48f31813ead149a1e547bab36deacfc255b6d8bb62148ed11bed6495e3e8db14b48859717ee87386e6d740c8b33dbf16bf4923bc19bbcf SHA512 3699cd2af82c77b29de60d0912dd5fc858a7b10ac960a8944dd0566073a7bdf5bccc6378d5aa6e52498482e51aa00cb2cae53f2a089308617d1358d744b5efcc
26 DIST yamlpath-3.6.7.gh.tar.gz 219770 BLAKE2B 779b94f6aff7e6430c89508145d85d2b7b5ddb4bc1070fd68d402e27b7bf596c7e68f1bfb8683791ea2572ef6d01fe5f2de4fd646be32b8ab266747371f61f36 SHA512 7313d3eaa9268d4c2acb1bc87052068498840943be503fa160833c03f372e5c6d7604572d277b70c551784fd8c9507e084f12dd651b5c4f600f69e8ee7cefb62
27
28 diff --git a/dev-python/yamlpath/yamlpath-3.6.4.ebuild b/dev-python/yamlpath/yamlpath-3.6.4.ebuild
29 deleted file mode 100644
30 index caea22ecdf53..000000000000
31 --- a/dev-python/yamlpath/yamlpath-3.6.4.ebuild
32 +++ /dev/null
33 @@ -1,50 +0,0 @@
34 -# Copyright 2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=8
38 -
39 -PYTHON_COMPAT=( python3_{8..10} )
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Command-line processors for YAML/JSON/Compatible data"
43 -HOMEPAGE="https://github.com/wwkimball/yamlpath https://github.com/wwkimball/yamlpath/wiki"
44 -SRC_URI="
45 - https://github.com/wwkimball/yamlpath/archive/v${PV}.tar.gz
46 - -> ${P}.gh.tar.gz
47 -"
48 -
49 -LICENSE="ISC"
50 -SLOT="0"
51 -KEYWORDS="~amd64"
52 -
53 -RDEPEND="
54 - dev-python/ruamel-yaml[${PYTHON_USEDEP}]
55 -"
56 -BDEPEND="
57 - test? (
58 - dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
59 - dev-ruby/hiera-eyaml
60 - )
61 -"
62 -
63 -distutils_enable_tests --install pytest
64 -
65 -python_prepare_all() {
66 - sed -e '/ruamel\.yaml/d' \
67 - -e '/pytest-cov/d' \
68 - -e "/find_packages/s/()/(exclude=\['tests'\])/" \
69 - -i setup.py || die
70 -
71 - distutils-r1_python_prepare_all
72 -}
73 -
74 -python_install() {
75 - distutils-r1_python_install
76 -
77 - # install and optimize yamlpath/patches/aliasstyle.py
78 - local sitedir=$(python_get_sitedir)
79 - [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory"
80 - insinto "${sitedir}/yamlpath"
81 - doins -r "${S}/yamlpath/patches"
82 - python_optimize "${D}${sitedir}"
83 -}
84
85 diff --git a/dev-python/yamlpath/yamlpath-3.6.5.ebuild b/dev-python/yamlpath/yamlpath-3.6.5.ebuild
86 deleted file mode 100644
87 index e236b9aeee0e..000000000000
88 --- a/dev-python/yamlpath/yamlpath-3.6.5.ebuild
89 +++ /dev/null
90 @@ -1,50 +0,0 @@
91 -# Copyright 2021-2022 Gentoo Authors
92 -# Distributed under the terms of the GNU General Public License v2
93 -
94 -EAPI=8
95 -
96 -PYTHON_COMPAT=( python3_{8..11} )
97 -inherit distutils-r1
98 -
99 -DESCRIPTION="Command-line processors for YAML/JSON/Compatible data"
100 -HOMEPAGE="https://github.com/wwkimball/yamlpath https://github.com/wwkimball/yamlpath/wiki"
101 -SRC_URI="
102 - https://github.com/wwkimball/yamlpath/archive/v${PV}.tar.gz
103 - -> ${P}.gh.tar.gz
104 -"
105 -
106 -LICENSE="ISC"
107 -SLOT="0"
108 -KEYWORDS="~amd64"
109 -
110 -RDEPEND="
111 - dev-python/ruamel-yaml[${PYTHON_USEDEP}]
112 -"
113 -BDEPEND="
114 - test? (
115 - dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
116 - dev-ruby/hiera-eyaml
117 - )
118 -"
119 -
120 -distutils_enable_tests --install pytest
121 -
122 -python_prepare_all() {
123 - sed -e '/ruamel\.yaml/d' \
124 - -e '/pytest-cov/d' \
125 - -e "/find_packages/s/()/(exclude=\['tests'\])/" \
126 - -i setup.py || die
127 -
128 - distutils-r1_python_prepare_all
129 -}
130 -
131 -python_install() {
132 - distutils-r1_python_install
133 -
134 - # install and optimize yamlpath/patches/aliasstyle.py
135 - local sitedir=$(python_get_sitedir)
136 - [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory"
137 - insinto "${sitedir}/yamlpath"
138 - doins -r "${S}/yamlpath/patches"
139 - python_optimize "${D}${sitedir}"
140 -}
141
142 diff --git a/dev-python/yamlpath/yamlpath-3.6.6.ebuild b/dev-python/yamlpath/yamlpath-3.6.6.ebuild
143 deleted file mode 100644
144 index 1517368d7013..000000000000
145 --- a/dev-python/yamlpath/yamlpath-3.6.6.ebuild
146 +++ /dev/null
147 @@ -1,52 +0,0 @@
148 -# Copyright 2021-2022 Gentoo Authors
149 -# Distributed under the terms of the GNU General Public License v2
150 -
151 -EAPI=8
152 -
153 -PYTHON_COMPAT=( python3_{8..11} )
154 -inherit distutils-r1
155 -
156 -DESCRIPTION="Command-line processors for YAML/JSON/Compatible data"
157 -HOMEPAGE="https://github.com/wwkimball/yamlpath https://github.com/wwkimball/yamlpath/wiki"
158 -SRC_URI="
159 - https://github.com/wwkimball/yamlpath/archive/v${PV}.tar.gz
160 - -> ${P}.gh.tar.gz
161 -"
162 -
163 -LICENSE="ISC"
164 -SLOT="0"
165 -KEYWORDS="~amd64"
166 -
167 -RDEPEND="
168 - dev-python/ruamel-yaml[${PYTHON_USEDEP}]
169 -"
170 -BDEPEND="
171 - test? (
172 - dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
173 - dev-ruby/hiera-eyaml
174 - )
175 -"
176 -
177 -distutils_enable_tests --install pytest
178 -
179 -python_prepare_all() {
180 - sed -e '/ruamel\.yaml/d' \
181 - -e '/pytest-cov/d' \
182 - -e "/find_packages/s/()/(exclude=\['tests'\])/" \
183 - -i setup.py || die
184 -
185 - touch yamlpath/patches/__init__.py || die
186 -
187 - distutils-r1_python_prepare_all
188 -}
189 -
190 -python_install() {
191 - distutils-r1_python_install
192 -
193 - # install and optimize yamlpath/patches/aliasstyle.py
194 - local sitedir=$(python_get_sitedir)
195 - [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory"
196 - insinto "${sitedir}/yamlpath"
197 - doins -r "${S}/yamlpath/patches"
198 - python_optimize "${D}${sitedir}"
199 -}