public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Robin H. Johnson" <robbat2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/
Date: Sun, 13 Sep 2015 17:14:44 +0000 (UTC)	[thread overview]
Message-ID: <1442164478.6c65d82b13791b47934181111e3831ef26510cea.robbat2@gentoo> (raw)

commit:     6c65d82b13791b47934181111e3831ef26510cea
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 17:13:26 2015 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 17:14:38 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c65d82b

app-backup/duplicity: bump

Package-Manager: portage-2.2.20.1
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 app-backup/duplicity/Manifest                |  1 +
 app-backup/duplicity/duplicity-0.6.26.ebuild | 49 ++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/app-backup/duplicity/Manifest b/app-backup/duplicity/Manifest
index abd55be..3c06475 100644
--- a/app-backup/duplicity/Manifest
+++ b/app-backup/duplicity/Manifest
@@ -2,3 +2,4 @@ DIST duplicity-0.6.22.tar.gz 1257082 SHA256 6f489b0445681f0697488f3d4097b4c56a7f
 DIST duplicity-0.6.23.tar.gz 1260261 SHA256 7a17f1e10395dedcf3204bc53925bb9dcbbf2a7552c9b096ebe727eceb9c0c60 SHA512 35c3facf9f44e117c74d880bef3f50c2f6a778fac31b38398934007befbe5dedb3f56ccdd592c231c0835baaba905ca942a889e0a1358c1b79570db08376385a WHIRLPOOL 6edffb363c48a90a6c3dc9d7a8ccdb22a6390e422255deca7a84b5e87e13a865fa325313f50bea52cdea7b3ae6b880e939c6cd58d605d4cc5df0e7f191523145
 DIST duplicity-0.6.24.tar.gz 1268175 SHA256 1d41d756638f55106f9501c3db94ccbc6568aa856ba531e07ed2cfb760b62450 SHA512 5bb783ef6ddbfa6672279287b01f44e33256829971e7b8bbe26d648d2c78d438018bddd977281b8a1ff7e5c1505a3b60fe03ecb5ba8022a597f9f952b2815273 WHIRLPOOL f42120cc403a987a9e5f747e1f7502059772f9c2fdb1afb92caa354676b7089736cd9524d08ef6677872a5019e17d2092513cc5544beed5fb0d80158742e1ebf
 DIST duplicity-0.6.25.tar.gz 1269583 SHA256 ac44f44abc1c5fe775a49b77e722d238c0b3bbb105e083fd505e2dca8e2c1725 SHA512 17304e38990e0a34aa4bae9f2d12a99ece031ac048667fba27afbcc32e1fb8455a2672426e49edb543bd7e345dc74f784f34c26ec2e1651eb10ba479868e04a0 WHIRLPOOL 8af905551078e30529dd31bd7de8f783ec0875c57e9f4d93388c5e407e9aecd19c0d151d3eb4d718cb5ea4dd649bb835611604f5ee5ad33f04355846a406d39d
+DIST duplicity-0.6.26.tar.gz 1270436 SHA256 8bef8a5d805b79ae177e54d42152238bce1b2aaf9ad32e03a2c3a20cbd4e074a SHA512 0cd02984eda99c81a30c9ac9926c41df0597f8f287a3e8ccd7d6fb9d420159028112be6b3fc8acf9b413940c07d0e754b2a509b6bca52965d2c333d4bcec8689 WHIRLPOOL 873b9fc9e035ed31cef996ace747c6a97b9434b50945578b019627c94e8eb7ba0861909e74b95db143ddb50dfdb23241a3ddfe712a97e0cd1f29c324c5d99c16

