Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/debianutils/
Date: Fri, 28 Sep 2018 14:21:29
Message-Id: 1538144463.c702c4c743a0fde6dee027b1791c864f56bc43f2.zlogene@gentoo
1 commit: c702c4c743a0fde6dee027b1791c864f56bc43f2
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 28 14:21:03 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 14:21:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c702c4c7
7
8 sys-apps/debianutils: Drop old
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 sys-apps/debianutils/Manifest | 1 -
13 sys-apps/debianutils/debianutils-4.7.ebuild | 41 -----------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/sys-apps/debianutils/Manifest b/sys-apps/debianutils/Manifest
17 index f97d3f941b2..cb07a3d14f5 100644
18 --- a/sys-apps/debianutils/Manifest
19 +++ b/sys-apps/debianutils/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST debianutils_4.7.tar.xz 156276 BLAKE2B 9d32dc8222b67d4f1f91d58af0811412924f5de43a691463bc24ac51087f986440d6464fee71f7723980b9c21c579cd4aef70213d5033c419f3802be3bd4cd29 SHA512 74110d194de8b6b61d40b133b97629520048a8fdedac349ec2031c793c0246526c1c7904e88098b4c2a121e5efba2d724924139ab1aca15d129a4d210f94a1aa
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.tar.xz 156532 BLAKE2B 2add390a0e38aa3d7103e09b3b65fa2b88c3965ca411c5789409454519791bccdb12d89b1bea4d07417f733d23d0662d4f510750ab404d7a4e8f20c2bd3d7ef4 SHA512 5913729cc3c56962e8939b71803258952df0d7204df8090a7504fbefc7f5d1da8e749d606fe23148ea3294909ef172bc1f4f821690169e861729caab70921a2f
25
26 diff --git a/sys-apps/debianutils/debianutils-4.7.ebuild b/sys-apps/debianutils/debianutils-4.7.ebuild
27 deleted file mode 100644
28 index 41d11fcdaef..00000000000
29 --- a/sys-apps/debianutils/debianutils-4.7.ebuild
30 +++ /dev/null
31 @@ -1,41 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit eutils 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}.tar.xz"
42 -
43 -LICENSE="BSD GPL-2 SMAIL"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
46 -IUSE="kernel_linux static"
47 -
48 -src_prepare() {
49 - epatch "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch
50 -}
51 -
52 -src_configure() {
53 - use static && append-ldflags -static
54 - default
55 -}
56 -
57 -src_install() {
58 - into /
59 - dobin tempfile run-parts
60 - if use kernel_linux ; then
61 - dosbin installkernel
62 - fi
63 -
64 - into /usr
65 - dosbin savelog
66 -
67 - doman tempfile.1 run-parts.8 savelog.8
68 - use kernel_linux && doman installkernel.8
69 - cd debian || die
70 - dodoc changelog control
71 - keepdir /etc/kernel/postinst.d
72 -}