pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/duplicity Update to duplicity-0.5.18.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0e803b7f6c51
branches:  trunk
changeset: 393600:0e803b7f6c51
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Thu May 21 19:17:13 2009 +0000

description:
Update to duplicity-0.5.18.

New in v0.5.18 (2009/05/20)
---------------------------
Added support for RackSpace's CloudFiles, cf+http.
Added support for Tahoe-LAFS
patch #6743: Tahoe backend for duplicity
Only half of this bug is fixed but it's still useful.
bug #21792: pipe call fails with an error OSError:
            [Errno 24] Too many open files
Changed from using ulimit external command to
 resource.getrlimit to check open files limit.

New in v0.5.17 (2009/05/04)
---------------------------
Removed one line of code left from some testing that I
 did that caused a crash when the target dir was empty
 and collection-status was requested.
Moved from using the df command to get temp space
 availability to Python's os.statvfs() call.  Not all
 df commands work the same way.
patch #6813: Making changelist easy to read
patch #6814: Ignore comments in filelists

New in v0.5.16 (2009/04/21)
---------------------------
bug #24825: duplicity warn on insufficient TMPDIR
            space availability and low max open
            file limits pre-backup.
bug #25594: wrong backup statistics
bug #25976: Password requested when not needed.
patch #6806: More graceful handling of old
             --short-filename files
Added tilde and variable expansion to the source or
target argument that is not a URL.

New in v0.5.15 (2009/04/09)
---------------------------
FTP backend was failing on PureFTPd when the "-x ''"
 option was removed from the second ncftpls popen, a fix
 that was implemented due to bug #24741.  This fix does
 the ls in one pass by extracting the last entry on the
 'ls -l' listing.
If a file is unreadable due to access rights or other
 non-fatal errors, put out error message and continue
 rather than dying messily with a traceback.
Added tilde '~' expansion and variable expansion in the
 options that require a filename.  You can now have this
 "--archive-dir=~/ArchDir/$SYSNAME" if you need it.  No
 expansion is applied to the source or target URL's.
Fixed problem I caused, again, where sys.exit() was
 trapping instead of exiting.  Added big note to not
 to do that again.

New in v0.5.14 (2009/04/02)
---------------------------
After email voting among known duplicity contributors,
 the decision was reached to revert to the GPL Version 2
 license, so with their consensus, duplicity is now under
 GPL Version 2.
Revert to calling NcFTP utilities (ls, get, put) directly
 rather than scripting ncftp via pexpect by reverting to the
 0.5.07 version of ftpbackend.py.
Changed fatal error regarding version 3.2.0 of ncftpput to
 warning level since it has been reported that the problem
 does not occur on most distributions.

Changed from log.Log with numbered log levels to log.Debug,
log.Info, log.Notice, log.Warn, log.FatalError.
The -vN option has not changed.  Verbosity may also be one
 of: character [ewnid], or word ['error', 'warning', 'notice',
 'info', 'debug'].  The default is 4 (Notice).  The options
 -v4, -vn, and -vnotice are functionally equivalent, as are
 the mixed-case versions, -vN, -vNotice, -vNOTICE.
Normalized include statements and tried to insure that all
 duplicity includes were from the duplicity module.
patch #6790: Add --exclude-if-present

New in v0.5.13 (2009/03/26)
---------------------------
Add more error detection to FTP backend.
Fix backends so sleep does not occur after last retry.
Fix so BackendException does not cause traceback except when
verbosity is at level 5 or higher (Info level).
Adjust log levels so some errors show up with default verbosity.
Fixed bug where an extra comma caused a traceback during a warning
 about unnecessary sig files.  Plus fixed print so the real filename
 would show up and not a Python object representation.
Add Changelog.GNU to website and distribution to add a bit of detail
 showing the CVS changes via rcs2log.  Added dist/mkGNUChangelog.sh.
bug #22908: Don't block gpg-agent
To fix the above, --use-agent was added as a command line option.
 When this is specified and asymetric encryption is enabled, then all
 GnuPG passphrases will come from the gpg-agent or equivalent program
 and no passphrase prompt will be issued.
bug #25787: Usernames with escaped @-sign are not handled properly
bug #25976: Password requested when not needed.
patch #6787: import duplicity.GnuPGInterface explicitly

New in v0.5.12 (2009/03/15)
---------------------------
bug #25838: Backup fails / ncftp - remote file already exists
With this fix we also get resume in ftp get/put.  If a put or
 get fails part of the way through, ncftp will resume on the
 next retry.
bug #25853: duplicity fails with boto passwords coming from ~/.boto
patch #6773: Make user name optional in rsync backend
GPG errors will no longer cause tracebacks, but will produce a
 log entry, from gpg, similar to the following:
===== Begin GnuPG log =====
gpg: BAD0BAD0: skipped: public key not found
gpg: [stdin]: encryption failed: public key not found
===== End GnuPG log =====
This will let the user know what really caused the GPG process
to fail, and what really caused errors like 'broken pipe'.

