From 7eaea2618cf3521dfc8b54a5510cd41b11f52315 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 8 Oct 2023 14:48:26 +0200 Subject: app-backup/hdup: update EAPI 6 -> 8 Closes: https://bugs.gentoo.org/906003 Signed-off-by: David Seifert --- app-backup/hdup/hdup-2.0.14-r1.ebuild | 44 ------------------------------- app-backup/hdup/hdup-2.0.14-r2.ebuild | 49 +++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 44 deletions(-) delete mode 100644 app-backup/hdup/hdup-2.0.14-r1.ebuild create mode 100644 app-backup/hdup/hdup-2.0.14-r2.ebuild diff --git a/app-backup/hdup/hdup-2.0.14-r1.ebuild b/app-backup/hdup/hdup-2.0.14-r1.ebuild deleted file mode 100644 index 57fb577b246c..000000000000 --- a/app-backup/hdup/hdup-2.0.14-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Hdup is backup program using tar, find, gzip/bzip2, mcrypt and ssh" -HOMEPAGE="http://www.miek.nl/projects/hdup2/index.html" -SRC_URI="http://www.miek.nl/projects/${PN}2/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="crypt" - -CDEPEND=" - app-arch/bzip2 - app-arch/gzip - app-arch/tar - >=dev-libs/glib-2.0" -RDEPEND=" - ${CDEPEND} - virtual/openssh - sys-apps/coreutils - sys-apps/findutils - crypt? ( app-crypt/mcrypt )" -DEPEND=" - ${CDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.0.14-fix-build-system.patch ) - -src_install() { - HTML_DOCS=( doc/FAQ.html ) - default - dodoc Credits - - insinto /usr/share/${PN} - doins -r contrib examples -} - -pkg_postinst() { - elog "Now edit your /etc/hdup/${PN}.conf to configure your backups." - elog "You can also check included examples and contrib, see /usr/share/${PN}/." -} diff --git a/app-backup/hdup/hdup-2.0.14-r2.ebuild b/app-backup/hdup/hdup-2.0.14-r2.ebuild new file mode 100644 index 000000000000..ca5c1321e197 --- /dev/null +++ b/app-backup/hdup/hdup-2.0.14-r2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Hdup is backup program using tar, find, gzip/bzip2, mcrypt and ssh" +HOMEPAGE="http://www.miek.nl/projects/hdup2/index.html" +SRC_URI="http://www.miek.nl/projects/${PN}2/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="crypt" + +DEPEND=" + app-arch/bzip2 + app-arch/gzip + app-arch/tar + >=dev-libs/glib-2.0" +RDEPEND=" + ${DEPEND} + virtual/openssh + sys-apps/coreutils + sys-apps/findutils + crypt? ( app-crypt/mcrypt )" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch ) + +src_prepare() { + default + eautoconf # bug 906003 +} + +src_install() { + HTML_DOCS=( doc/FAQ.html ) + default + dodoc -r Credits examples + + insinto /usr/share/${PN} + doins -r contrib +} + +pkg_postinst() { + elog "Now edit your /etc/hdup/${PN}.conf to configure your backups." + elog "You can also check included examples and contrib, see /usr/share/${PN}/." +} -- cgit v1.2.3-65-gdbad