Gentoo Archives: gentoo-commits

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