Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/parted/
Date: Wed, 21 Mar 2018 21:42:54
Message-Id: 1521668569.eb787eafb6058042fd877f7ab9e0bae4d988bc07.jer@gentoo
1 commit: eb787eafb6058042fd877f7ab9e0bae4d988bc07
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 21 21:42:14 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 21 21:42:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb787eaf
7
8 sys-block/parted: Old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-block/parted/parted-3.2.ebuild | 57 --------------------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/sys-block/parted/parted-3.2.ebuild b/sys-block/parted/parted-3.2.ebuild
16 deleted file mode 100644
17 index 63f152b69d2..00000000000
18 --- a/sys-block/parted/parted-3.2.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit autotools eutils
27 -
28 -DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
29 -HOMEPAGE="https://www.gnu.org/software/parted"
30 -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
35 -IUSE="+debug device-mapper nls readline selinux static-libs"
36 -RESTRICT="test"
37 -
38 -# specific version for gettext needed
39 -# to fix bug 85999
40 -RDEPEND="
41 - >=sys-fs/e2fsprogs-1.27
42 - >=sys-libs/ncurses-5.7-r7:0=
43 - device-mapper? ( >=sys-fs/lvm2-2.02.45 )
44 - readline? ( >=sys-libs/readline-5.2:0= )
45 - selinux? ( sys-libs/libselinux )
46 -"
47 -DEPEND="
48 - ${RDEPEND}
49 - nls? ( >=sys-devel/gettext-0.12.1-r2 )
50 - virtual/pkgconfig
51 -"
52 -
53 -src_prepare() {
54 - epatch \
55 - "${FILESDIR}"/${PN}-3.2-devmapper.patch \
56 - "${FILESDIR}"/${PN}-3.2-po4a-mandir.patch
57 - eautoreconf
58 -}
59 -
60 -src_configure() {
61 - econf \
62 - $(use_enable debug) \
63 - $(use_enable device-mapper) \
64 - $(use_enable nls) \
65 - $(use_enable selinux) \
66 - $(use_enable static-libs static) \
67 - $(use_with readline) \
68 - --disable-rpath \
69 - --disable-silent-rules
70 -}
71 -
72 -DOCS=( AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API,FAT,USER.jp} )
73 -
74 -src_install() {
75 - default
76 - prune_libtool_files
77 -}