summaryrefslogtreecommitdiff
path: root/sysutils/duplicity
diff options
context:
space:
mode:
authoradam <adam>2015-10-17 13:18:14 +0000
committeradam <adam>2015-10-17 13:18:14 +0000
commit8b236c7d9ffb66169f04879cac8d0b4b75f6de29 (patch)
tree31ee27cfa21d46258dd708934f833cf6388de452 /sysutils/duplicity
parent89dfd3caaf63659d3ea88f6b8320b763039ede8b (diff)
downloadpkgsrc-8b236c7d9ffb66169f04879cac8d0b4b75f6de29.tar.gz
Changes 0.6.26:
Enhancements: * Merged in lp:~m4ktub/duplicity/0.6-reliability - Per fix proposed in Bug 1395341. * Modded .bzrignore to ignore *.egg test dependencies, normalized, sorted. * Backport fix for bug 1278529 - Use try/except around get_bucket() rather than bare lookup() * Backport _librsyncmodule.c compilation bug
Diffstat (limited to 'sysutils/duplicity')
-rw-r--r--sysutils/duplicity/Makefile25
-rw-r--r--sysutils/duplicity/distinfo10
-rw-r--r--sysutils/duplicity/patches/patch-duplicity___librsyncmodule.c14
3 files changed, 17 insertions, 32 deletions
diff --git a/sysutils/duplicity/Makefile b/sysutils/duplicity/Makefile
index c30109059a7..b5e3270a88c 100644
--- a/sysutils/duplicity/Makefile
+++ b/sysutils/duplicity/Makefile
@@ -1,14 +1,13 @@
-# $NetBSD: Makefile,v 1.30 2015/09/17 17:53:35 joerg Exp $
+# $NetBSD: Makefile,v 1.31 2015/10/17 13:18:14 adam Exp $
-DISTNAME= duplicity-0.6.25
-PKGREVISION= 1
-CATEGORIES= sysutils net
-MASTER_SITES= http://code.launchpad.net/duplicity/0.6-series/${PKGVERSION_NOREV}/+download/
+DISTNAME= duplicity-0.6.26
+CATEGORIES= sysutils net
+MASTER_SITES= http://code.launchpad.net/duplicity/0.6-series/${PKGVERSION_NOREV}/+download/
-MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= http://www.nongnu.org/duplicity/
-COMMENT= Remote encrypting incremental backup utility
-LICENSE= gnu-gpl-v2
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.nongnu.org/duplicity/
+COMMENT= Remote encrypting incremental backup utility
+LICENSE= gnu-gpl-v2
USE_PKGLOCALEDIR= yes
@@ -40,10 +39,10 @@ SUBST_FILES.gpgpath= duplicity/gpginterface.py
SUBST_VARS.gpgpath= GPGPATH
# XXX in 0.6.21, doc files are mode 0600
-post-extract:
- cd ${WRKSRC} && ${CHMOD} go+r *
+#post-extract:
+# cd ${WRKSRC} && ${CHMOD} go+r *
-.include "../../net/librsync/buildlink3.mk"
-.include "../../lang/python/egg.mk"
.include "../../lang/python/application.mk"
+.include "../../lang/python/egg.mk"
+.include "../../net/librsync/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/sysutils/duplicity/distinfo b/sysutils/duplicity/distinfo
index 6bb5168e52d..2dd703534c7 100644
--- a/sysutils/duplicity/distinfo
+++ b/sysutils/duplicity/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.18 2015/09/17 17:53:35 joerg Exp $
+$NetBSD: distinfo,v 1.19 2015/10/17 13:18:14 adam Exp $
-SHA1 (duplicity-0.6.25.tar.gz) = fe0b6b0b0dc7dbc02598d96567954b48c4308420
-RMD160 (duplicity-0.6.25.tar.gz) = a7457b3be4ea73707a1ef7b9021014a82f917eaa
-Size (duplicity-0.6.25.tar.gz) = 1269583 bytes
+SHA1 (duplicity-0.6.26.tar.gz) = ba6760852f0ed90d7fedade6d5fc72806added04
+RMD160 (duplicity-0.6.26.tar.gz) = 14a5f5ac3dcef81c4d7d488d9a8562d59b527838
+SHA512 (duplicity-0.6.26.tar.gz) = 0cd02984eda99c81a30c9ac9926c41df0597f8f287a3e8ccd7d6fb9d420159028112be6b3fc8acf9b413940c07d0e754b2a509b6bca52965d2c333d4bcec8689
+Size (duplicity-0.6.26.tar.gz) = 1270436 bytes
SHA1 (patch-aa) = f1210f703dccf759f234846a3139ce98063011cb
-SHA1 (patch-duplicity___librsyncmodule.c) = 505d97e127051f6d7e4546e7343eea54a53083d2
diff --git a/sysutils/duplicity/patches/patch-duplicity___librsyncmodule.c b/sysutils/duplicity/patches/patch-duplicity___librsyncmodule.c
deleted file mode 100644
index 63234926072..00000000000
--- a/sysutils/duplicity/patches/patch-duplicity___librsyncmodule.c
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-duplicity___librsyncmodule.c,v 1.1 2015/09/17 17:53:35 joerg Exp $
-
---- duplicity/_librsyncmodule.c.orig 2014-10-20 19:09:10.000000000 +0000
-+++ duplicity/_librsyncmodule.c
-@@ -67,8 +67,7 @@ _librsync_new_sigmaker(PyObject* self, P
- sm = PyObject_New(_librsync_SigMakerObject, &_librsync_SigMakerType);
- if (sm == NULL) return NULL;
-
-- sm->sig_job = rs_sig_begin((size_t)blocklen,
-- (size_t)RS_DEFAULT_STRONG_LEN);
-+ sm->sig_job = rs_sig_begin((size_t)blocklen, 8, RS_MD4_SIG_MAGIC);
- return (PyObject*)sm;
- }
-