Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/dar/
Date: Mon, 31 May 2021 08:20:12
Message-Id: 1622448984.871b60a099a13f4814d8bec84ef9da92311b4ef6.sam@gentoo
1 commit: 871b60a099a13f4814d8bec84ef9da92311b4ef6
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Tue May 25 03:33:07 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 08:16:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=871b60a0
7
8 app-backup/dar: drop 2.6.13
9
10 2.6.14 is stable
11 Bug: https://bugs.gentoo.org/791385
12 Package-Manager: Portage-3.0.18, Repoman-3.0.2
13 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 app-backup/dar/Manifest | 1 -
17 app-backup/dar/dar-2.6.13.ebuild | 102 ---------------------------------------
18 2 files changed, 103 deletions(-)
19
20 diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest
21 index 1b46ece6287..e07c1d9cedf 100644
22 --- a/app-backup/dar/Manifest
23 +++ b/app-backup/dar/Manifest
24 @@ -1,3 +1,2 @@
25 -DIST dar-2.6.13.tar.gz 2148732 BLAKE2B 51de01793dead832209671569f8054b1de3b5fa810c786ae675207b6dc3e639a5c036896e1688e017b222fbaa6c011494a9d43b3bb2b16570a38e291f893b73f SHA512 f0f853db6e15f5abfabf87be06a1c374662c7fa7e1140eaaeef3e8c8c4d0049a00a8e74409d6805ea3ae5b2f3171f2eba27459e8acb4438c467c4f0bd0825c0c
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.13.ebuild b/app-backup/dar/dar-2.6.13.ebuild
30 deleted file mode 100644
31 index ec82d1c077b..00000000000
32 --- a/app-backup/dar/dar-2.6.13.ebuild
33 +++ /dev/null
34 @@ -1,102 +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 static static-libs xattr"
50 -
51 -RESTRICT="test" # need to be run as root
52 -
53 -RDEPEND="
54 - >=sys-libs/zlib-1.2.3:=
55 - !static? (
56 - app-arch/bzip2:=
57 - app-arch/xz-utils:=
58 - sys-libs/libcap
59 - curl? ( net-misc/curl )
60 - gcrypt? ( dev-libs/libgcrypt:0= )
61 - gpg? ( app-crypt/gpgme )
62 - lzo? ( dev-libs/lzo:= )
63 - xattr? ( sys-apps/attr:= )
64 - )"
65 -
66 -DEPEND="
67 - ${RDEPEND}
68 - static? (
69 - app-arch/bzip2[static-libs]
70 - app-arch/xz-utils[static-libs]
71 - sys-libs/libcap[static-libs]
72 - sys-libs/zlib[static-libs]
73 - curl? ( net-misc/curl[static-libs] )
74 - lzo? ( dev-libs/lzo[static-libs] )
75 - xattr? ( sys-apps/attr[static-libs] )
76 - )
77 -"
78 -BDEPEND="
79 - nls? (
80 - sys-devel/gettext
81 - virtual/libintl
82 - )
83 - doc? ( app-doc/doxygen )
84 -"
85 -
86 -REQUIRED_USE="?? ( dar32 dar64 )
87 - gpg? ( gcrypt )"
88 -
89 -src_configure() {
90 - # configure.ac is totally funked up regarding the AC_ARG_ENABLE
91 - # logic.
92 - # For example "--enable-dar-static" causes configure to DISABLE
93 - # static builds of dar.
94 - # Do _not_ use $(use_enable) until you have verified that the
95 - # logic has been fixed by upstream.
96 - local myconf=(
97 - --disable-python-binding
98 - --disable-upx
99 - $(usex curl '' --disable-libcurl-linking)
100 - $(usex dar32 --enable-mode=32 '')
101 - $(usex dar64 --enable-mode=64 '')
102 - $(usex doc '' --disable-build-html)
103 - #$(usex examples --enable-examples '')
104 - $(usex gcrypt '' --disable-libgcrypt-linking)
105 - $(usex gpg '' --disable-gpgme-linking)
106 - $(usex lzo '' --disable-liblzo2-linking)
107 - $(usex nls '' --disable-nls)
108 - #$(usex rsync '' --disable-librsync-linking)
109 - $(usex xattr '' --disable-ea-support)
110 - )
111 -
112 - # Bug 103741
113 - filter-flags -fomit-frame-pointer
114 -
115 - if ! use static ; then
116 - myconf+=( --disable-dar-static )
117 - if ! use static-libs ; then
118 - myconf+=( --disable-static )
119 - fi
120 - fi
121 -
122 - econf "${myconf[@]}"
123 -}
124 -
125 -src_install() {
126 - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install
127 -
128 - local DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
129 - einstalldocs
130 -
131 - find "${ED}" -name '*.la' -delete || die
132 -
133 - if ! use static-libs ; then
134 - find "${ED}" -name '*.a' -delete || die
135 - fi
136 -}