Thu Apr 9 10:16:35 2015 UTC ()
Update duplicity to 0.6.25.

Changes from previous:

New in v0.6.25 (2014/10/20)
---------------------------
Enhancements:
* Add deprecation warning for 0.6 series
* Merged in lp:~ed.so/duplicity/0.6-dpbx.importfix
  - fix this showstopper with the dropbox backend
    "NameError: global name 'rest' is not defined"
* Merged in lp:~jflaker/duplicity/BugFix1325215
  - The reference to "--progress_rate" in the man page as a parameter is
    incorrect. Should be "--progress-rate".
* Merged in lp:~hooloovoo/duplicity/updated-README-REPO
  - Changes to README-REPO to reflect the restructuring of the directories.
* Fixed bug 1375304 with patch supplied by Aleksandar Ivanovic
* Merged in lp:~ed.so/duplicity/webdav200fix-0.6
  - webdav backend fix "BackendException: Bad status code 200 reason OK. " when
    restarting an interrupted backup and overwriting partially uploaded volumes.
* Merged in lp:~antmak/duplicity/0.6-par2-fix
  - Useful fix for verbatim par2cmdline options (like "-t" in par2-tbb version)
* Merged in lp:~jon-haggblad/duplicity/ftps-fix
  - Minor bugfix for ftps backend where lftp needs host prefixed by "ftps://".
* Fixed bug 1327550: OverflowError: signed integer is greater than maximum
  - Major and minor device numbers are supposed to be one byte each.  Someone
    has crafted a special system image using OpenVZ where the major and minor
    device numbers are much larger (ploop devices).  We treat them as (0,0).
* Merged in lp:~jon-haggblad/duplicity/ftps-fix (2nd try)
  - Minor bugfix for ftps backend where lftp needs host prefixed by "ftps://".
* Merged in lp:~johnleach/duplicity/1315437-swift-container-create
  - Check to see if the swift container exists before trying to create it,
    in case we don't have permissions to create containers. Fixes #1315437


(hiramatsu)
diff -r1.2 -r1.3 pkgsrc/sysutils/duplicity/MESSAGE
diff -r1.28 -r1.29 pkgsrc/sysutils/duplicity/Makefile
diff -r1.16 -r1.17 pkgsrc/sysutils/duplicity/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/sysutils/duplicity/Attic/MESSAGE (switch to unified diff)

--- pkgsrc/sysutils/duplicity/Attic/MESSAGE 2013/11/26 20:36:22 1.2
+++ pkgsrc/sysutils/duplicity/Attic/MESSAGE 2015/04/09 10:16:35 1.3
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.2 2013/11/26 20:36:22 drochner Exp $ 2$NetBSD: MESSAGE,v 1.3 2015/04/09 10:16:35 hiramatsu Exp $
3Depending on the storage backend used, additional packages micht be needed: 3Depending on the storage backend used, additional packages might be needed:
4-Amazon S3 needs pkgsrc/net/py-boto. 4-Amazon S3 needs pkgsrc/net/py-boto.
5-Dropbox needs pkgsrc/net/py-dropbox 5-Dropbox needs pkgsrc/net/py-dropbox.
6-For ssh/scp, pkgsrc/security/py-paramiko is recommended. 6-For ssh/scp, pkgsrc/security/py-paramiko is recommended.
7-For more options, see the manpage. 7-For more options, see the manpage.
8=========================================================================== 8===========================================================================

cvs diff -r1.28 -r1.29 pkgsrc/sysutils/duplicity/Makefile (switch to unified diff)

