Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/debhelper/
Date: Wed, 23 Dec 2020 22:57:52
Message-Id: 1608763976.001bd48c385d14eeff7139d890e173e2d55776d5.sam@gentoo
1 commit: 001bd48c385d14eeff7139d890e173e2d55776d5
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 22:52:56 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 22:52:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=001bd48c
7
8 dev-util/debhelper: cleanup old (EAPI 5)
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-util/debhelper/Manifest | 3 --
14 dev-util/debhelper/debhelper-13.1.ebuild | 74 --------------------------
15 dev-util/debhelper/debhelper-13.2.ebuild | 74 --------------------------
16 dev-util/debhelper/debhelper-9.20160814.ebuild | 74 --------------------------
17 4 files changed, 225 deletions(-)
18
19 diff --git a/dev-util/debhelper/Manifest b/dev-util/debhelper/Manifest
20 index 1b15275560d..30e0128647b 100644
21 --- a/dev-util/debhelper/Manifest
22 +++ b/dev-util/debhelper/Manifest
23 @@ -1,4 +1 @@
24 -DIST debhelper_13.1.tar.xz 530828 BLAKE2B 582dccdad50a51907d2565fef34fefeebf79360af31691ad0c332bb04b12a2165af598a3d35088595aee3653ca27f049e22669236ee48376ab665ea7423c6d5e SHA512 8160a31a857c9e548e0c5527eb4c86fb5c452e5209a741c7a4600f03a48fd5b46fe07c4d1c64ad11c3af3b9f2e1d67df2d4e9d773bc432d6147540dab015e977
25 DIST debhelper_13.2.1.tar.xz 541428 BLAKE2B eb377a09fe23aef159c6a8309c1a63df94be2a1dbf313af32868f9a01e394438c98f02cbd18077cf22998e693c171244e42d33fa503e591030f4fe4248bfbc53 SHA512 38b52b03b65832a33260a7b0d1f08e6079b60318964603ffa0729cb3f56adebe81dbfb82a1785b019100e697cc6b13c212518c4608c0bb2018500be328157b0c
26 -DIST debhelper_13.2.tar.xz 540400 BLAKE2B a1734ecbd92eadc3f5fbd0b118ffb4c6b697b157c39cab7626bd734adb80c6dfd0061298220c5d5c7a7fff412a1a52490e7001c8d634596dc41389a7e81c7a74 SHA512 07fd1f32975a9d84940a15140875994d30fe4bc0a40b40fe83a1ff9a304121167345194802691326251490852e601c388cab5cd02c000a4a6768edd1259a7bbc
27 -DIST debhelper_9.20160814.tar.xz 344328 BLAKE2B 38791ab3dfb74d12e44226b79a377889911a08505cdb45cc0a6e653906edbafcac1038d1d9ff9f5fd9f714ed36681562ce7fb1c9c1109a8528523100128fced6 SHA512 63072ba35ec8c62ee4c4d44833712925264c808a91f1522ef6a73377f2da3d11b285a21ad39158fd44693c801916189261186c8c7b28096719328a81a0a65f62
28
29 diff --git a/dev-util/debhelper/debhelper-13.1.ebuild b/dev-util/debhelper/debhelper-13.1.ebuild
30 deleted file mode 100644
31 index 99dca21e93e..00000000000
32 --- a/dev-util/debhelper/debhelper-13.1.ebuild
33 +++ /dev/null
34 @@ -1,74 +0,0 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -inherit eutils toolchain-funcs
40 -
41 -DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
42 -HOMEPAGE="https://tracker.debian.org/pkg/debhelper"
43 -SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -DH_LANGS=( de es fr )
51 -IUSE+=" ${DH_LANGS[@]/#/l10n_}"
52 -
53 -NLS_DEPEND=$(
54 - printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
55 -)
56 -
57 -RDEPEND="
58 - >=dev-lang/perl-5.10:=
59 - >=app-arch/dpkg-1.17
60 - dev-perl/TimeDate
61 - virtual/perl-Getopt-Long
62 -"
63 -DEPEND="
64 - ${RDEPEND}
65 - ${NLS_DEPEND}
66 - test? (
67 - dev-perl/Test-Pod
68 - sys-apps/fakeroot
69 - )
70 -"
71 -
72 -S=${WORKDIR}/${PN}
73 -
74 -src_compile() {
75 - tc-export CC
76 -
77 - local LANGS="" USE_NLS=no lang
78 - for lang in ${DH_LANGS[@]}; do
79 - if use l10n_${lang}; then
80 - LANGS+=" ${lang}"
81 - USE_NLS=yes
82 - fi
83 - done
84 -
85 - emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
86 -}
87 -
88 -src_install() {
89 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
90 - dodoc doc/* debian/changelog
91 - docinto examples
92 - dodoc examples/*
93 - local lang
94 - for manfile in *.1 *.7 ; do
95 - for lang in ${DH_LANGS[@]}; do
96 - case ${manfile} in
97 - *.${lang}.?)
98 - use l10n_${lang} \
99 - && cp ${manfile} "${T}"/${manfile/.${lang}/} \
100 - && doman -i18n=${lang} "${T}"/${manfile/.${lang}/}
101 - ;;
102 - *)
103 - doman ${manfile}
104 - ;;
105 - esac
106 - done
107 - done
108 -}
109
110 diff --git a/dev-util/debhelper/debhelper-13.2.ebuild b/dev-util/debhelper/debhelper-13.2.ebuild
111 deleted file mode 100644
112 index 99dca21e93e..00000000000
113 --- a/dev-util/debhelper/debhelper-13.2.ebuild
114 +++ /dev/null
115 @@ -1,74 +0,0 @@
116 -# Copyright 1999-2020 Gentoo Authors
117 -# Distributed under the terms of the GNU General Public License v2
118 -
119 -EAPI=7
120 -inherit eutils toolchain-funcs
121 -
122 -DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
123 -HOMEPAGE="https://tracker.debian.org/pkg/debhelper"
124 -SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
125 -
126 -LICENSE="GPL-2"
127 -SLOT="0"
128 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux"
129 -IUSE="test"
130 -RESTRICT="!test? ( test )"
131 -DH_LANGS=( de es fr )
132 -IUSE+=" ${DH_LANGS[@]/#/l10n_}"
133 -
134 -NLS_DEPEND=$(
135 - printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
136 -)
137 -
138 -RDEPEND="
139 - >=dev-lang/perl-5.10:=
140 - >=app-arch/dpkg-1.17
141 - dev-perl/TimeDate
142 - virtual/perl-Getopt-Long
143 -"
144 -DEPEND="
145 - ${RDEPEND}
146 - ${NLS_DEPEND}
147 - test? (
148 - dev-perl/Test-Pod
149 - sys-apps/fakeroot
150 - )
151 -"
152 -
153 -S=${WORKDIR}/${PN}
154 -
155 -src_compile() {
156 - tc-export CC
157 -
158 - local LANGS="" USE_NLS=no lang
159 - for lang in ${DH_LANGS[@]}; do
160 - if use l10n_${lang}; then
161 - LANGS+=" ${lang}"
162 - USE_NLS=yes
163 - fi
164 - done
165 -
166 - emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
167 -}
168 -
169 -src_install() {
170 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
171 - dodoc doc/* debian/changelog
172 - docinto examples
173 - dodoc examples/*
174 - local lang
175 - for manfile in *.1 *.7 ; do
176 - for lang in ${DH_LANGS[@]}; do
177 - case ${manfile} in
178 - *.${lang}.?)
179 - use l10n_${lang} \
180 - && cp ${manfile} "${T}"/${manfile/.${lang}/} \
181 - && doman -i18n=${lang} "${T}"/${manfile/.${lang}/}
182 - ;;
183 - *)
184 - doman ${manfile}
185 - ;;
186 - esac
187 - done
188 - done
189 -}
190
191 diff --git a/dev-util/debhelper/debhelper-9.20160814.ebuild b/dev-util/debhelper/debhelper-9.20160814.ebuild
192 deleted file mode 100644
193 index 9d112116aee..00000000000
194 --- a/dev-util/debhelper/debhelper-9.20160814.ebuild
195 +++ /dev/null
196 @@ -1,74 +0,0 @@
197 -# Copyright 1999-2020 Gentoo Authors
198 -# Distributed under the terms of the GNU General Public License v2
199 -
200 -EAPI=5
201 -inherit eutils toolchain-funcs
202 -
203 -DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
204 -HOMEPAGE="https://packages.qa.debian.org/d/debhelper.html"
205 -SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
206 -
207 -LICENSE="GPL-2"
208 -SLOT="0"
209 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ppc ppc64 ~s390 sparc x86 ~amd64-linux"
210 -IUSE="test"
211 -RESTRICT="!test? ( test )"
212 -DH_LANGS=( de es fr )
213 -IUSE+=" ${DH_LANGS[@]/#/l10n_}"
214 -
215 -NLS_DEPEND=$(
216 - printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
217 -)
218 -
219 -RDEPEND="
220 - >=dev-lang/perl-5.10:=
221 - >=app-arch/dpkg-1.17
222 - dev-perl/TimeDate
223 - virtual/perl-Getopt-Long
224 -"
225 -DEPEND="
226 - ${RDEPEND}
227 - ${NLS_DEPEND}
228 - test? (
229 - dev-perl/Test-Pod
230 - sys-apps/fakeroot
231 - )
232 -"
233 -
234 -S=${WORKDIR}/${PN}
235 -
236 -src_compile() {
237 - tc-export CC
238 -
239 - local LANGS="" USE_NLS=no lang
240 - for lang in ${DH_LANGS[@]}; do
241 - if use l10n_${lang}; then
242 - LANGS+=" ${lang}"
243 - USE_NLS=yes
244 - fi
245 - done
246 -
247 - emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
248 -}
249 -
250 -src_install() {
251 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
252 - dodoc doc/* debian/changelog
253 - docinto examples
254 - dodoc examples/*
255 - local lang
256 - for manfile in *.1 *.7 ; do
257 - for lang in ${DH_LANGS[@]}; do
258 - case ${manfile} in
259 - *.${lang}.?)
260 - use l10n_${lang} \
261 - && cp ${manfile} "${T}"/${manfile/.${lang}/} \
262 - && doman -i18n=${lang} "${T}"/${manfile/.${lang}/}
263 - ;;
264 - *)
265 - doman ${manfile}
266 - ;;
267 - esac
268 - done
269 - done
270 -}