summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-11-11 23:16:35 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2023-11-14 19:35:14 +0100
commit836481b17289f57024bfd09a87ac10a804ef77a9 (patch)
tree342b250e8320479e6fc33aad08285afe85f25241
parentprofiles/arch: remove stable mask on base use flag for libreoffice (diff)
downloadgentoo-836481b17289f57024bfd09a87ac10a804ef77a9.tar.gz
gentoo-836481b17289f57024bfd09a87ac10a804ef77a9.tar.bz2
gentoo-836481b17289f57024bfd09a87ac10a804ef77a9.zip
app-backup/rdup: drop 1.1.15
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--app-backup/rdup/rdup-1.1.15.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/app-backup/rdup/rdup-1.1.15.ebuild b/app-backup/rdup/rdup-1.1.15.ebuild
deleted file mode 100644
index 76a094776639..000000000000
--- a/app-backup/rdup/rdup-1.1.15.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Generate a file list suitable for full or incremental backups"
-HOMEPAGE="https://github.com/miekg/rdup/releases"
-SRC_URI="https://github.com/miekg/rdup/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- app-arch/libarchive
- dev-libs/glib:2
- dev-libs/libpcre
- dev-libs/nettle"
-DEPEND="${RDEPEND}
- test? ( dev-util/dejagnu )"
-
-src_prepare() {
- default_src_prepare
- sed -i -e 's/ -Werror//' GNUmakefile.in || die "Failed to fix Makefile"
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable debug)
-}
-
-src_test() {
- if use debug; then
- ewarn "Test phase skipped, as it is known to fail with USE=\"debug\"."
- else
- default_src_test
- fi
-}