diff options
author | 2014-07-13 16:02:43 +0000 | |
---|---|---|
committer | 2014-07-13 16:02:43 +0000 | |
commit | 780066b2792be5b31354858aabf886c96edeb763 (patch) | |
tree | 2afc829d684e0e26b48df7e2e8b9c3af598c9caa /app-backup | |
parent | Add proxy-maint. (diff) | |
download | gentoo-2-780066b2792be5b31354858aabf886c96edeb763.tar.gz gentoo-2-780066b2792be5b31354858aabf886c96edeb763.tar.bz2 gentoo-2-780066b2792be5b31354858aabf886c96edeb763.zip |
app-backup/duply: Version Bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/duply/ChangeLog | 7 | ||||
-rw-r--r-- | app-backup/duply/duply-1.8.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-backup/duply/ChangeLog b/app-backup/duply/ChangeLog index 31c2fe9eb8e3..6c602f05fb0c 100644 --- a/app-backup/duply/ChangeLog +++ b/app-backup/duply/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-backup/duply # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/duply/ChangeLog,v 1.3 2014/06/27 13:35:39 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/duply/ChangeLog,v 1.4 2014/07/13 16:02:43 jlec Exp $ + +*duply-1.8.0 (13 Jul 2014) + + 13 Jul 2014; Justin Lecher <jlec@gentoo.org> +duply-1.8.0.ebuild: + Version Bump *duply-1.7.4 (27 Jun 2014) diff --git a/app-backup/duply/duply-1.8.0.ebuild b/app-backup/duply/duply-1.8.0.ebuild new file mode 100644 index 000000000000..82e8e78e38ed --- /dev/null +++ b/app-backup/duply/duply-1.8.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/duply/duply-1.8.0.ebuild,v 1.1 2014/07/13 16:02:43 jlec Exp $ + +EAPI="5" + +inherit readme.gentoo + +DESCRIPTION="A shell frontend for duplicity" +HOMEPAGE="http://duply.net" +SRC_URI="mirror://sourceforge/ftplicity/${PN}_${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-text/txt2man" +RDEPEND="app-backup/duplicity" + +S=${WORKDIR}/${PN}_${PV} + +DOC_CONTENTS=" +If you use ${PN} at the first time please have a +look at the the usage help text \"${PN} usage\" +for further information." + +src_install() { + dobin ${PN} + ./${PN} txt2man > ${PN}.1 + doman ${PN}.1 + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} |