diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-06-03 18:30:09 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-06-22 20:44:29 +0200 |
commit | 25fb9a4176293e5241fffd5db6c3913ad4bc8509 (patch) | |
tree | 151b1994f92ed6669f8300d0fe43a307f2b5c9df /app-backup/duply/duply-2.5.2.ebuild | |
parent | app-arch/wimlib: add 1.14.4 (diff) | |
download | gentoo-25fb9a4176293e5241fffd5db6c3913ad4bc8509.tar.gz gentoo-25fb9a4176293e5241fffd5db6c3913ad4bc8509.tar.bz2 gentoo-25fb9a4176293e5241fffd5db6c3913ad4bc8509.zip |
app-backup/duply: add 2.5.2
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36999
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-backup/duply/duply-2.5.2.ebuild')
-rw-r--r-- | app-backup/duply/duply-2.5.2.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-backup/duply/duply-2.5.2.ebuild b/app-backup/duply/duply-2.5.2.ebuild new file mode 100644 index 000000000000..1f4c929cad2f --- /dev/null +++ b/app-backup/duply/duply-2.5.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Shell frontend for duplicity" +HOMEPAGE="https://duply.net" +SRC_URI="https://downloads.sourceforge.net/project/ftplicity/${PN}%20%28simple%20duplicity%29/$(ver_cut 1-2).x/${PN}_${PV}.tgz" +S="${WORKDIR}/${PN}_${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-text/txt2man" +RDEPEND="app-backup/duplicity" + +src_install() { + dobin ${PN} + ./${PN} txt2man > ${PN}.1 || die + doman ${PN}.1 + dodoc CHANGELOG.txt +} |