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 | |
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')
-rw-r--r-- | app-backup/duply/Manifest | 1 | ||||
-rw-r--r-- | app-backup/duply/duply-2.5.2.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-backup/duply/Manifest b/app-backup/duply/Manifest index 98f58088d814..ce1eb0c6ee18 100644 --- a/app-backup/duply/Manifest +++ b/app-backup/duply/Manifest @@ -1 +1,2 @@ DIST duply_2.3.1.tgz 51531 BLAKE2B b351d57621cc24cdacf9c0b54c107e4b9caad5da31401534f8add0ae320e5d0534fff9f97fa685f76efcc90b9e6b3a18e87a1d11b90285410cdd3375aa8b5c56 SHA512 90f6172e196667c1bf35d4b0acd5759ccfa34a1b7cacdbcf502a67689b7698fca4e4a9ce419b42b70eb57fb784a7c789e2283a8ac366bade9aec25c393548ef8 +DIST duply_2.5.2.tgz 54034 BLAKE2B 918553c620a3fcf7b1b52b3ebfac1bdd94da75bdbb55f1f1489a52952d2e514066670577642ef06fd4c1420a9c0b2a3c6faca1dc82b7d6b55c8173ee46bfc1f4 SHA512 79c2260fcfe9d0282c96bb0b7a11ac3f29f836bfb799665d4d7ac5c3682743f17b650a056a5e3b755a316aa971727e610cc0b68d06190271a33c9030c3d2fa53 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 +} |