From: "Richard Freeman" <rich0@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/
Date: Mon, 30 Sep 2019 17:21:39 +0000 (UTC) [thread overview]
Message-ID: <1569864073.b5f7a2545ddee66cac3394e7b4bc1e3ae3f3aa55.rich0@gentoo> (raw)
commit: b5f7a2545ddee66cac3394e7b4bc1e3ae3f3aa55
Author: Richard Freeman <rich0 <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 30 17:21:13 2019 +0000
Commit: Richard Freeman <rich0 <AT> gentoo <DOT> org>
CommitDate: Mon Sep 30 17:21:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5f7a254
app-backup/duplicity: bump, EAPI 7 port
Fixes: https://bugs.gentoo.org/672710
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Richard Freeman <rich0 <AT> gentoo.org>
app-backup/duplicity/Manifest | 1 +
app-backup/duplicity/duplicity-0.7.19.ebuild | 52 ++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/app-backup/duplicity/Manifest b/app-backup/duplicity/Manifest
index edb4b512a4d..7f29959526f 100644
--- a/app-backup/duplicity/Manifest
+++ b/app-backup/duplicity/Manifest
@@ -6,3 +6,4 @@ DIST duplicity-0.7.14.tar.gz 1556110 BLAKE2B 32d4d7f941a09e85915724352ec14d6ed1b
DIST duplicity-0.7.15.tar.gz 1563272 BLAKE2B 1a5487d863253298ecab0bf328bc7e4aa7ac7df4e2b2dd47fd60b674310bcb9046e96546860fb6f299cddeb3ad384abae615a065759798e7215addb064d4582b SHA512 7cdcf1c707e9bdbbc250afcd359978607454b1614128d2b7f09403867195795606794c5f193dc869579ae8c3a9251d7ef8f9acd66d4e69bce91344d7c046ca90
DIST duplicity-0.7.16.tar.gz 1563676 BLAKE2B 67e1a205a880b2658ed265efa46590553537881d82af21f538fe0b524338ed8450ded1dcc30089ecf13892f5cccc284fe2acd3dbb1a17597557640ccbb1376cd SHA512 552f63848ce90ccd8481136df6c0918bbf2463dde00d4e54f0af3693dc5439551ac086dc43b7b7191d1dcf0b710d7391b6c627ce0effd14a59beb0b5fa06a804
DIST duplicity-0.7.17.tar.gz 1719145 BLAKE2B fb5b3b3319305e63aaabcf4feef89d8a9c7b84d8e1ff09082cbfb49ebb7129a88afe6c85f6db892c0fdc8a27ca2b247e903e20a2f7b7fd9d6ced0aa77f15a2d4 SHA512 a7fa3f26709bcb25be519a20d65a196072a49ca468ace84b4876a815efea23fc1ed5b77abf765475fb8a08e3138349bf1d48e0ce22816ef66526463b646e12a3
+DIST duplicity-0.7.19.tar.gz 1727321 BLAKE2B 6441a2ce777b3b08c52ede8602a73080be372dec1c1788441c7e7135533aeeb3be48012db4bdfc2a78c7ca23d368637ccc7aa0f0361369ac9f42c00a1541e023 SHA512 26d1724a635c368e04f2a94f974ef6962c52b23345db59af3343e7221295caa0215ae119fff6ab44daa4622236683eb9d3dae742bf0d4cf08c02e3f63071001b
diff --git a/app-backup/duplicity/duplicity-0.7.19.ebuild b/app-backup/duplicity/duplicity-0.7.19.ebuild
new file mode 100644
index 00000000000..96eaf610187
--- /dev/null
+++ b/app-backup/duplicity/duplicity-0.7.19.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Secure backup system using gnupg to encrypt data"
+HOMEPAGE="http://www.nongnu.org/duplicity/"
+SRC_URI="https://code.launchpad.net/${PN}/$(ver_cut 1-2)-series/${PV}/+download/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="s3 test"
+
+CDEPEND="
+ net-libs/librsync
+ app-crypt/gnupg
+ dev-python/fasteners[${PYTHON_USEDEP}]
+"
+DEPEND="${CDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ app-arch/par2cmdline
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pexpect[${PYTHON_USEDEP}]
+ )
+"
+RDEPEND="${CDEPEND}
+ dev-python/paramiko[${PYTHON_USEDEP}]
+ s3? ( dev-python/boto[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+ # workaround until failing test is fixed
+ local PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch )
+
+ distutils-r1_python_prepare_all
+
+ sed -i "s/'COPYING',//" setup.py || die
+}
+
+python_test() {
+ esetup.py test
+}
+
+pkg_postinst() {
+ elog "Duplicity has many optional dependencies to support various backends."
+ elog "Currently it's up to you to install them as necessary."
+}
next reply other threads:[~2019-09-30 17:21 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-30 17:21 Richard Freeman [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-18 18:14 [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/ Sam James
2025-03-18 17:38 Richard Freeman
2024-12-22 18:51 Sam James
2024-12-22 13:25 Richard Freeman
2024-04-29 20:22 Sam James
2024-04-29 19:18 Richard Freeman
2023-12-25 19:17 Arthur Zamarin
2023-12-24 22:08 Richard Freeman
2023-12-24 22:06 Richard Freeman
2023-06-14 2:51 Sam James
2023-06-14 2:48 Sam James
2023-06-13 20:01 Richard Freeman
2023-01-10 14:37 Michał Górny
2022-12-27 12:41 Richard Freeman
2022-12-27 7:29 Sam James
2022-12-26 13:49 Richard Freeman
2022-10-14 1:26 Sam James
2022-10-14 1:21 Matt Turner
2022-09-30 12:05 Richard Freeman
2022-05-20 1:17 Sam James
2022-05-19 15:54 Richard Freeman
2022-05-19 14:09 Richard Freeman
2022-03-19 19:31 Richard Freeman
2022-01-07 15:29 Sam James
2022-01-07 14:03 Richard Freeman
2021-08-05 15:26 Richard Freeman
2021-08-05 13:25 Richard Freeman
2021-05-26 6:51 Agostino Sarubbo
2021-05-25 13:58 Richard Freeman
2021-02-26 15:18 Sam James
2021-02-25 19:46 Richard Freeman
2021-01-06 12:52 Fabian Groffen
2020-10-22 15:08 Richard Freeman
2020-10-01 19:06 Richard Freeman
2020-06-07 11:51 Richard Freeman
2020-06-02 20:34 Richard Freeman
2020-05-12 6:39 Agostino Sarubbo
2020-05-09 14:55 Richard Freeman
2020-03-28 16:27 Michał Górny
2020-03-28 16:27 Michał Górny
2020-03-26 10:24 Agostino Sarubbo
2020-03-09 13:27 Richard Freeman
2020-02-22 21:12 David Seifert
2020-02-22 18:59 Richard Freeman
2020-01-20 2:26 Richard Freeman
2020-01-13 19:34 Richard Freeman
2019-11-19 15:55 Richard Freeman
2019-11-17 22:40 Tim Harder
2019-11-11 4:55 Tim Harder
2019-11-11 4:55 Tim Harder
2018-08-20 15:01 Patrice Clement
2018-03-19 6:27 Tim Harder
2018-02-05 6:02 Tim Harder
2017-11-17 19:26 Tim Harder
2017-09-01 10:28 Tim Harder
2017-07-29 4:05 Tim Harder
2017-04-03 8:34 Tim Harder
2017-01-17 5:42 Tim Harder
2017-01-17 5:42 Tim Harder
2016-12-12 4:37 Tim Harder
2016-12-09 13:40 Richard Freeman
2016-08-22 2:46 Tim Harder
2016-05-12 4:38 Tim Harder
2016-05-12 4:38 Tim Harder
2016-01-05 8:41 Agostino Sarubbo
2016-01-05 8:40 Agostino Sarubbo
2015-12-31 14:55 Richard Freeman
2015-09-13 17:14 Robin H. Johnson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1569864073.b5f7a2545ddee66cac3394e7b4bc1e3ae3f3aa55.rich0@gentoo \
--to=rich0@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox