diff options
author | Gordon Malm <gengor@gentoo.org> | 2009-11-19 01:06:32 +0000 |
---|---|---|
committer | Gordon Malm <gengor@gentoo.org> | 2009-11-19 01:06:32 +0000 |
commit | 0de3c493f3bc8a05eb2485d412eaa77571e2184d (patch) | |
tree | 9b16895c5d070f017fcd562ad6e4a64961bc6c60 /app-backup/duplicity | |
parent | Version bump. (diff) | |
download | gentoo-2-0de3c493f3bc8a05eb2485d412eaa77571e2184d.tar.gz gentoo-2-0de3c493f3bc8a05eb2485d412eaa77571e2184d.tar.bz2 gentoo-2-0de3c493f3bc8a05eb2485d412eaa77571e2184d.zip |
Version bump for bug #291921
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-backup/duplicity')
-rw-r--r-- | app-backup/duplicity/ChangeLog | 7 | ||||
-rw-r--r-- | app-backup/duplicity/duplicity-0.6.06.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-backup/duplicity/ChangeLog b/app-backup/duplicity/ChangeLog index 3b6b24bbad36..576753de8cf3 100644 --- a/app-backup/duplicity/ChangeLog +++ b/app-backup/duplicity/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-backup/duplicity # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/ChangeLog,v 1.41 2009/10/13 01:53:25 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/ChangeLog,v 1.42 2009/11/19 01:06:32 gengor Exp $ + +*duplicity-0.6.06 (19 Nov 2009) + + 19 Nov 2009; Gordon Malm <gengor@gentoo.org> +duplicity-0.6.06.ebuild: + Version bump, bug #291921 *duplicity-0.6.05 (13 Oct 2009) diff --git a/app-backup/duplicity/duplicity-0.6.06.ebuild b/app-backup/duplicity/duplicity-0.6.06.ebuild new file mode 100644 index 000000000000..37f150c837e4 --- /dev/null +++ b/app-backup/duplicity/duplicity-0.6.06.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/duplicity-0.6.06.ebuild,v 1.1 2009/11/19 01:06:32 gengor Exp $ + +inherit distutils + +DESCRIPTION="duplicity is a secure backup system using gnupg to encrypt data" +HOMEPAGE="http://www.nongnu.org/duplicity/" +SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="s3" + +DEPEND=">=dev-lang/python-2.3 + >=net-libs/librsync-0.9.6 + >=net-ftp/ncftp-3.1.9 + app-crypt/gnupg" +RDEPEND="${DEPEND} + >=dev-python/py-gnupg-0.3.2 + >=dev-python/pexpect-2.1 + s3? ( dev-python/boto )" + +src_install() { + distutils_src_install + rm "${D}"/usr/share/doc/${P}/COPYING +} |