Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/yq/
Date: Wed, 02 Nov 2022 17:03:59
Message-Id: 1667408609.c0a4269fc9ce0f2f1e6fdec3ac69353ca94b0f27.chutzpah@gentoo
1 commit: c0a4269fc9ce0f2f1e6fdec3ac69353ca94b0f27
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 17:03:22 2022 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 17:03:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a4269f
7
8 app-misc/yq: drop 2.13.0, 2.14.0, 3.0.2
9
10 Closes: https://bugs.gentoo.org/878657
11 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
12
13 app-misc/yq/Manifest | 3 ---
14 app-misc/yq/yq-2.13.0.ebuild | 48 ------------------------------------------
15 app-misc/yq/yq-2.14.0.ebuild | 48 ------------------------------------------
16 app-misc/yq/yq-3.0.2.ebuild | 50 --------------------------------------------
17 4 files changed, 149 deletions(-)
18
19 diff --git a/app-misc/yq/Manifest b/app-misc/yq/Manifest
20 index 23712dd4755f..7e92831a05b4 100644
21 --- a/app-misc/yq/Manifest
22 +++ b/app-misc/yq/Manifest
23 @@ -1,4 +1 @@
24 -DIST yq-2.13.0.tar.gz 21695 BLAKE2B e6d75cde2c298c19616647aeb14f1e34b1a68bb4db1b7e6f4e2619166ef10142ebd405d3c21492e4f5880c46a8d42222ce22b08afec492e97102923e6b838e2d SHA512 fd2722450606175b7d6674407c992f1f542b8b2309fcb33d4eb7d6e3dbc6dbc9e04b3dae7c4c649d814fdffaa18cbd50472672f1d1357fc58c5306de082b353a
25 -DIST yq-2.14.0.tar.gz 28030 BLAKE2B 07e200524390e938705854c5d1ac4921fbc8f165cdbf8152e36124e52a1c51c70d6d711b67a3dac8c2bbf1f75040466e8d94505aa5f19e388a31bbcdc92e91bd SHA512 77d5d9cefc70fae9f2606434e11c3b14facb68113f6f99017f87acc860684a1b7a94ecf01514e8fa85a6d9cc860df926e13d1ac5bec160e7d057074d758d1d34
26 -DIST yq-3.0.2.tar.gz 28939 BLAKE2B 146fe302064db21ae3d93224875bb49a49a3392e4be3acb9265c6bac98b754f5e75910e03b9ce0c3f5eaa19dbf959144d9443f24ecb5ecec9382cd85d7d03e8f SHA512 228b8390c6429381cefed32327e502d0f975cd4c3bf7918efad7e8119b5a93b4ff1216fd35117eed46b8282ec6a7314ae1a15028deab45aa3fc2cb5b6d86a777
27 DIST yq-3.1.0.tar.gz 29627 BLAKE2B 9ebeec400462788613b256a29c9706f4d6a06ced8a86b72ce6128cea6bdf258a62ff18b643cea00d5170f68af798d28af324b3908fc3fdea83329bc5feaa5539 SHA512 bb55a9fde5c072d2341faacd76c54d7374fcc70789ddae4d06e36fd48d7ebd6462c8bff13042c39c3fedf191d70752fa2f94af3c69f52f754bca83c3f1f89004
28
29 diff --git a/app-misc/yq/yq-2.13.0.ebuild b/app-misc/yq/yq-2.13.0.ebuild
30 deleted file mode 100644
31 index 43c89f52a700..000000000000
32 --- a/app-misc/yq/yq-2.13.0.ebuild
33 +++ /dev/null
34 @@ -1,48 +0,0 @@
35 -# Copyright 1999-2021 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=8
39 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
44 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -LICENSE="Apache-2.0"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="
53 - app-misc/jq
54 - dev-python/argcomplete[${PYTHON_USEDEP}]
55 - >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
56 - dev-python/toml[${PYTHON_USEDEP}]
57 - dev-python/xmltodict[${PYTHON_USEDEP}]
58 -"
59 -DEPEND="
60 - ${RDEPEND}
61 - test? (
62 - dev-python/wheel[${PYTHON_USEDEP}]
63 - )
64 -"
65 -
66 -PATCHES=(
67 - "${FILESDIR}/yq-2.13.0-tests.patch"
68 -)
69 -
70 -python_prepare_all() {
71 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
72 - -i test/test.py || die
73 -
74 - sed -r -i 's:[[:space:]]*"coverage",:: ; s:[[:space:]]*"flake8",::' \
75 - setup.py || die
76 -
77 - distutils-r1_python_prepare_all
78 -}
79 -
80 -python_test() {
81 - "${EPYTHON}" test/test.py </dev/null || die "tests failed under ${EPYTHON}"
82 -}
83
84 diff --git a/app-misc/yq/yq-2.14.0.ebuild b/app-misc/yq/yq-2.14.0.ebuild
85 deleted file mode 100644
86 index 4180eac4c6a2..000000000000
87 --- a/app-misc/yq/yq-2.14.0.ebuild
88 +++ /dev/null
89 @@ -1,48 +0,0 @@
90 -# Copyright 1999-2022 Gentoo Authors
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=8
94 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
95 -
96 -inherit distutils-r1
97 -
98 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
99 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
100 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
101 -LICENSE="Apache-2.0"
102 -SLOT="0"
103 -KEYWORDS="~amd64 ~x86"
104 -IUSE="test"
105 -RESTRICT="!test? ( test )"
106 -
107 -RDEPEND="
108 - app-misc/jq
109 - dev-python/argcomplete[${PYTHON_USEDEP}]
110 - >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
111 - dev-python/toml[${PYTHON_USEDEP}]
112 - dev-python/xmltodict[${PYTHON_USEDEP}]
113 -"
114 -DEPEND="
115 - ${RDEPEND}
116 - test? (
117 - dev-python/wheel[${PYTHON_USEDEP}]
118 - )
119 -"
120 -
121 -PATCHES=(
122 - "${FILESDIR}/yq-2.13.0-tests.patch"
123 -)
124 -
125 -python_prepare_all() {
126 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
127 - -i test/test.py || die
128 -
129 - sed -r -i 's:[[:space:]]*"coverage",:: ; s:[[:space:]]*"flake8",::' \
130 - setup.py || die
131 -
132 - distutils-r1_python_prepare_all
133 -}
134 -
135 -python_test() {
136 - "${EPYTHON}" test/test.py </dev/null || die "tests failed under ${EPYTHON}"
137 -}
138
139 diff --git a/app-misc/yq/yq-3.0.2.ebuild b/app-misc/yq/yq-3.0.2.ebuild
140 deleted file mode 100644
141 index 1a8f2da5f32d..000000000000
142 --- a/app-misc/yq/yq-3.0.2.ebuild
143 +++ /dev/null
144 @@ -1,50 +0,0 @@
145 -# Copyright 1999-2022 Gentoo Authors
146 -# Distributed under the terms of the GNU General Public License v2
147 -
148 -EAPI=8
149 -PYTHON_COMPAT=( python3_{9..11} pypy3 )
150 -
151 -inherit distutils-r1
152 -
153 -DESCRIPTION="Command-line YAML processor - jq wrapper for YAML documents"
154 -HOMEPAGE="https://yq.readthedocs.io/ https://github.com/kislyuk/yq/ https://pypi.org/project/yq/"
155 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
156 -LICENSE="Apache-2.0"
157 -SLOT="0"
158 -KEYWORDS="~amd64 ~x86"
159 -IUSE="test"
160 -RESTRICT="!test? ( test )"
161 -
162 -RDEPEND="
163 - app-misc/jq
164 - dev-python/argcomplete[${PYTHON_USEDEP}]
165 - >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
166 - dev-python/toml[${PYTHON_USEDEP}]
167 - dev-python/xmltodict[${PYTHON_USEDEP}]
168 -"
169 -DEPEND="
170 - ${RDEPEND}
171 - test? (
172 - dev-python/wheel[${PYTHON_USEDEP}]
173 - )
174 -"
175 -
176 -PATCHES=(
177 - "${FILESDIR}/yq-2.13.0-tests.patch"
178 -)
179 -
180 -python_prepare_all() {
181 - sed -e 's:unittest.main():unittest.main(verbosity=2):' \
182 - -i test/test.py || die
183 -
184 - sed -r -e 's:[[:space:]]*"coverage",:: ; s:[[:space:]]*"flake8",::' \
185 - -i setup.py || die
186 -
187 - sed -e '/license_file/ d' -i setup.cfg || die
188 -
189 - distutils-r1_python_prepare_all
190 -}
191 -
192 -python_test() {
193 - "${EPYTHON}" test/test.py </dev/null || die "tests failed under ${EPYTHON}"
194 -}