Gentoo Archives: gentoo-commits

From: Richard Freeman <rich0@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/
Date: Mon, 20 Jan 2020 02:26:42
Message-Id: 1579487189.7c9a291645628919d02aff4104feba8530cc881c.rich0@gentoo
1 commit: 7c9a291645628919d02aff4104feba8530cc881c
2 Author: Richard Freeman <rich0 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 20 02:26:29 2020 +0000
4 Commit: Richard Freeman <rich0 <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 20 02:26:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9a2916
7
8 app-backup/duplicity: clean broken package
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Richard Freeman <rich0 <AT> gentoo.org>
12
13 app-backup/duplicity/duplicity-0.8.09.ebuild | 45 ----------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/app-backup/duplicity/duplicity-0.8.09.ebuild b/app-backup/duplicity/duplicity-0.8.09.ebuild
17 deleted file mode 100644
18 index 01193189c3e..00000000000
19 --- a/app-backup/duplicity/duplicity-0.8.09.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -PYTHON_COMPAT=( python2_7 python3_6)
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Secure backup system using gnupg to encrypt data"
31 -HOMEPAGE="http://www.nongnu.org/duplicity/"
32 -SRC_URI="https://code.launchpad.net/${PN}/$(ver_cut 1-2)-series/${PV}/+download/${P}.tar.gz"
33 -
34 -LICENSE="GPL-3"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
37 -IUSE="s3 test"
38 -
39 -CDEPEND="
40 - net-libs/librsync
41 - app-crypt/gnupg
42 - dev-python/fasteners[${PYTHON_USEDEP}]
43 -"
44 -DEPEND="${CDEPEND}
45 - dev-python/setuptools[${PYTHON_USEDEP}]
46 - test? (
47 - app-arch/par2cmdline
48 - dev-python/mock[${PYTHON_USEDEP}]
49 - dev-python/pexpect[${PYTHON_USEDEP}]
50 - )
51 -"
52 -RDEPEND="${CDEPEND}
53 - dev-python/paramiko[${PYTHON_USEDEP}]
54 - s3? ( dev-python/boto[${PYTHON_USEDEP}] )
55 -"
56 -
57 -RESTRICT="test"
58 -
59 -python_test() {
60 - esetup.py test
61 -}
62 -
63 -pkg_postinst() {
64 - elog "Duplicity has many optional dependencies to support various backends."
65 - elog "Currently it's up to you to install them as necessary."
66 -}