diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-10-01 16:15:58 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-10-10 04:03:06 +0100 |
commit | 5b8cbfe565e1c7b903a984a3814552ded88372fd (patch) | |
tree | 6a89a46baa52307d85d60b5372d33ed188f84b4f /app-backup | |
parent | app-backup/mylvmbackup: fix LICENSE (diff) | |
download | gentoo-5b8cbfe565e1c7b903a984a3814552ded88372fd.tar.gz gentoo-5b8cbfe565e1c7b903a984a3814552ded88372fd.tar.bz2 gentoo-5b8cbfe565e1c7b903a984a3814552ded88372fd.zip |
app-backup/rdup: update EAPI 6 -> 8
Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/rdup/rdup-1.1.15-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-backup/rdup/rdup-1.1.15-r1.ebuild b/app-backup/rdup/rdup-1.1.15-r1.ebuild new file mode 100644 index 000000000000..6fb0a41f335c --- /dev/null +++ b/app-backup/rdup/rdup-1.1.15-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" +# It's known to fail with USE=debug +REQUIRED_USE="test? ( !debug )" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-arch/libarchive + dev-libs/glib:2 + dev-libs/libpcre + dev-libs/nettle +" +DEPEND="${RDEPEND}" +BDEPEND="test? ( dev-util/dejagnu )" + +src_prepare() { + default + sed -i -e 's/ -Werror//' GNUmakefile.in || die "Failed to fix Makefile" + eautoreconf +} + +src_configure() { + econf $(use_enable debug) +} |