New in v0.5.11 (2009/03/08)
---------------------------
bug #25787: Usernames with @-sign are not handled properly
Bug #333057: GnuPGInterface prints exit statuses incorrectly
bug #25696: ncftp error w/0.5.09 -- nested target directories
bug #15664: When restoring backup: "OverflowError:
            long int too large to convert to int"
patch #6761: More robust pexpect handling of SSH authentication
patch #6762: Wrong exit() used for 2.3/2.4 Python

diffstat:

 sysutils/duplicity/Makefile |   4 ++--
 sysutils/duplicity/PLIST    |  11 ++++++++++-
 sysutils/duplicity/distinfo |   8 ++++----
 3 files changed, 16 insertions(+), 7 deletions(-)

diffs (59 lines):

diff -r c9dae1343a3b -r 0e803b7f6c51 sysutils/duplicity/Makefile
--- a/sysutils/duplicity/Makefile       Thu May 21 19:05:01 2009 +0000
+++ b/sysutils/duplicity/Makefile       Thu May 21 19:17:13 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2009/03/05 17:40:04 tnn Exp $
+# $NetBSD: Makefile,v 1.17 2009/05/21 19:17:13 tnn Exp $
 
-DISTNAME=              duplicity-0.5.10
+DISTNAME=              duplicity-0.5.18
 CATEGORIES=            sysutils net
 MASTER_SITES=          http://savannah.nongnu.org/download/duplicity/
 
diff -r c9dae1343a3b -r 0e803b7f6c51 sysutils/duplicity/PLIST
--- a/sysutils/duplicity/PLIST  Thu May 21 19:05:01 2009 +0000
+++ b/sysutils/duplicity/PLIST  Thu May 21 19:17:13 2009 +0000
@@ -1,6 +1,9 @@
-@comment $NetBSD: PLIST,v 1.4 2009/03/05 17:40:04 tnn Exp $
+@comment $NetBSD: PLIST,v 1.5 2009/05/21 19:17:13 tnn Exp $
 bin/duplicity
 bin/rdiffdir
+${PYSITELIB}/duplicity/GnuPGInterface.py
+${PYSITELIB}/duplicity/GnuPGInterface.pyc
+${PYSITELIB}/duplicity/GnuPGInterface.pyo
 ${PYSITELIB}/duplicity/__init__.py
 ${PYSITELIB}/duplicity/__init__.pyc
 ${PYSITELIB}/duplicity/__init__.pyo
@@ -17,6 +20,9 @@
 ${PYSITELIB}/duplicity/backends/botobackend.py
 ${PYSITELIB}/duplicity/backends/botobackend.pyc
 ${PYSITELIB}/duplicity/backends/botobackend.pyo
+${PYSITELIB}/duplicity/backends/cloudfilesbackend.py
+${PYSITELIB}/duplicity/backends/cloudfilesbackend.pyc
+${PYSITELIB}/duplicity/backends/cloudfilesbackend.pyo
 ${PYSITELIB}/duplicity/backends/ftpbackend.py
 ${PYSITELIB}/duplicity/backends/ftpbackend.pyc
 ${PYSITELIB}/duplicity/backends/ftpbackend.pyo
@@ -35,6 +41,9 @@
 ${PYSITELIB}/duplicity/backends/sshbackend.py
 ${PYSITELIB}/duplicity/backends/sshbackend.pyc
 ${PYSITELIB}/duplicity/backends/sshbackend.pyo
+${PYSITELIB}/duplicity/backends/tahoebackend.py
+${PYSITELIB}/duplicity/backends/tahoebackend.pyc
+${PYSITELIB}/duplicity/backends/tahoebackend.pyo
 ${PYSITELIB}/duplicity/backends/webdavbackend.py
 ${PYSITELIB}/duplicity/backends/webdavbackend.pyc
 ${PYSITELIB}/duplicity/backends/webdavbackend.pyo
diff -r c9dae1343a3b -r 0e803b7f6c51 sysutils/duplicity/distinfo
--- a/sysutils/duplicity/distinfo       Thu May 21 19:05:01 2009 +0000
+++ b/sysutils/duplicity/distinfo       Thu May 21 19:17:13 2009 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2009/03/05 17:40:04 tnn Exp $
+$NetBSD: distinfo,v 1.10 2009/05/21 19:17:13 tnn Exp $
 
-SHA1 (duplicity-0.5.10.tar.gz) = bbad002d2037870ff39b36cc35c15bf2feba589d
-RMD160 (duplicity-0.5.10.tar.gz) = e0afba572cee41679818c304d226e58c72d8c415
-Size (duplicity-0.5.10.tar.gz) = 183829 bytes
+SHA1 (duplicity-0.5.18.tar.gz) = 3999a59236900b4e8fba134dfa4b49155869694e
+RMD160 (duplicity-0.5.18.tar.gz) = fb2b89ac40e4122503196c16b574ef338bf71182
+Size (duplicity-0.5.18.tar.gz) = 212588 bytes



Home | Main Index | Thread Index | Old Index