Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/dar/
Date: Wed, 14 Jul 2021 14:32:57
Message-Id: 1626273162.44394528e8fb982d4dfba4820588042d2b1f14b1.juippis@gentoo
1 commit: 44394528e8fb982d4dfba4820588042d2b1f14b1
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Wed Jul 7 05:13:49 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 14 14:32:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44394528
7
8 app-backup/dar: drop v2.6.14
9
10 v2.7.1 is stable
11 Bug: https://bugs.gentoo.org/800671
12 Package-Manager: Portage-3.0.20, Repoman-3.0.2
13 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
14 Closes: https://github.com/gentoo/gentoo/pull/21546
15 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
16
17 app-backup/dar/Manifest | 1 -
18 app-backup/dar/dar-2.6.14.ebuild | 88 ----------------------------------------
19 2 files changed, 89 deletions(-)
20
21 diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest
22 index e07c1d9cedf..840ba71b665 100644
23 --- a/app-backup/dar/Manifest
24 +++ b/app-backup/dar/Manifest
25 @@ -1,2 +1 @@
26 -DIST dar-2.6.14.tar.gz 2148023 BLAKE2B 36653d798d1da9cd87e84d2301b9f1fd657e92d1eee91ec1efadb54e94638860103c5e509479a2da846d432328e0a93ae92e1a4d23b6956ca55341ef767fe9a8 SHA512 2b116929fcc192ffee0c266959902b45dc9982ba77e017b3217715e0c63d1574d64083ca55a63e0bb6390e8955c41ca8b09da63934826fe4f0471a63ea739550
27 DIST dar-2.7.1.tar.gz 2290659 BLAKE2B 89fa7ac208eb3009f5151f27022a7a449bb204cb035f320e33ff642588b5ab0389c2ed33b71b7a7c6240d205877073f26a04f0164ce05bb370db3bc3faf25fda SHA512 404e3281b2c420088623e4c6ba262d2a7a44848986e43d4c71aff77104395f1178445d560849a73e0dbacce6b8014df2bb20bc33471ae2d07d897bb6ad577bcc
28
29 diff --git a/app-backup/dar/dar-2.6.14.ebuild b/app-backup/dar/dar-2.6.14.ebuild
30 deleted file mode 100644
31 index db1ecf5856f..00000000000
32 --- a/app-backup/dar/dar-2.6.14.ebuild
33 +++ /dev/null
34 @@ -1,88 +0,0 @@
35 -# Copyright 1999-2021 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -
40 -inherit flag-o-matic
41 -
42 -DESCRIPTION="A full featured backup tool, aimed for disks"
43 -HOMEPAGE="http://dar.linux.free.fr/"
44 -SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -KEYWORDS="amd64 ppc sparc x86 ~amd64-linux"
49 -IUSE="curl dar32 dar64 doc gcrypt gpg lzo nls rsync threads xattr"
50 -
51 -RESTRICT="test" # need to be run as root
52 -
53 -RDEPEND="
54 - app-arch/bzip2:=
55 - app-arch/xz-utils:=
56 - sys-libs/libcap
57 - >=sys-libs/zlib-1.2.3:=
58 - curl? ( net-misc/curl )
59 - gcrypt? ( dev-libs/libgcrypt:0= )
60 - gpg? ( app-crypt/gpgme )
61 - lzo? ( dev-libs/lzo:= )
62 - rsync? ( net-libs/librsync:= )
63 - threads? ( dev-libs/libthreadar:= )
64 - xattr? ( sys-apps/attr:= )
65 -"
66 -
67 -DEPEND="${RDEPEND}"
68 -
69 -BDEPEND="
70 - doc? ( app-doc/doxygen )
71 - nls? (
72 - sys-devel/gettext
73 - virtual/libintl
74 - )
75 -"
76 -
77 -REQUIRED_USE="?? ( dar32 dar64 )
78 - gpg? ( gcrypt )"
79 -
80 -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
81 -
82 -src_configure() {
83 - # configure.ac is totally funked up regarding the AC_ARG_ENABLE
84 - # logic.
85 - # For example "--enable-dar-static" causes configure to DISABLE
86 - # static builds of dar.
87 - # Do _not_ use $(use_enable) until you have verified that the
88 - # logic has been fixed by upstream.
89 - local myconf=(
90 - --disable-dar-static
91 - --disable-python-binding
92 - --disable-static
93 - --disable-upx
94 - $(usex curl '' --disable-libcurl-linking)
95 - $(usex dar32 --enable-mode=32 '')
96 - $(usex dar64 --enable-mode=64 '')
97 - $(usex doc '' --disable-build-html)
98 - $(usex gcrypt '' --disable-libgcrypt-linking)
99 - $(usex gpg '' --disable-gpgme-linking)
100 - $(usex lzo '' --disable-liblzo2-linking)
101 - $(usex nls '' --disable-nls)
102 - $(usex rsync '' --disable-librsync-linking)
103 - $(usex threads '' --disable-threadar)
104 - $(usex xattr '' --disable-ea-support)
105 - )
106 -
107 - # Bug 103741
108 - filter-flags -fomit-frame-pointer
109 -
110 - econf "${myconf[@]}"
111 -}
112 -
113 -src_install() {
114 - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install
115 -
116 - einstalldocs
117 -
118 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
119 -
120 - # Bug 729150
121 - rm "${ED}/usr/share/doc/${PF}/html/samples/MyBackup.sh.tar.gz" || die
122 -}