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: Tue, 29 Jan 2019 11:31:53
Message-Id: 1548760365.5c61375f02b3b42e2309e575615c201f33adf41d.polynomial-c@gentoo
1 commit: 5c61375f02b3b42e2309e575615c201f33adf41d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 29 11:12:45 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 29 11:12:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c61375f
7
8 sys-apps/debianutils: Bump to version 4.8.6.1
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/debianutils/Manifest | 1 +
14 sys-apps/debianutils/debianutils-4.8.6.1.ebuild | 41 +++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/sys-apps/debianutils/Manifest b/sys-apps/debianutils/Manifest
18 index cb07a3d14f5..6e8b1d0fe59 100644
19 --- a/sys-apps/debianutils/Manifest
20 +++ b/sys-apps/debianutils/Manifest
21 @@ -1,3 +1,4 @@
22 DIST debianutils_4.8.3.tar.xz 159292 BLAKE2B e655741f42594ff12b4f349331da57ec09073802c9778594619686c93fc3061cf5248ac8e9e2c1b391eb49dd572f3033b1db206ff43f373b17caf7f3c835111f SHA512 468b8f001c0338f166cbc2fe25079edc5feeaa38dce2f5c7e6724c691d6cb35f4843e987695e33ead557bb11887e78ff8a5e3e1f52a266a0f32fb978fa643897
23 DIST debianutils_4.8.4.tar.xz 156344 BLAKE2B 069d15039579d4ce03d2ca4bfd0df199f0044049e7cd6ca899104eec5d917f3db290649bfdd851d8b14519df2750fb975bc6d96e98e14cdb626a610d44da80b0 SHA512 7d7b2d12d4907f6032477b4cd5b5dc94d8093724af8a97859c1d4cf229479e2dfe6d44143b454ed9b1990ca2d4833eaeb059659d8c305623875fdc8420659855
24 +DIST debianutils_4.8.6.1.tar.xz 156604 BLAKE2B 100bc458609273eb94da46e267395fe4ea16e499805b0d5a29f6144b8b7d2198ccb47b2048cdb6d311014c7b0ac373283cf6034a773ddbd95121856eb0dcbf83 SHA512 158f024311b3de292bd20df966c0f61285c748597101cee61e81883e0032c1e6a4baccb5c231b28f00ce3afc58a4aaedd64a65641351974c37fdb5f4952b0d2a
25 DIST debianutils_4.8.6.tar.xz 156532 BLAKE2B 2add390a0e38aa3d7103e09b3b65fa2b88c3965ca411c5789409454519791bccdb12d89b1bea4d07417f733d23d0662d4f510750ab404d7a4e8f20c2bd3d7ef4 SHA512 5913729cc3c56962e8939b71803258952df0d7204df8090a7504fbefc7f5d1da8e749d606fe23148ea3294909ef172bc1f4f821690169e861729caab70921a2f
26
27 diff --git a/sys-apps/debianutils/debianutils-4.8.6.1.ebuild b/sys-apps/debianutils/debianutils-4.8.6.1.ebuild
28 new file mode 100644
29 index 00000000000..3d28df99ad7
30 --- /dev/null
31 +++ b/sys-apps/debianutils/debianutils-4.8.6.1.ebuild
32 @@ -0,0 +1,41 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit flag-o-matic
39 +
40 +DESCRIPTION="A selection of tools from Debian"
41 +HOMEPAGE="https://packages.qa.debian.org/d/debianutils.html"
42 +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
43 +
44 +LICENSE="BSD GPL-2 SMAIL"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
47 +IUSE="+installkernel static"
48 +
49 +S="${WORKDIR}/${PN}"
50 +
51 +PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch )
52 +
53 +src_configure() {
54 + use static && append-ldflags -static
55 + default
56 +}
57 +
58 +src_install() {
59 + into /
60 + dobin tempfile run-parts
61 + if use installkernel ; then
62 + dosbin installkernel
63 + fi
64 +
65 + into /usr
66 + dosbin savelog
67 +
68 + doman tempfile.1 run-parts.8 savelog.8
69 + use installkernel && doman installkernel.8
70 + cd debian || die
71 + dodoc changelog control
72 + keepdir /etc/kernel/postinst.d
73 +}