diff options
author | Viorel Munteanu <ceamac.paragon@gmail.com> | 2021-05-25 06:33:07 +0300 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-05-31 08:16:24 +0000 |
commit | 871b60a099a13f4814d8bec84ef9da92311b4ef6 (patch) | |
tree | 1a57e67ee9b907380c38187e1581c610223adc12 /app-backup | |
parent | www-apps/kibana-bin: drop vulnerable (diff) | |
download | gentoo-871b60a099a13f4814d8bec84ef9da92311b4ef6.tar.gz gentoo-871b60a099a13f4814d8bec84ef9da92311b4ef6.tar.bz2 gentoo-871b60a099a13f4814d8bec84ef9da92311b4ef6.zip |
app-backup/dar: drop 2.6.13
2.6.14 is stable
Bug: https://bugs.gentoo.org/791385
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/dar/Manifest | 1 | ||||
-rw-r--r-- | app-backup/dar/dar-2.6.13.ebuild | 102 |
2 files changed, 0 insertions, 103 deletions
diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest index 1b46ece6287d..e07c1d9cedf5 100644 --- a/app-backup/dar/Manifest +++ b/app-backup/dar/Manifest @@ -1,3 +1,2 @@ -DIST dar-2.6.13.tar.gz 2148732 BLAKE2B 51de01793dead832209671569f8054b1de3b5fa810c786ae675207b6dc3e639a5c036896e1688e017b222fbaa6c011494a9d43b3bb2b16570a38e291f893b73f SHA512 f0f853db6e15f5abfabf87be06a1c374662c7fa7e1140eaaeef3e8c8c4d0049a00a8e74409d6805ea3ae5b2f3171f2eba27459e8acb4438c467c4f0bd0825c0c DIST dar-2.6.14.tar.gz 2148023 BLAKE2B 36653d798d1da9cd87e84d2301b9f1fd657e92d1eee91ec1efadb54e94638860103c5e509479a2da846d432328e0a93ae92e1a4d23b6956ca55341ef767fe9a8 SHA512 2b116929fcc192ffee0c266959902b45dc9982ba77e017b3217715e0c63d1574d64083ca55a63e0bb6390e8955c41ca8b09da63934826fe4f0471a63ea739550 DIST dar-2.7.1.tar.gz 2290659 BLAKE2B 89fa7ac208eb3009f5151f27022a7a449bb204cb035f320e33ff642588b5ab0389c2ed33b71b7a7c6240d205877073f26a04f0164ce05bb370db3bc3faf25fda SHA512 404e3281b2c420088623e4c6ba262d2a7a44848986e43d4c71aff77104395f1178445d560849a73e0dbacce6b8014df2bb20bc33471ae2d07d897bb6ad577bcc diff --git a/app-backup/dar/dar-2.6.13.ebuild b/app-backup/dar/dar-2.6.13.ebuild deleted file mode 100644 index ec82d1c077b4..000000000000 --- a/app-backup/dar/dar-2.6.13.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="A full featured backup tool, aimed for disks" -HOMEPAGE="http://dar.linux.free.fr/" -SRC_URI="mirror://sourceforge/dar/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86 ~amd64-linux" -IUSE="curl dar32 dar64 doc gcrypt gpg lzo nls static static-libs xattr" - -RESTRICT="test" # need to be run as root - -RDEPEND=" - >=sys-libs/zlib-1.2.3:= - !static? ( - app-arch/bzip2:= - app-arch/xz-utils:= - sys-libs/libcap - curl? ( net-misc/curl ) - gcrypt? ( dev-libs/libgcrypt:0= ) - gpg? ( app-crypt/gpgme ) - lzo? ( dev-libs/lzo:= ) - xattr? ( sys-apps/attr:= ) - )" - -DEPEND=" - ${RDEPEND} - static? ( - app-arch/bzip2[static-libs] - app-arch/xz-utils[static-libs] - sys-libs/libcap[static-libs] - sys-libs/zlib[static-libs] - curl? ( net-misc/curl[static-libs] ) - lzo? ( dev-libs/lzo[static-libs] ) - xattr? ( sys-apps/attr[static-libs] ) - ) -" -BDEPEND=" - nls? ( - sys-devel/gettext - virtual/libintl - ) - doc? ( app-doc/doxygen ) -" - -REQUIRED_USE="?? ( dar32 dar64 ) - gpg? ( gcrypt )" - -src_configure() { - # configure.ac is totally funked up regarding the AC_ARG_ENABLE - # logic. - # For example "--enable-dar-static" causes configure to DISABLE - # static builds of dar. - # Do _not_ use $(use_enable) until you have verified that the - # logic has been fixed by upstream. - local myconf=( - --disable-python-binding - --disable-upx - $(usex curl '' --disable-libcurl-linking) - $(usex dar32 --enable-mode=32 '') - $(usex dar64 --enable-mode=64 '') - $(usex doc '' --disable-build-html) - #$(usex examples --enable-examples '') - $(usex gcrypt '' --disable-libgcrypt-linking) - $(usex gpg '' --disable-gpgme-linking) - $(usex lzo '' --disable-liblzo2-linking) - $(usex nls '' --disable-nls) - #$(usex rsync '' --disable-librsync-linking) - $(usex xattr '' --disable-ea-support) - ) - - # Bug 103741 - filter-flags -fomit-frame-pointer - - if ! use static ; then - myconf+=( --disable-dar-static ) - if ! use static-libs ; then - myconf+=( --disable-static ) - fi - fi - - econf "${myconf[@]}" -} - -src_install() { - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install - - local DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) - einstalldocs - - find "${ED}" -name '*.la' -delete || die - - if ! use static-libs ; then - find "${ED}" -name '*.a' -delete || die - fi -} |