Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/debianutils/
Date: Fri, 27 Aug 2021 13:16:24
Message-Id: 1630070165.5b0911508fabc99b27f9c3a4f825f2d2f73e5de9.whissi@gentoo
1 commit: 5b0911508fabc99b27f9c3a4f825f2d2f73e5de9
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 27 12:30:46 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 27 13:16:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b091150
7
8 sys-apps/debianutils: bump to v5.4
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 sys-apps/debianutils/Manifest | 1 +
14 sys-apps/debianutils/debianutils-5.4.ebuild | 45 +++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/sys-apps/debianutils/Manifest b/sys-apps/debianutils/Manifest
18 index 894fd32ecf1..a1c2f41a3eb 100644
19 --- a/sys-apps/debianutils/Manifest
20 +++ b/sys-apps/debianutils/Manifest
21 @@ -1,2 +1,3 @@
22 DIST debianutils_4.11.2.tar.xz 158132 BLAKE2B c2a95c90b4267e3b1d61c21db562f960b4666982c488e69a757fb0a7a42e8e739d44f553edd8cf532df30c492e999920ab63ec3580479de7de5d901d75de76fc SHA512 0bd9098beee78b3c8dae839f0c29e9f142cbb22f2ced473cf7ae47a14d9493ba882c1829eba213780392a87a3223b3689729754c8ded80a091efaef3f6f903fd
23 DIST debianutils_5.2.orig.tar.xz 103364 BLAKE2B 1284eb30da0c26cf9247336fbd8f4633ffe5dcab7d72ee71695b5ebc67fe02da10ea4d5a2096c5800a80670c9259de8d682b65fde197bedbc805e0d97d6b9863 SHA512 d7e4e22768b7ee6adf07a5e580eb6ae4f8fba1d7471fda4713f7e0add627133689d4184880d42c748bf270b2b55f60044b8b956941434b5bb0890732c6fc031f
24 +DIST debianutils_5.4.orig.tar.xz 103640 BLAKE2B ac59ffcf7ef9523a67127e5565cb87eb694a0297eb81acba53a5ca00a2f16d024e21ba1ef6eff5079194c2cc751712fe9ad5814603deeeaa05d28343ff79a409 SHA512 a5501bdc46e203bd0cf357e5c83bb556ea7294ee603498399427dd49536848e006b21967f6239c3d808c8b9653d65f28536cf388dd18b749e54a235cc9326850
25
26 diff --git a/sys-apps/debianutils/debianutils-5.4.ebuild b/sys-apps/debianutils/debianutils-5.4.ebuild
27 new file mode 100644
28 index 00000000000..0df682debe5
29 --- /dev/null
30 +++ b/sys-apps/debianutils/debianutils-5.4.ebuild
31 @@ -0,0 +1,45 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit flag-o-matic
38 +
39 +DESCRIPTION="A selection of tools from Debian"
40 +HOMEPAGE="https://packages.qa.debian.org/d/debianutils.html"
41 +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.orig.tar.xz"
42 +
43 +LICENSE="BSD GPL-2 SMAIL"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x86-linux"
46 +IUSE="+installkernel static"
47 +
48 +PDEPEND="
49 + installkernel? (
50 + || (
51 + sys-kernel/installkernel-gentoo
52 + sys-kernel/installkernel-systemd-boot
53 + )
54 + )"
55 +
56 +#S="${WORKDIR}/${PN}"
57 +
58 +PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch )
59 +
60 +src_configure() {
61 + use static && append-ldflags -static
62 + default
63 +}
64 +
65 +src_install() {
66 + into /
67 + dobin run-parts
68 +
69 + into /usr
70 + dobin ischroot
71 + dosbin savelog
72 +
73 + doman ischroot.1 run-parts.8 savelog.8
74 +
75 + dodoc CHANGELOG
76 +}