diff --git a/app-backup/duplicity/duplicity-0.6.26.ebuild b/app-backup/duplicity/duplicity-0.6.26.ebuild
new file mode 100644
index 0000000..b488fbc
--- /dev/null
+++ b/app-backup/duplicity/duplicity-0.6.26.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+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}/0.6-series/${PV}/+download/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="s3 test"
+
+CDEPEND="
+	net-libs/librsync
+	app-crypt/gnupg
+	dev-python/lockfile
+"
+DEPEND="${CDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( dev-python/mock[${PYTHON_USEDEP}] )
+"
+RDEPEND="${CDEPEND}
+	dev-python/paramiko[${PYTHON_USEDEP}]
+	s3? ( dev-python/boto[${PYTHON_USEDEP}] )
+"
+
+# workaround until failing test is fixed
+PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch )
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+
+	sed -i "s/'COPYING',//" setup.py || die "Couldn't remove unnecessary COPYING file."
+}
+
+python_test() {
+	esetup.py test
+}
+
+pkg_postinst() {
+	einfo "Duplicity has many optional dependencies to support various backends."
+	einfo "Currently it's up to you to install them as necessary."
+}


             reply	other threads:[~2015-09-13 17:14 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-13 17:14 Robin H. Johnson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-12-31 14:55 [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/ Richard Freeman
2016-01-05  8:40 Agostino Sarubbo
2016-01-05  8:41 Agostino Sarubbo
2016-05-12  4:38 Tim Harder
2016-05-12  4:38 Tim Harder
2016-08-22  2:46 Tim Harder
2016-12-09 13:40 Richard Freeman
2016-12-12  4:37 Tim Harder
2017-01-17  5:42 Tim Harder
2017-01-17  5:42 Tim Harder
2017-04-03  8:34 Tim Harder
2017-07-29  4:05 Tim Harder
2017-09-01 10:28 Tim Harder
2017-11-17 19:26 Tim Harder
2018-02-05  6:02 Tim Harder
2018-03-19  6:27 Tim Harder
2018-08-20 15:01 Patrice Clement
2019-09-30 17:21 Richard Freeman
2019-11-11  4:55 Tim Harder
2019-11-11  4:55 Tim Harder
2019-11-17 22:40 Tim Harder
2019-11-19 15:55 Richard Freeman
2020-01-13 19:34 Richard Freeman
2020-01-20  2:26 Richard Freeman
2020-02-22 18:59 Richard Freeman
2020-02-22 21:12 David Seifert
2020-03-09 13:27 Richard Freeman
2020-03-26 10:24 Agostino Sarubbo
2020-03-28 16:27 Michał Górny
2020-03-28 16:27 Michał Górny
2020-05-09 14:55 Richard Freeman
2020-05-12  6:39 Agostino Sarubbo
2020-06-02 20:34 Richard Freeman
2020-06-07 11:51 Richard Freeman
2020-10-01 19:06 Richard Freeman
2020-10-22 15:08 Richard Freeman
2021-01-06 12:52 Fabian Groffen
2021-02-25 19:46 Richard Freeman
2021-02-26 15:18 Sam James
2021-05-25 13:58 Richard Freeman
2021-05-26  6:51 Agostino Sarubbo
2021-08-05 13:25 Richard Freeman
2021-08-05 15:26 Richard Freeman
2022-01-07 14:03 Richard Freeman
2022-01-07 15:29 Sam James
2022-03-19 19:31 Richard Freeman
2022-05-19 14:09 Richard Freeman
2022-05-19 15:54 Richard Freeman
2022-05-20  1:17 Sam James
2022-09-30 12:05 Richard Freeman
2022-10-14  1:21 Matt Turner
2022-10-14  1:26 Sam James
2022-12-26 13:49 Richard Freeman
2022-12-27  7:29 Sam James
2022-12-27 12:41 Richard Freeman
2023-01-10 14:37 Michał Górny
2023-06-13 20:01 Richard Freeman
2023-06-14  2:48 Sam James
2023-06-14  2:51 Sam James
2023-12-24 22:06 Richard Freeman
2023-12-24 22:08 Richard Freeman
2023-12-25 19:17 Arthur Zamarin
2024-04-29 19:18 Richard Freeman
2024-04-29 20:22 Sam James

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=1442164478.6c65d82b13791b47934181111e3831ef26510cea.robbat2@gentoo \
    --to=robbat2@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