--- pkgsrc/sysutils/duplicity/Makefile 2014/05/12 20:39:33 1.28
+++ pkgsrc/sysutils/duplicity/Makefile 2015/04/09 10:16:35 1.29
@@ -1,49 +1,49 @@ @@ -1,49 +1,49 @@
1# $NetBSD: Makefile,v 1.28 2014/05/12 20:39:33 riz Exp $ 1# $NetBSD: Makefile,v 1.29 2015/04/09 10:16:35 hiramatsu Exp $
2 2
3DISTNAME= duplicity-0.6.24 3DISTNAME= duplicity-0.6.25
4CATEGORIES= sysutils net 4CATEGORIES= sysutils net
5MASTER_SITES= http://code.launchpad.net/duplicity/0.6-series/${PKGVERSION_NOREV}/+download/ 5MASTER_SITES= http://code.launchpad.net/duplicity/0.6-series/${PKGVERSION_NOREV}/+download/
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= http://www.nongnu.org/duplicity/ 8HOMEPAGE= http://www.nongnu.org/duplicity/
9COMMENT= Remote encrypting incremental backup utility 9COMMENT= Remote encrypting incremental backup utility
10LICENSE= gnu-gpl-v2 10LICENSE= gnu-gpl-v2
11 11
12USE_PKGLOCALEDIR= yes 12USE_PKGLOCALEDIR= yes
13 13
14PKG_OPTIONS_VAR= PKG_OPTIONS.duplicity 14PKG_OPTIONS_VAR= PKG_OPTIONS.duplicity
15PKG_SUPPORTED_OPTIONS= gnupg2 15PKG_SUPPORTED_OPTIONS= gnupg2
16DEPENDS+= ${PYPKGPREFIX}-lockfile>=0.9.1:../../devel/py-lockfile 16DEPENDS+= ${PYPKGPREFIX}-lockfile>=0.9.1:../../devel/py-lockfile
17.include "../../mk/bsd.options.mk" 17.include "../../mk/bsd.options.mk"
18.if !empty(PKG_OPTIONS:Mgnupg2) 18.if !empty(PKG_OPTIONS:Mgnupg2)
19DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2 19DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2
20GPGPATH= ${LOCALBASE}/bin/gpg2 20GPGPATH= ${LOCALBASE}/bin/gpg2
21.else 21.else
22DEPENDS+= gnupg>=1.0.0:../../security/gnupg 22DEPENDS+= gnupg>=1.0.0:../../security/gnupg
23GPGPATH= ${LOCALBASE}/bin/gpg 23GPGPATH= ${LOCALBASE}/bin/gpg
24.endif 24.endif
25 25
26REPLACE_PYTHON+= bin/* 26REPLACE_PYTHON+= bin/*
27PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.6.22 27PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.6.22
28 28
29SUBST_CLASSES+= fix-paths 29SUBST_CLASSES+= fix-paths
30SUBST_STAGE.fix-paths= pre-configure 30SUBST_STAGE.fix-paths= pre-configure
31SUBST_MESSAGE.fix-paths= fixing hard coded dirs 31SUBST_MESSAGE.fix-paths= fixing hard coded dirs
32SUBST_FILES.fix-paths= setup.py 32SUBST_FILES.fix-paths= setup.py
33SUBST_SED.fix-paths= -e 's,share/man/man1,${PKGMANDIR}/man1,' 33SUBST_SED.fix-paths= -e 's,share/man/man1,${PKGMANDIR}/man1,'
34SUBST_SED.fix-paths+= -e 's,share/locale,${PKGLOCALEDIR}/locale,' 34SUBST_SED.fix-paths+= -e 's,share/locale,${PKGLOCALEDIR}/locale,'
35 35
36SUBST_CLASSES+= gpgpath 36SUBST_CLASSES+= gpgpath
37SUBST_STAGE.gpgpath= pre-configure 37SUBST_STAGE.gpgpath= pre-configure
38SUBST_FILES.gpgpath= duplicity/gpginterface.py 38SUBST_FILES.gpgpath= duplicity/gpginterface.py
39SUBST_VARS.gpgpath= GPGPATH 39SUBST_VARS.gpgpath= GPGPATH
40 40
41# XXX in 0.6.21, doc files are mode 0600 41# XXX in 0.6.21, doc files are mode 0600
42post-extract: 42post-extract:
43 cd ${WRKSRC} && ${CHMOD} go+r * 43 cd ${WRKSRC} && ${CHMOD} go+r *
44 44
45BUILDLINK_API_DEPENDS.librsync+= librsync>=0.9.6 45BUILDLINK_API_DEPENDS.librsync+= librsync>=0.9.6
46.include "../../devel/librsync/buildlink3.mk" 46.include "../../devel/librsync/buildlink3.mk"
47.include "../../lang/python/egg.mk" 47.include "../../lang/python/egg.mk"
48.include "../../lang/python/application.mk" 48.include "../../lang/python/application.mk"
49.include "../../mk/bsd.pkg.mk" 49.include "../../mk/bsd.pkg.mk"

cvs diff -r1.16 -r1.17 pkgsrc/sysutils/duplicity/distinfo (switch to unified diff)

--- pkgsrc/sysutils/duplicity/distinfo 2014/05/12 20:39:33 1.16
+++ pkgsrc/sysutils/duplicity/distinfo 2015/04/09 10:16:35 1.17
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.16 2014/05/12 20:39:33 riz Exp $ 1$NetBSD: distinfo,v 1.17 2015/04/09 10:16:35 hiramatsu Exp $
2 2
3SHA1 (duplicity-0.6.24.tar.gz) = 1d0bab80cb9465080179307d969e292c7145c714 3SHA1 (duplicity-0.6.25.tar.gz) = fe0b6b0b0dc7dbc02598d96567954b48c4308420
4RMD160 (duplicity-0.6.24.tar.gz) = ff6c6dc84d609a390e7bb3d018a4f31030c8b826 4RMD160 (duplicity-0.6.25.tar.gz) = a7457b3be4ea73707a1ef7b9021014a82f917eaa
5Size (duplicity-0.6.24.tar.gz) = 1268175 bytes 5Size (duplicity-0.6.25.tar.gz) = 1269583 bytes
6SHA1 (patch-aa) = f1210f703dccf759f234846a3139ce98063011cb 6SHA1 (patch-aa) = f1210f703dccf759f234846a3139ce98063011cb