Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-backup/duplicity: duplicity-0.6.23-r1.ebuild ChangeLog duplicity-0.6.23.ebuild
Date: Sat, 25 Jan 2014 18:33:14
Message-Id: 20140125183310.95AF22004C@flycatcher.gentoo.org
1 radhermit 14/01/25 18:33:10
2
3 Modified: ChangeLog
4 Added: duplicity-0.6.23-r1.ebuild
5 Removed: duplicity-0.6.23.ebuild
6 Log:
7 Add missing dep on dev-python/lockfile (bug #499246).
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
10
11 Revision Changes Path
12 1.92 app-backup/duplicity/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/duplicity/ChangeLog?rev=1.92&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/duplicity/ChangeLog?rev=1.92&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/duplicity/ChangeLog?r1=1.91&r2=1.92
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-backup/duplicity/ChangeLog,v
21 retrieving revision 1.91
22 retrieving revision 1.92
23 diff -u -r1.91 -r1.92
24 --- ChangeLog 25 Jan 2014 08:46:35 -0000 1.91
25 +++ ChangeLog 25 Jan 2014 18:33:10 -0000 1.92
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-backup/duplicity
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/ChangeLog,v 1.91 2014/01/25 08:46:35 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/ChangeLog,v 1.92 2014/01/25 18:33:10 radhermit Exp $
31 +
32 +*duplicity-0.6.23-r1 (25 Jan 2014)
33 +
34 + 25 Jan 2014; Tim Harder <radhermit@g.o> -duplicity-0.6.23.ebuild,
35 + +duplicity-0.6.23-r1.ebuild:
36 + Add missing dep on dev-python/lockfile (bug #499246).
37
38 25 Jan 2014; Tim Harder <radhermit@g.o> -duplicity-0.6.20.ebuild:
39 Remove old.
40
41
42
43 1.1 app-backup/duplicity/duplicity-0.6.23-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/duplicity/duplicity-0.6.23-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/duplicity/duplicity-0.6.23-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: duplicity-0.6.23-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-backup/duplicity/duplicity-0.6.23-r1.ebuild,v 1.1 2014/01/25 18:33:10 radhermit Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python{2_6,2_7} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Secure backup system using gnupg to encrypt data"
60 HOMEPAGE="http://www.nongnu.org/duplicity/"
61 SRC_URI="http://code.launchpad.net/${PN}/0.6-series/${PV}/+download/${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
66 IUSE="s3"
67
68 DEPEND="
69 net-libs/librsync
70 app-crypt/gnupg
71 dev-python/lockfile
72 "
73 RDEPEND="${DEPEND}
74 dev-python/paramiko[${PYTHON_USEDEP}]
75 s3? ( dev-python/boto[${PYTHON_USEDEP}] )
76 "
77
78 python_prepare_all() {
79 distutils-r1_python_prepare_all
80
81 sed -i "s/'COPYING',//" setup.py || die "Couldn't remove unnecessary COPYING file."
82 }
83
84 pkg_postinst() {
85 einfo "Duplicity has many optional dependencies to support various backends."
86 einfo "Currently it's up to you to install them as necessary."
87 }