Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dump/
Date: Sat, 26 Sep 2020 14:33:43
Message-Id: 1601130806.4bc595374478019b1b07bb19552fd08208c97937.bman@gentoo
1 commit: 4bc595374478019b1b07bb19552fd08208c97937
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 13:30:40 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 14:33:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc59537
7
8 app-arch/dump: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-arch/dump/dump-0.4.46.ebuild | 86 ----------------------------------------
13 1 file changed, 86 deletions(-)
14
15 diff --git a/app-arch/dump/dump-0.4.46.ebuild b/app-arch/dump/dump-0.4.46.ebuild
16 deleted file mode 100644
17 index f7ff465b84e..00000000000
18 --- a/app-arch/dump/dump-0.4.46.ebuild
19 +++ /dev/null
20 @@ -1,86 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -
26 -inherit versionator
27 -
28 -MY_P="${PN}-$(replace_version_separator 2 b)"
29 -S=${WORKDIR}/${MY_P}
30 -DESCRIPTION="Dump/restore ext2fs backup utilities"
31 -HOMEPAGE="http://dump.sourceforge.net/"
32 -SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
33 -
34 -LICENSE="BSD"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
37 -# We keep uuid USE flag default dsiabled for this version. Don't forget
38 -# to default enable it for later versions as this is the upstream default.
39 -IUSE="bzip2 debug ermt libressl lzo readline selinux sqlite ssl static test uuid zlib"
40 -RESTRICT="!test? ( test )"
41 -REQUIRED_USE="
42 - ermt? ( ssl )
43 - ssl? ( zlib )
44 - test? ( sqlite? ( uuid ) )
45 -"
46 -
47 -RDEPEND=">=sys-fs/e2fsprogs-1.27:=
48 - >=sys-libs/e2fsprogs-libs-1.27:=
49 - sys-apps/util-linux
50 - bzip2? ( >=app-arch/bzip2-1.0.2:= )
51 - zlib? ( >=sys-libs/zlib-1.1.4:= )
52 - lzo? ( dev-libs/lzo:2= )
53 - sqlite? ( dev-db/sqlite:3= )
54 - ermt? (
55 - !libressl? ( dev-libs/openssl:0= )
56 - libressl? ( dev-libs/libressl:0= )
57 - )
58 - ssl? (
59 - !libressl? ( dev-libs/openssl:0= )
60 - libressl? ( dev-libs/libressl:0= )
61 - )
62 - readline? (
63 - sys-libs/readline:0=
64 - sys-libs/ncurses:=
65 - static? ( sys-libs/ncurses:=[static-libs] )
66 - )"
67 -DEPEND="${RDEPEND}
68 - virtual/pkgconfig
69 - virtual/os-headers"
70 -
71 -src_configure() {
72 - local myeconfargs=(
73 - --with-dumpdatespath=/etc/dumpdates
74 - --with-rmtpath='$(sbindir)/rmt'
75 - --enable-blkid
76 - $(use_enable bzip2)
77 - $(use_enable debug)
78 - $(use_enable ermt)
79 - $(use_enable lzo)
80 - $(use_enable readline)
81 - $(use_enable selinux)
82 - $(use_enable sqlite)
83 - $(use_enable ssl)
84 - $(use_enable static static-progs)
85 - $(use_enable uuid)
86 - $(use_enable zlib)
87 - )
88 - econf "${myeconfargs[@]}"
89 -}
90 -
91 -src_install() {
92 - default
93 - mv "${ED}"/usr/sbin/{,dump-}rmt || die
94 - mv "${ED}"/usr/share/man/man8/{,dump-}rmt.8 || die
95 - use ermt && newsbin rmt/ermt dump-ermt
96 -
97 - dodoc KNOWNBUGS MAINTAINERS REPORTING-BUGS
98 - dodoc -r examples
99 -}
100 -
101 -pkg_postinst() {
102 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
103 - ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'."
104 - ewarn "This is to avoid conflicts with app-arch/tar 'rmt'."
105 - fi
106 -}