Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/yq/
Date: Sat, 03 Oct 2020 17:38:46
Message-Id: 1601746478.1caf6b1ffc6b4343baebd74347b65e78c2f6f3ef.zmedico@gentoo
1 commit: 1caf6b1ffc6b4343baebd74347b65e78c2f6f3ef
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 17:34:38 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 17:34:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1caf6b1f
7
8 app-misc/yq: Remove old versions
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 app-misc/yq/Manifest | 3 ---
14 app-misc/yq/yq-2.7.1-r1.ebuild | 38 --------------------------------------
15 app-misc/yq/yq-2.7.2.ebuild | 38 --------------------------------------
16 app-misc/yq/yq-2.8.0.ebuild | 38 --------------------------------------
17 app-misc/yq/yq-2.9.2.ebuild | 38 --------------------------------------
18 5 files changed, 155 deletions(-)
19
20 diff --git a/app-misc/yq/Manifest b/app-misc/yq/Manifest
21 index b8889f89b56..2dff83726c5 100644
22 --- a/app-misc/yq/Manifest
23 +++ b/app-misc/yq/Manifest
24 @@ -1,4 +1 @@
25 -DIST yq-2.7.1.tar.gz 13794 BLAKE2B 87fe4961974ab41fc14efb7b85c3db5c13577593253eb236c445f59e4034ce5211173cbdd1680e8b83394068ebcc99962f9f3b7c1cd36a4554aa2769b0a5ce66 SHA512 ad76f6102cdb7b0cc82d57c8120dfe10221b7d7456c4c3dd6e5ed0630d9ab178099f4ee8bfc075f15eb4b35aaef4237fcb0ef01a769a612632b4ef774da2b50a
26 -DIST yq-2.7.2.tar.gz 14010 BLAKE2B ec01d25c5ad1ca5fb38b2a4b412306d0ddf157a6a6fdbf2b55452a487bade60ebdd1bddba231e8f0d8db60994c44322c85918221cc64ea346e36d38ca73c185f SHA512 0671d0f5d5dbd7eee42efef7b8469d2177c2459144afc679bcf1f04165ba1e4ae0e396d9a3fa9ecb3db373671152fa51c835ca6fd2622fa8a243b21bfa547e43
27 -DIST yq-2.8.0.tar.gz 14434 BLAKE2B 1389a4e5df3a5e23fb9d9fad17f7f62b7ce85af917b5a29169ccad71c47d856658ac2fe649df4e98a9980e2548b1170ef468d150d6d84b121f093bd374746e69 SHA512 aca4aea16d80947d030c4c98cfdb431bc8bb25cbbcd388decac84842f7107617b31ef5dd25f409b90094a28452e6623734f7293c16ed75f0e8758b2d53820a09
28 DIST yq-2.9.2.tar.gz 19177 BLAKE2B 038d813679d3583eb863577f317d834f78f614d6be595c96601a06b40c3af5d9b04234381529012328a45984b183376e0647a6b09b8a87642f8e688e39ec7a7f SHA512 a526407f4f34e9c2a0acccaf38207bbe328468419450efaf30171493123b7715c2e6dd6799679220b07bfa7bc9081ac5f758f833ddf05dfb5e1fe14286baf45c
29
30 diff --git a/app-misc/yq/yq-2.7.1-r1.ebuild b/app-misc/yq/yq-2.7.1-r1.ebuild
31 deleted file mode 100644
32 index 2559bf50e6b..00000000000
33 --- a/app-misc/yq/yq-2.7.1-r1.ebuild
34 +++ /dev/null
35 @@ -1,38 +0,0 @@
36 -# Copyright 1999-2020 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=6
40 -PYTHON_COMPAT=( python3_6 )
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
45 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
46 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 -LICENSE="Apache-2.0"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="test"
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND="app-misc/jq
54 - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - dev-python/xmltodict[${PYTHON_USEDEP}]"
57 -DEPEND="${RDEPEND}
58 - test? (
59 - dev-python/coverage[${PYTHON_USEDEP}]
60 - dev-python/flake8[${PYTHON_USEDEP}]
61 - dev-python/toml[${PYTHON_USEDEP}]
62 - dev-python/wheel[${PYTHON_USEDEP}]
63 - )"
64 -
65 -python_prepare_all() {
66 - distutils-r1_python_prepare_all
67 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
68 - -i test/test.py || die
69 -}
70 -
71 -python_test() {
72 - ./test/test.py || die "tests failed under ${EPYTHON}"
73 -}
74
75 diff --git a/app-misc/yq/yq-2.7.2.ebuild b/app-misc/yq/yq-2.7.2.ebuild
76 deleted file mode 100644
77 index f091efa9098..00000000000
78 --- a/app-misc/yq/yq-2.7.2.ebuild
79 +++ /dev/null
80 @@ -1,38 +0,0 @@
81 -# Copyright 1999-2020 Gentoo Authors
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=7
85 -PYTHON_COMPAT=( python3_{6,7} )
86 -
87 -inherit distutils-r1
88 -
89 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
90 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
91 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
92 -LICENSE="Apache-2.0"
93 -SLOT="0"
94 -KEYWORDS="~amd64 ~x86"
95 -IUSE="test"
96 -RESTRICT="!test? ( test )"
97 -
98 -RDEPEND="app-misc/jq
99 - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
100 - dev-python/setuptools[${PYTHON_USEDEP}]
101 - dev-python/xmltodict[${PYTHON_USEDEP}]"
102 -DEPEND="${RDEPEND}
103 - test? (
104 - dev-python/coverage[${PYTHON_USEDEP}]
105 - dev-python/flake8[${PYTHON_USEDEP}]
106 - dev-python/toml[${PYTHON_USEDEP}]
107 - dev-python/wheel[${PYTHON_USEDEP}]
108 - )"
109 -
110 -python_prepare_all() {
111 - distutils-r1_python_prepare_all
112 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
113 - -i test/test.py || die
114 -}
115 -
116 -python_test() {
117 - ./test/test.py || die "tests failed under ${EPYTHON}"
118 -}
119
120 diff --git a/app-misc/yq/yq-2.8.0.ebuild b/app-misc/yq/yq-2.8.0.ebuild
121 deleted file mode 100644
122 index f091efa9098..00000000000
123 --- a/app-misc/yq/yq-2.8.0.ebuild
124 +++ /dev/null
125 @@ -1,38 +0,0 @@
126 -# Copyright 1999-2020 Gentoo Authors
127 -# Distributed under the terms of the GNU General Public License v2
128 -
129 -EAPI=7
130 -PYTHON_COMPAT=( python3_{6,7} )
131 -
132 -inherit distutils-r1
133 -
134 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
135 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
136 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
137 -LICENSE="Apache-2.0"
138 -SLOT="0"
139 -KEYWORDS="~amd64 ~x86"
140 -IUSE="test"
141 -RESTRICT="!test? ( test )"
142 -
143 -RDEPEND="app-misc/jq
144 - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
145 - dev-python/setuptools[${PYTHON_USEDEP}]
146 - dev-python/xmltodict[${PYTHON_USEDEP}]"
147 -DEPEND="${RDEPEND}
148 - test? (
149 - dev-python/coverage[${PYTHON_USEDEP}]
150 - dev-python/flake8[${PYTHON_USEDEP}]
151 - dev-python/toml[${PYTHON_USEDEP}]
152 - dev-python/wheel[${PYTHON_USEDEP}]
153 - )"
154 -
155 -python_prepare_all() {
156 - distutils-r1_python_prepare_all
157 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
158 - -i test/test.py || die
159 -}
160 -
161 -python_test() {
162 - ./test/test.py || die "tests failed under ${EPYTHON}"
163 -}
164
165 diff --git a/app-misc/yq/yq-2.9.2.ebuild b/app-misc/yq/yq-2.9.2.ebuild
166 deleted file mode 100644
167 index f091efa9098..00000000000
168 --- a/app-misc/yq/yq-2.9.2.ebuild
169 +++ /dev/null
170 @@ -1,38 +0,0 @@
171 -# Copyright 1999-2020 Gentoo Authors
172 -# Distributed under the terms of the GNU General Public License v2
173 -
174 -EAPI=7
175 -PYTHON_COMPAT=( python3_{6,7} )
176 -
177 -inherit distutils-r1
178 -
179 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
180 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
181 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
182 -LICENSE="Apache-2.0"
183 -SLOT="0"
184 -KEYWORDS="~amd64 ~x86"
185 -IUSE="test"
186 -RESTRICT="!test? ( test )"
187 -
188 -RDEPEND="app-misc/jq
189 - >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
190 - dev-python/setuptools[${PYTHON_USEDEP}]
191 - dev-python/xmltodict[${PYTHON_USEDEP}]"
192 -DEPEND="${RDEPEND}
193 - test? (
194 - dev-python/coverage[${PYTHON_USEDEP}]
195 - dev-python/flake8[${PYTHON_USEDEP}]
196 - dev-python/toml[${PYTHON_USEDEP}]
197 - dev-python/wheel[${PYTHON_USEDEP}]
198 - )"
199 -
200 -python_prepare_all() {
201 - distutils-r1_python_prepare_all
202 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
203 - -i test/test.py || die
204 -}
205 -
206 -python_test() {
207 - ./test/test.py || die "tests failed under ${EPYTHON}"
208 -}