Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/debhelper/
Date: Thu, 02 Jan 2020 10:26:50
Message-Id: 1577960804.255c60fb250b7d8451e8bae042771f86b9251ff2.jer@gentoo
1 commit: 255c60fb250b7d8451e8bae042771f86b9251ff2
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 2 10:25:35 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 2 10:26:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255c60fb
7
8 dev-util/debhelper: Version 12.7.3
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 dev-util/debhelper/Manifest | 1 +
14 dev-util/debhelper/debhelper-12.7.3.ebuild | 74 ++++++++++++++++++++++++++++++
15 2 files changed, 75 insertions(+)
16
17 diff --git a/dev-util/debhelper/Manifest b/dev-util/debhelper/Manifest
18 index 590f12f60a9..19f2cb7667b 100644
19 --- a/dev-util/debhelper/Manifest
20 +++ b/dev-util/debhelper/Manifest
21 @@ -1,3 +1,4 @@
22 DIST debhelper_12.7.1.tar.xz 503768 BLAKE2B c61932be0c36df9cfa486eb61d1a4ac64af59c696fbe4e2ab21d85fe5031d659d25531a8650f235cc1a35d32a8b9bc2d67d7fbcd10401da09b2c7513849fa857 SHA512 4d15e45e47e1f6671f0b3b916b63197d394533e35d05c60719f85e945c47e71036a30fd952a33937d4151603a7b6100f41a0c6251b185c1ec3c78532f394c251
23 DIST debhelper_12.7.2.tar.xz 511800 BLAKE2B e01bc5685c1e4803f2b1668973a6ee02c91dc6da0fd2c2ac1f1ddfce35531351ac38e8805667a23a4c63ea78403bf318957adad4c560771c58f4394fc691709c SHA512 b77b81a72d7c66f893fb6eae501c48fd80b49bdf19e691be74fdf8bcafd91a3f0d000c4ecd2aef80da18caaaa781eba9c8b37512ad260da708bc7b6ea3d7674d
24 +DIST debhelper_12.7.3.tar.xz 511396 BLAKE2B ac16bcb3aa6f3807ce29be4e1aa2db36e35fcbf0bfbe6b823bc8388cac8d0ecbba8062bd05a5c7a277a0e56f896923df78c9d6fe38b703b47e92a8901e63aab5 SHA512 802fccba95df5fcd04a5ec9d78610e77c2977d81e6b1e4eba6bb5d4f92e5943db2876e1b011d1822cbbc67c256895045408b7eaf285da2ac55bd8200b6c39fe3
25 DIST debhelper_9.20160814.tar.xz 344328 BLAKE2B 38791ab3dfb74d12e44226b79a377889911a08505cdb45cc0a6e653906edbafcac1038d1d9ff9f5fd9f714ed36681562ce7fb1c9c1109a8528523100128fced6 SHA512 63072ba35ec8c62ee4c4d44833712925264c808a91f1522ef6a73377f2da3d11b285a21ad39158fd44693c801916189261186c8c7b28096719328a81a0a65f62
26
27 diff --git a/dev-util/debhelper/debhelper-12.7.3.ebuild b/dev-util/debhelper/debhelper-12.7.3.ebuild
28 new file mode 100644
29 index 00000000000..f3567e709e9
30 --- /dev/null
31 +++ b/dev-util/debhelper/debhelper-12.7.3.ebuild
32 @@ -0,0 +1,74 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit eutils toolchain-funcs
38 +
39 +DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
40 +HOMEPAGE="https://tracker.debian.org/pkg/debhelper"
41 +SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +DH_LANGS=( de es fr )
49 +IUSE+=" ${DH_LANGS[@]/#/l10n_}"
50 +
51 +NLS_DEPEND=$(
52 + printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
53 +)
54 +
55 +RDEPEND="
56 + >=dev-lang/perl-5.10:=
57 + >=app-arch/dpkg-1.17
58 + dev-perl/TimeDate
59 + virtual/perl-Getopt-Long
60 +"
61 +DEPEND="
62 + ${RDEPEND}
63 + ${NLS_DEPEND}
64 + test? (
65 + dev-perl/Test-Pod
66 + sys-apps/fakeroot
67 + )
68 +"
69 +
70 +S=${WORKDIR}/${PN}
71 +
72 +src_compile() {
73 + tc-export CC
74 +
75 + local LANGS="" USE_NLS=no lang
76 + for lang in ${DH_LANGS[@]}; do
77 + if use l10n_${lang}; then
78 + LANGS+=" ${lang}"
79 + USE_NLS=yes
80 + fi
81 + done
82 +
83 + emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
84 +}
85 +
86 +src_install() {
87 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
88 + dodoc doc/* debian/changelog
89 + docinto examples
90 + dodoc examples/*
91 + local lang
92 + for manfile in *.1 *.7 ; do
93 + for lang in ${DH_LANGS[@]}; do
94 + case ${manfile} in
95 + *.${lang}.?)
96 + use l10n_${lang} \
97 + && cp ${manfile} "${T}"/${manfile/.${lang}/} \
98 + && doman -i18n=${lang} "${T}"/${manfile/.${lang}/}
99 + ;;
100 + *)
101 + doman ${manfile}
102 + ;;
103 + esac
104 + done
105 + done
106 +}