Download project files

How do I verify a download?


2130 of 64 releases

0.8.09 release from the 0.8 series released

Release information
Release notes:

New in v0.8.09 (2020/01/07)
---------------------------
* Fixed bug #1855636 with patch from Filip Slunecko
  - Wrong buf type returned on error. Make bytes.
* Fixed bug #1855736 with help from Michael Terry
  - Decode Popen output to utf8
* Fixed bug #1856447 with hint from Enno L
  - Replaced with formatted string
* Fixed bug #1855736 - duplicity fails to start
  - Made imports absolute in dup_main.py
* Fixed a mess I made. setup.py was shebanged to
  Py3, duplicity was shebanged to Py2. This meant
  that duplicity ran as Py2 but could not find its
  modules because they were under Py3. AArgh!
* Renamed testing/infrastructure to testing/docker
* Merged in lp:~ed.so/duplicity/boto.fixup
  - fix manpage indention
  - clarify difference between boto backends
  - add boto+s3:// for fu...

Changelog:

2020-01-07 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.09

2020-01-06 Kenneth Loafman <email address hidden>

    * Add snapcraft login to makesnap
    * Fixed bug #1858295 - Unicode error in source filename
      - decode arg if it comes in as bytes
    * Fixed bug #1855736 again - Duplicity fails to start
      - remove decode from unicode string

2020-01-02 Kenneth Loafman <email address hidden>

    * Fix bytes/string differences in subprocess_popen()
      - Now returns unicode string not bytes, like python2
    * Fix bug #1857734 - TypeError in ssh_paramiko_backend
      - conn.recv() can return bytes or string, make string
    * Fix bug #1858153 with patch from az
      - mega backend: fails to create directory

2019-12-28 Kenneth Loafman <email address hidden>

    * Convert all shebangs to python3 for bug #1855736

2019-12-26 Kenneth Loafman <email address hidden>

    * Fixed bug #1857554 name 'file' is not defined
      - file() calls replaced by open() in 3 places.

2019-12-20 Kenneth Loafman <email address hidden>

    * Renamed testing/infrastructure to testing/docker
    * Merged in lp:~ed.so/duplicity/boto.fixup
      - fix manpage indention
      - clarify difference between boto backends
      - add boto+s3:// for future use when boto3+s3://
        will become default s3 backend

2019-12-15 Kenneth Loafman <email address hidden>

    * Fixed a mess I made. setup.py was shebanged to
      Py3, duplicity was shebanged to Py2. This meant
      that duplicity ran as Py2 but could not find its
      modules because they were under Py3. AArgh!

2019-12-15 Kenneth Loafman <email address hidden>

    * Fixed bug #1856447 with hint from Enno L
      - Replaced with formatted string
    * Fixed bug #1855736 - duplicity fails to start
      - Made imports absolute in dup_main.py

2019-12-11 Kenneth Loafman <email address hidden>

    * Fixed bug #1855736 with help from Michael Terry
      - Decode Popen output to utf8

2019-12-09 Kenneth Loafman <email address hidden>

    * Fixed bug #1855636 with patch from Filip Slunecko
      - Wrong buf type returned on error. Make bytes.

File Description Downloads
download icon duplicity-0.8.09.tar.gz (md5, sig) duplicity tarball 866
last downloaded 14 weeks ago
Total downloads: 866

0.8.08 release from the 0.8 series released

Release information
Release notes:

New in v0.8.08 (2019/12/08)
---------------------------
* Fixed bug #1852848 with patch from Tomas Krizek
  - B2 moved the API from "b2" package into a separate "b2sdk" package.
    Using the old "b2" package is now deprecated. See link:
    https://github.com/Backblaze/B2_Command_Line_Tool/blob/master/b2/_sdk_deprecation.py
  - b2backend.py currently depends on both "b2" and "b2sdk", but use of "b2"
    is enforced and "b2sdk" isn't used at all.
  - The attached patch uses "b2sdk" as the primary dependency. If the new
    "b2sdk" module isn't available, it falls back to using the old "b2" in
    order to keep backward compatibility with older installations.
* Added build signing to dist/makesnap.
* Fixed bug #1852876 '_io.BufferedReader' object has no attribute 'uc_name'
  - Fixed a co...

Changelog:

2019-12-08 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.08

2019-12-07 Kenneth Loafman <email address hidden>

    * Fixed bug #1854554 with help from Tommy Nguyen
      - Fixed a typo made during Python 3 conversion.

2019-12-06 Kenneth Loafman <email address hidden>

    * Fixed bug #1855379 with patch from Daniel González Gasull
      - Issue warning on temporary connection loss.

2019-12-05 Kenneth Loafman <email address hidden>

    * Merged in lp:~carlalex/duplicity/duplicity
      - Fixes bug #1840044: Migrate boto backend to boto3
      - New module uses boto3+s3:// as schema.

2019-11-25 Kenneth Loafman <email address hidden>

    * Fixed bug #1853809 - Tests failing with Python 3.8 / Deprecation warnings
      - Fixed the deprecation warnings with patch from Sebastien Bacher
      - Fixed test_globmatch to handle python 3.8 same as 3.7
      - Fixed tox.ini to include python 3.8 in future tests

2019-11-24 Kenneth Loafman <email address hidden>

    * Fixed bug #1853655 - duplicity crashes with --exclude-older-than
      - The exclusion setup checked for valid string only. Made
        the code comprehend datetime (int) as well.

2019-11-20 Kenneth Loafman <email address hidden>

    * Fixed bug #1851668 with help from Wolfgang Rohdewald
      - Applied patches to handle translations.

2019-11-18 Kenneth Loafman <email address hidden>

    * Added build signing to dist/makesnap.
    * Fixed bug #1852876 '_io.BufferedReader' object has no attribute 'uc_name'
      - Fixed a couple of instances where str() was used in place of util.uexc()
      - The file was opened with builtins, so use name, not uc_name

2019-11-16 Kenneth Loafman <email address hidden>

    * Fixed bug #1852848 with patch from Tomas Krizek
      - B2 moved the API from "b2" package into a separate "b2sdk" package.
        Using the old "b2" package is now deprecated. See link:
        https://github.com/Backblaze/B2_Command_Line_Tool/blob/master/b2/_sdk_deprecation.py
      - b2backend.py currently depends on both "b2" and "b2sdk", but use of "b2"
        is enforced and "b2sdk" isn't used at all.
      - The attached patch uses "b2sdk" as the primary dependency. If the new
        "b2sdk" module isn't available, it falls back to using the old "b2" in
        order to keep backward compatibility with older installations.

File Description Downloads
download icon duplicity-0.8.08.tar.gz (md5, sig) duplicity tarball 930
last downloaded 41 weeks ago
Total downloads: 930

0.8.07 release from the 0.8 series released

Release information
Release notes:

New in v0.8.07 (2019/11/14)
---------------------------
* Added b2sdk to snapcraft.yaml
* Fixed bug #1850440 with suggestion from Paolo Montrasio
  - TypeError: Can't mix strings and bytes in path components
* Fixed bug #1850990 with suggestion from Jon Wilson
  - --s3-use-glacier and --no-encryption cause slow backups
* Added dist/makesnap to make spaps automagically.
* Fixed bug #1851167 with help from Aspen Barnes
  - Had Popen() to return strings not bytes
* Merged in lp:~mterry/duplicity/pydrive-cache-fix
  - The pydrive backend had another of the ongoing bytes/string issues. :)
  - This time, it was saving a bytes filename in its internal cache after
    each volume upload. Then when asked for a list of files later, it
    would add the byte-filenames from its cache to the results...

Changelog:

2019-11-14 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.07

2019-11-13 Kenneth Loafman <email address hidden>

    * Merged in lp:~mterry/duplicity/pydrive-cache-fix
      - The pydrive backend had another of the ongoing bytes/string issues. :)
      - This time, it was saving a bytes filename in its internal cache after
        each volume upload. Then when asked for a list of files later, it
        would add the byte-filenames from its cache to the results.
        And we'd end up thinking there were two of the same filename on the backend,
        which would cause a crash at the end of an otherwise successful backup,
        because the collections code would assert on the filenames being unique.
    * Merged in lp:~mterry/duplicity/resume-encrypt-no-pass
      - This branch arose from a Debian patch that has been disabling the
        encryption validation of volume1 during restarts for years.
      - Debian has been preserving the ability to back up with just an encrypt
        key and no password (i.e. to have no secrets on the backup machine).
    * Fixed bug #1851727 - InvalidBackendURL for multi backend
      - Encode to utf8 only on Python2, otherwise leave as unicode

2019-11-12 Kenneth Loafman <email address hidden>

    * Added dist/makesnap to make spaps automagically.
    * Fixed bug #1851167 with help from Aspen Barnes
      - Had Popen() to return strings not bytes

2019-11-09 Kenneth Loafman <email address hidden>

    * Added b2sdk to snapcraft.yaml
    * Fixed bug #1850440 with suggestion from Paolo Montrasio
      - TypeError: Can't mix strings and bytes in path components
    * Fixed bug #1850990 with suggestion from Jon Wilson
      - --s3-use-glacier and --no-encryption cause slow backups

File Description Downloads
download icon duplicity-0.8.07.tar.gz (md5, sig) duplicity tarball 442
last downloaded 40 weeks ago
Total downloads: 442

0.8.06 release from the 0.8 series released

Release information
Release notes:

New in v0.8.06 (2019/11/05)
---------------------------
* Removed a setting in tox.ini that causes coverage to
  be activated during testing duplicity.
* Fixed Resouce warnings when using paramiko. It turns out
  that duplicity's ssh_paramiko_backend.py was not handling
  warning suppression and ended up clearing all warnings,
  including those that default to off.
* Updated b2 backend to work with both v0 and v1 of b2sdk
* Fixed bug #1847885 - B2 fails on string concatenation.
  - use util.fsdecode() to get a string not bytes.
  - Partially fixed in bug #1843995, this applies same fix to
    remaining instances of the problem
* Fixed bug #1848203 with patch from Michael Apozyan
  - convert to integer division
* Fixed bug #1626061 with patch from Michael Apozyan
  - While doing multipa...

Changelog:

2019-11-05 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.06

2019-11-04 Kenneth Loafman <email address hidden>

    * Updated snapcraft.yaml to remove rdiffdir and add libatm1 to stage.
    * Updated snapcraft.yaml to remove python-lockfile and fix spelling.

2019-11-03 Kenneth Loafman <email address hidden>

    * Updated snapcraft.yaml to include rdiffdir and did some reformatting.

2019-10-28 Kenneth Loafman <email address hidden>

    * Removed file() call in swiftbackend. It's been deprecated since py2.

2019-10-27 Kenneth Loafman <email address hidden>

    * Revisited bug #1848783 - par2+webdav raises TypeError on Python 3
      - Fixed so bytes filenames were compared as unicode in re.match()

2019-10-25 Kenneth Loafman <email address hidden>

    * Fixed bug #1849661 with patch from Graham Cobb
      - The problem is that b2backend uses 'quote_plus' on the
        destination URL without specifying the 'safe' argument as
        '/'. Note that 'quote' defaults 'safe' to '/', but
        'quote_plus' does not!
    * Added additional fsdecode's to uses of local_path.name and
      source_path.name in b2backend's _get() and _put. See bug
      #1847885 for more details.
    * Removed a couple of disables from pylint code test.
      - E1103 - Maybe has no member
      - E0712 - Catching an exception which doesn't inherit from BaseException

2019-10-23 Kenneth Loafman <email address hidden>

    * Fixed bug #1848166 - Swift backend fails on string concat
      - added util.fsdecode() where needed

2019-10-19 Kenneth Loafman <email address hidden>

    * Fixed bug #1848783 with patch from Jacob Middag
      - Don't use byte strings in regex

2019-10-17 Kenneth Loafman <email address hidden>

    * Fixed bug #1626061 with patch from Michael Apozyan
      - While doing multipart upload to s3 we need to report the
        total size of uploaded data, and not the size of each part
        individually. So we need to keep track of all parts
        uploaded so far and sum it up on the fly.

2019-10-15 Kenneth Loafman <email address hidden>

    * Fixed bug #1848203 with patch from Michael Apozyan
      - convert to integer division

2019-10-12 Adam Jacobs <email address hidden>

    * Updated b2 backend to work with both v0 and v1 of b2sdk
    * Fixed bug #1847885 - B2 fails on string concatenation.
      - use util.fsdecode() to get a string not bytes.
      - Partially fixed in bug #1843995, this applies same fix to
        remaining instances of the problem

2019-10-08 Kenneth Loafman <email address hidden>

    * Fixed Resouce warnings when using paramiko. It turns out
      that duplicity's ssh_paramiko_backend.py was not handling
      warning suppression and ended up clearing all warnings,
      including those that default to off.

2019-10-07 Kenneth Loafman <email address hidden>

    * Removed a setting in tox.ini that causes coverage to
      be activated during testing duplicity.

File Description Downloads
download icon duplicity-0.8.06.tar.gz (md5, sig) duplicity tarball 431
last downloaded 40 weeks ago
Total downloads: 431

0.8.05 release from the 0.8 series released

Release information
Release notes:

New in v0.8.05 (2019/10/06)
---------------------------
* Changed dist/makedist to fall back to dist/relfiles.txt
  in case bzr or git is not available to get files list.
  Tox sdist needs setup.py which needs dist/makedist.
* Updatated LINGUAS file to add four new translations.
* Set to allow pydevd usage during tox testing.
* Adjust exclusion list for rsync into duplicity_test.
* Fix exc.args handling. Sometimes it's (message, int),
  other times its (int, message). We look for the
  message and use that for the exception report.
* Added more python future includes to support using
  python3 code mixed with python2.
* Sort of fix bugs #1836887 and #1836888 by skipping the
  tests under question when running on ppc64el machines.
* Fix MacOS tempfile selection to avoid /tmp and /var/t...

Changelog:

2019-10-06 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.05

2019-10-05 Kenneth Loafman <email address hidden>

    * Fix bug #1843995 - B2 fails on string concatenation.
      - use util.fsdecode() to get a string not bytes.
    * Fix bug #1844750 - RsyncBackend fails if used with multi-backend.
      - used patch provided by KDM to fix.
    * Fixed bug reported on maillist - Python error in Webdav backend. See:
      https://lists.nongnu.org/archive/html/duplicity-talk/2019-09/msg00026.html
    * Fixed bug #1846167 - webdavbackend.py: expected bytes-like object, not str
      - base64 now returns bytes where it used to be strings, so just decode().
    * Fixed bug #1844950 - ssh-pexpect backend syntax error
      - put the global before the import.
    * Fixed bug #1846678 - --exclude-device-files and -other-filesystems crashes
      - assuming all options had arguments was fixed.

2019-10-04 Kenneth Loafman <email address hidden>

    * Add testenv:coverage and took it out of defaults. Some cleanup.
    * Clean up some pylint warnings.

2019-09-28 Kenneth Loafman <email address hidden>

    * Fix MacOS tempfile selection to avoid /tmp and /var/tmp. See thread:
      https://lists.nongnu.org/archive/html/duplicity-talk/2019-09/msg00000.html

2019-09-26 Kenneth Loafman <email address hidden>

    * Sort of fix bugs #1836887 and #1836888 by skipping the
      tests under question when running on ppc64el machines.

2019-09-22 Kenneth Loafman <email address hidden>

    * Set to allow pydevd usage during tox testing.
    * Adjust exclusion list for rsync into duplicity_test.
    * Fix exc.args handling. Sometimes it's (message, int),
      other times its (int, message). We look for the
      message and use that for the exception report.
    * Added more python future includes to support using
      python3 code mixed with python2.

2019-09-05 Kenneth Loafman <email address hidden>

    * Changed dist/makedist to fall back to dist/relfiles.txt
      in case bzr or git is not available to get files list.
      Tox sdist needs setup.py which needs dist/makedist.
    * Updatated LINGUAS file to add four new translations.

File Description Downloads
download icon duplicity-0.8.05.tar.gz (md5, sig) duplicity tarball 1,005
last downloaded 36 weeks ago
Total downloads: 1,005

0.8.04 release from the 0.8 series released

Release information
Release notes:

New in v0.8.04 (2019/08/31)
---------------------------
* Fixed bug #1839728 with info from Avleen Vig
  - b2 backend requires additional import
* Fixed bug #1839886 with hint from denick
  - Duplicity crashes when using --file-prefix
* Removed socket.settimeout from backend.py.
  It was already set in commandline.py.
* Removed pycryptopp from README requirements
* Merged in lp:~aaron-whitehouse/duplicity/08-snap-python2
  - Add packaging code for Snapcraft/Snap packages
* Fixed build on Launchpad for 0.8.x, so now there is a new PPA at
  https://launchpad.net/~duplicity-team/+archive/ubuntu/daily-dev-trunk
* Ran futurize selectively filter-by-filter to find the ones that work.
* Merged in lp:~aaron-whitehouse/duplicity/08-README-TESTING
  - Change README-TESTING to be correct for runni...

Changelog:

2019-08-31 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.04

2019-08-29 Kenneth Loafman <email address hidden>

    * Made some changes to the Docker infrastructure:
      - All scripts run from any directory, assuming directory
        structure remains the same.
      - Changed from Docker's COPY internal command which is slow to
        using external rsync which is faster and allows excludes.
      - Removed a couple of unused files.

2019-08-26 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-docker-local-import
      - Convert the Docker infrastructure to pull the local branch into
        duplicity_test. This allows testing the local branch with the
        known-good Docker environment, even if it has not yet been
        committed to trunk.
      - As a consequence, remove the -r option to build-duplicity_test.sh.
        This functionality can be achieved by branching that revision
        before running the script.

2019-08-21 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-README-TESTING
      - Change README-TESTING to be correct for running individual tests
        now that we have moved to Tox/Pytest.
    * Merged in lp:~kaffeekiffer/duplicity/azure-filename
      - Encode Azure back-end paths

2019-08-18 Kenneth Loafman <email address hidden>

    * Ran futurize selectively filter-by-filter to find the ones that work.

2019-08-17 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-snap-python2
      - Add packaging code for Snapcraft/Snap packages
    * Fixed build on Launchpad for 0.8.x, so now there is a new PPA at
      https://launchpad.net/~duplicity-team/+archive/ubuntu/daily-dev-trunk

2019-08-13 Kenneth Loafman <email address hidden>

    * Fixed bug #1839886 with hint from denick
      - Duplicity crashes when using --file-prefix
    * Removed socket.settimeout from backend.py.
      It was already set in commandline.py.
    * Removed pycryptopp from README requirements

2019-08-12 Kenneth Loafman <email address hidden>

    * Fixed bug #1839728 with info from Avleen Vig
      - b2 backend requires additional import

File Description Downloads
download icon duplicity-0.8.04.tar.gz (md5, sig) duplicity tarball 481
last downloaded 40 weeks ago
Total downloads: 481

0.8.03 release from the 0.8 series released

Release information
Release notes:

New in v0.8.03 (2019/08/09)
---------------------------
* Some changes to provide Python test coverage:
  - Coverage runs with every test cycle
  - Does not cover functional tests that spawn
    duplicity itself. Next pass.
  - After a run use 'coverage report html' to see
    an overview list and links to drill down. It
    shows up in htmlcov/index.html.
* Fixed bugs #1838427 and #1838702 with a fix
  suggested by Stephen Miller. The fix was to
  supply tarfile with a unicode grpid, not bytes.
* More changes to provide Python test coverage:
  - Now covers functional tests spawning duplicity
  - Does not cover bin/duplicity for some reason
* More changes to provide Python test coverage:
  - Moved bulk of code from bin/duplicity to
    duplicity/dup_main.py for coverage.
* Fixed some...

Changelog:

2019-08-09 Kenneth Loafman <email address hidden>

    * Merged in translation updates
    * Prep for 0.8.03

2019-08-08 Kenneth Loafman <email address hidden>

    * More changes to provide Python test coverage:
      - Moved bulk of code from bin/duplicity to
        duplicity/dup_main.py for coverage.
    * Fixed some 2to3 issues in dup_main.py
    * Fixed division differences with futurize

2019-08-05 Kenneth Loafman <email address hidden>

    * More changes to provide Python test coverage:
      - Now covers functional tests spawning duplicity
      - Does not cover bin/duplicity for some reason

2019-08-02 Kenneth Loafman <email address hidden>

    * Fixed bugs #1838427 and #1838702 with a fix
      suggested by Stephen Miller. The fix was to
      supply tarfile with a unicode grpid, not bytes.

2019-08-01 Kenneth Loafman <email address hidden>

    * Some changes to provide Python test coverage:
      - Coverage runs with every test cycle
      - Does not cover functional tests that spawn
        duplicity itself. Next pass.
      - After a run use 'coverage report html' to see
        an overview list and links to drill down. It
        shows up in htmlcov/index.html.

File Description Downloads
download icon duplicity-0.8.03.tar.gz (md5, sig) duplicity tarball 468
last downloaded 47 weeks ago
Total downloads: 468

0.8.02 release from the 0.8 series released

Release information
Release notes:

New in v0.8.02 (2019/07/25)
---------------------------
* Remove python-gettext from requirements.txt. Normal
  Python installation includes gettext.
* Mod README to include Python 3.6 and 3.7
* Fixed bug #1836829 progress.py: old_div not defined
  - also fixed old_div in _boto_multi.py
* Merged in lp:~limburgher/duplicity/dropbox
  - Fixes bug #1836611 dropbox mixing bytes and strings
* Merged in lp:~stragerneds/duplicity/duplicity
  - Cache results of filename parsing for speedup
* Removed python-gettext from setup.py. Whoops!
* Merged in lp:~mterry/duplicity/pytest-runner-move
  - Move pytest-runner to testing requirements in setup
* Fix language classifiers in setup.py
* Remove speedup in testing backup. The math was correct,
  but it's failing on Docker and Launchpad testing.
* ...

Changelog:

2019-07-25 Kenneth Loafman <email address hidden>

    * Fix dist/makedist to run on python3

2019-07-24 Kenneth Loafman <email address hidden>

    * Fixed bug #1829416 with help from charlie4096
      - onedrive: Can’t convert ‘bytes’ object to str implicitly
    * Merged in po-updates.

2019-07-22 Kenneth Loafman <email address hidden>

    * Enhanced build_duplicity_test.sh
      - Use -h to get help and defaults
      - Takes arguments for distro, revno, help
      - Distros supported are 18.04, 18.10, 19.04, 19.10
      - Revnos are passed to bzr -r option

2019-07-19 Kenneth Loafman <email address hidden>

    * Fix so Docker image duplicity_test will update and pull
      new bzr revisions if changed since last build.

2019-07-18 Kenneth Loafman <email address hidden>

    * Removed python-gettext from setup.py. Whoops!
    * Merged in lp:~mterry/duplicity/pytest-runner-move
      - Move pytest-runner to testing requirements in setup
    * Fix language classifiers in setup.py
    * Remove speedup in testing backup. The math was correct,
      but it's failing on Docker and Launchpad testing.

2019-07-17 Kenneth Loafman <email address hidden>

    * Remove python-gettext from requirements.txt. Normal
      Python installation includes gettext.
    * Mod README to include Python 3.6 and 3.7
    * Fixed bug #1836829 progress.py: old_div not defined
      - also fixed old_div in _boto_multi.py
    * Merged in lp:~limburgher/duplicity/dropbox
      - Fixes bug #1836611 dropbox mixing bytes and strings
    * Merged in lp:~stragerneds/duplicity/duplicity
      - Cache results of filename parsing for speedup

File Description Downloads
download icon duplicity-0.8.02.tar.gz (md5, sig) duplicity tarball 220
last downloaded 40 weeks ago
Total downloads: 220

0.8.01 release from the 0.8 series released

Release information
Release notes:

New in v0.8.01 (2019/07/14)
---------------------------
* Merged in lp:~mterry/duplicity/gio-pydrive-fsdecode
  - Fix gio and pydrive backends to use fsdecode
* Merged in lp:~mterry/duplicity/uexc-string
  - The return type of util.uexc should always be a string.
* Fix some import conflicts with the "past" module
  - Rename collections.py to dup_collections.py
  - Remove all "from future.utils import old_div"
  - Replace old_div() with "//" (in py27 for a while).
  - All tests run for py3, unit tests run for py2. The new
    import fail is "from future import standard_library"
* Fixed bug #1831178 sequence item 0: expected str instance, int found
  - Simply converted int to str when making list
* Merged in lp:~kaffeekiffer/duplicity/azure-python3-fix
  - Use util.fsencode to encode fil...

Changelog:

2019-07-14 Kenneth Loafman <email address hidden>

    * Install python3.6 and 3.7 explicitly in Dockerfile. Tox and Docker
      now support testing Python 2,7, 3.6, and 3.7.
    * Comment out HSIBackendTest since shim is not up-to-date.
    * Merged in po-updates.

2019-07-11 Kenneth Loafman <email address hidden>

    * Another unadorned string.
    * Cleanup some trailing spaces/lines in Docker files.
    * Make sure test filenames a bytes not unicode.
    * Fix test_glob_to_regex to work on Python 3.7

2019-07-10 Kenneth Loafman <email address hidden>

    * Fix warning in _librsync.c module.
    * Add encoding to logging.FileHandler call to make log file utf8
    * Ensure _librsync.so is regenned before tox testing.
    * Adjust POTFILES.in for compilec.py move.
    * Fix so we start duplicity with the base python we run under.
    * Cleanup some trailing spaces/lines in Docker files.

2019-07-04 Kenneth Loafman <email address hidden>

    * Fix some issues found by test_code.py.

2019-07-03 Kenneth Loafman <email address hidden>

    * Fix reversed port assignments (FTP & SSH) in docker-compose.yml.

2019-06-29 Kenneth Loafman <email address hidden>

    * Normalize shebang to just python, no version number
    * Fix so most testing/*.py files have the future suggested lines
      - from __future__ import print_function
        from future import standard_library
        standard_library.install_aliases()
    * Merged lp:~mterry/duplicity/boto-import
      - A couple functions in the boto backend were using the boto module
        without importing it first.
    * Merged in lp:~aaron-whitehouse/duplicity/08-dockerfixes
      - Update duplicity_test Dockerfile:
        * Use 18.04 instead of 16.04
        * Use Ubuntu 18.04 version of pip
        * Add Python3 and 2to3 as a dependencies
        * Set docker locale as UTF-8
    * Merged in lp:~mterry/duplicity/s3fsdecode
      - Fix s3 backups by encoding remote filenames
    * Fix reimport problem where "from future.builtins" was being treated
      the differently than "from builtins". They are both the same, so
      converted to shorter form "from builtins" and removed duplicates.

2019-06-21 Kenneth Loafman <email address hidden>

    * Fixed bug #1833573 0.8.00 does not work on Python 2
      - Fixed shebang to use /usr/bin/python instead of python
    * Fixed bug #1833559 0.8 test fails with 'duplicity not found' errors
      - Fixed assumption that duplicity/rdiffdir were in $PATH
    * Fixed failing test in testing/unit/test_globmatch.py
      - Someone is messing with regex. Fix same.
      - See https://bugs.python.org/issue29995 for details

2019-06-17 Kenneth Loafman <email address hidden>

    * Fix some import conflicts with the "past" module
      - Rename collections.py to dup_collections.py
      - Remove all "from future.utils import old_div"
      - Replace old_div() with "//" (in py27 for a while).
      - All tests run for py3, unit tests run for py2. The new
        import fail is "from future import standard_library"
    * Fixed bug #1831178 sequence item 0: expected str instance, int found
      - Simply converted int to str when making list
    * Merged in lp:~kaffeekiffer/duplicity/azure-python3-fix
      - Use util.fsencode to encode file string

2019-06-11 Kenneth Loafman <email address hidden>

    * Merged in lp:~mterry/duplicity/uexc-string
      - The return type of util.uexc should always be a string.

2019-05-29 Kenneth Loafman <email address hidden>

    * Merged in lp:~mterry/duplicity/gio-pydrive-fsdecode
      - Fix gio and pydrive backends to use fsdecode

File Description Downloads
download icon duplicity-0.8.01.tar.gz (md5, sig) duplicity tarball 202
last downloaded 14 weeks ago
Total downloads: 202

0.8.00 release from the 0.8 series released

Release information
Release notes:

New in v0.8.00 (2019/05/29)
---------------------------
* Merged in lp:~aaron-whitehouse/duplicity/remove-python26
  - Remove Python 2.6 support references and tests.
* Fixed bug #1600692 with patch from Wolfgang Rohdewald
  - Allow symlink to have optional trailing slash during verify.
* Merged in lp:~aaron-whitehouse/duplicity/07-fix_deja_dup_error_on_locked_files
  - Revert log.Error to log.Warn, as it was prior to the merge in rev 1224,
    as this was affecting other applications (e.g. deja dup; Bug #1605939).
* Merged in lp:~mwilck/duplicity/duplicity
  - Speedup of path_matches_glob() by about 8x. See
    https://code.launchpad.net/~mwilck/duplicity/duplicity/+merge/301268
    for more details.
* Fixed conflict in merge from Martin Wilck and applied
  - https://code.launchpad.ne...

Changelog:

2019-05-29 Kenneth Loafman <email address hidden>

    * Merged in lp:~stragerneds/duplicity/duplicity
      - improve test backup speed
      - insure all test output is read
    * Prep for 0.8.00 release

2019-05-26 Kenneth Loafman <email address hidden>

    * Fix TestGlobToRegex.test_glob_to_regex for py3.6 and above
      - see https://bugs.python.org/issue29995 for details

2019-05-25 Kenneth Loafman <email address hidden>

    * Some more work on unadorned strings
      - Fixed test_unadorned_string_literals to list all strings found
      - Added bin/duplicity and bin/rdiffdir to list of files tested
      - All unadorned strings have now been adorned

2019-05-19 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - Python 3 fixes to imapbackend.py
      - Fix bug 1828869: refresh CollectionsStatus after sync
    * Fixed bug #1828662 with patch from Bas Hulsken
      - string.split() had been deprecated in 2, removed in 3.7

2019-05-05 Kenneth Loafman <email address hidden>

    * Manual merge of lp:~yajo/duplicity/duplicity
      - Support partial metadata sync.
      - Fixes bug #1823858 by letting the user to choose partial syncing. Only the metadata for the target chain
        will be downloaded. If older (or newer) chains are encrypted with a different passphrase, the user will
        be able to restore to a given time by supplying only the passphrase for the chain selected by
        the `--restore-time` option when using this new option.
      - A side effect is that using this flag reduces dramatically the sync time when moving files from one to
        another location, in cases where big amounts of chains are found.

2019-03-16 Kenneth Loafman <email address hidden>

    * Merged in lp:~brandon753-ba/duplicity/aws-glacier
      - Adds support for for a command line option to store data on AWS S3 Glacier.

2019-03-16 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - More python 3 fixes
    * Merged in lp:~aaron-whitehouse/duplicity/08-uexc-fix
      - Fix for Bug #1770929 with associated test cases (thanks to Pete Zaitcev (zaitcev)
        in Bug #1797928 for the head start).
    * Merged in lp:~aaron-whitehouse/duplicity/08-style-fixes
      - Fix pylint style issues (over-indented text, whitespace on blank lines etc)
      - Removed "pylint: disable=bad-string-format-type" comment, which was throwing
        an error and does not seem to be needed.
    * Removed last mention of copy.com from man page with help from edso.
    * Fix bug #1811114 with revised onedrivebackend.py from David Martin
      - Adapt to new Microsoft Graph API

2019-02-25 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - More changes for unicode and py3 support
    * Merged in lp:~mterry/duplicity/pydrive-root
      - Just a tiny fix to clean up the temporary file we create to find the root ID.
        It's a little surprising for the user if they wind up with this file called
        "i_am_in_root" that they don't know where it came from. Almost sounds like
        they were hacked.
    * Fixed bug #1817375 with hint from mgorse
      - Added 'global pexpect' at end of imports

2019-01-25 Kenneth Loafman <email address hidden>

    * Merged in lp:~vam9/duplicity/0.8-series-s3-kms-support
      - Added s3 kms server side encryption support with kms-grants support.

2019-01-06 Kenneth Loafman <email address hidden>

    * Merged in lp:~okrasz/duplicity/duplicity
      - Add --azure-blob-tier that specifies storage tier
        (Hot,Cool,Archive) used for uploaded files.

2018-12-27 Kenneth Loafman <email address hidden>

    * Fixed bug #1803896 with patch from slawekbunka
      - Add __enter__ and __exit__ to B2ProgressListener

2018-12-23 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - First pass at a python 3 port.

2018-10-17 Kenneth Loafman <email address hidden>

    * Fixed bug #1798206 and bug #1798504
      - Made paramiko a global with import during __init__ so it would
        not be loaded unless needed.

2018-12-15 Kenneth Loafman <email address hidden>

    * Merged in lp:~mcuelenaere/duplicity/duplicity
      - Make sure we don't load files completely into memory when transferring them from/to
        the remote WebDAV endpoint.

2018-10-16 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - Run futurize --stage1, and adjust so that tests still pass.
    * Fixed but #1797797 with patch from Bas Hulsken
      - use bytes instead of unicode for '/' in filenames

2018-10-11 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - Adorn some remaining strings

2018-08-17 Kenneth Loafman <email address hidden>

    * Merged in lp:~qsantos/duplicity/fix-unmatched-rule-error
      - There are actually two commits: the first fixes a very minor detail in the README regarding the
        Python version that should be used; the second fixes the way exceptions are handled when an
        incorrect rule is specified, and display the nice error message rather than an obscure stack trace.

2018-08-17 Kenneth Loafman <email address hidden>

    * Merged in lp:~mgorse/duplicity/0.8-series
      - Adorn some duplicity/*.py strings. I've avoided submitting anything that I think might require
        significant discussion; I think that reviewing will be easier this way. Mostly annotated strings
        as unicode, except for librsync.py.

2018-08-01 Kenneth Loafman <email address hidden>

    * Added AUTHORS file listing all copyright claimants in headers

2018-07-26 Kenneth Loafman <email address hidden>

    * Adorned strings in testing/, testing/functional/, and testing/unit

2018-07-24 Kenneth Loafman <email address hidden>

    * Reverted back to rev 1317 and reimplemented revs 1319 to 1322

2018-07-23 Kenneth Loafman <email address hidden>

    * Fixed unadorned strings to unicode in duplicity/backends/*
      - Some fixup due to shifting indentataion not matching PEP8.

2018-07-22 Kenneth Loafman <email address hidden>

    * Added function to fix unadorned strings (testing/fix_unadorned_strings.py)
      - Fixes by inserting 'u' before token string
      - Solves 99.9% of the use cases we have
      - Fix unadorned strings to unicode in bin/duplicity and bin/rdiffdir
      - Add import for __future__.print_function to find_unadorned_strings.py

2018-07-20 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-adorn-strings
      - Adorning string literals (normally to make these unicode), in support of a transition to Python 3.
        See https://blueprints.launchpad.net/duplicity/+spec/adorn-string-literals
      - Adorn string in duplicity/globmatch.py.
      - Adorn strings in testing/unit/test_globmatch.py
      - Adorn strings in selection.py
      - Adorn strings in functional/test_selection.py and unit/test_selection.py
      - Remove ignores for these files in test_code.py

2018-07-08 Kenneth Loafman <email address hidden>

    * Fixed bug #1780617 Test fail when GnuPG >= 2.2.8
      - Relevant change in GnuPG 2.2.8: https://dev.gnupg.org/T3981
      - Added '--ignore-mdc-error' to all gpg calls made.

2018-07-07 Kenneth Loafman <email address hidden>

    * Merged in lp:~excitablesnowball/duplicity/s3-onezone-ia
      - Add option --s3-use-onezone-ia S3 One Zone Infrequent Access Storage

2018-06-09 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-pycodestyle
      - Tox changes to accommodate new pycodestyle version warnings.
        Ignored W504 for now and marked as a TODO.
        Marked W503 as a permanent ignore, as it is prefered to the (mutually exclusive) W504 under PEP8.
      - Marked various regex strings as raw strings to avoid the new W605 "invalid escape sequence".
    * Merged in lp:~aaron-whitehouse/duplicity/08-unadorned-strings
      - Added new script to find unadorned strings (testing/find_unadorned_strings.py python_file)
        which prints all unadorned strings in a .py file.
      - Added a new test to test_code.py that checks across all files for unadorned strings and gives
        an error if any are found (most files are in an ignore list at this stage, but this will allow
        us to incrementally remove the exceptions as we adorn the strings in each file).
      - Adorn string literals in test_code.py with u/b

2018-05-07 Kenneth Loafman <email address hidden>

    * Fixed bug #1768954 with patch from Max Hallden
      - Add AZURE_ENDPOINT_SUFFIX environ variable to allow setting to non-U.S. servers
    * Fixed bug #x1717935 with suggestion from strainu
      - Use urllib.quote_plus() to properly quote pathnames passed via URL

2018-05-01 Kenneth Loafman <email address hidden>

    * Merged in lp:~dawgfoto/duplicity/fixup1252
      * only check decryptable remote manifests
        - fixup of revision 1252 which introduces a non-fatal error message (see #1729796)
        - for backups the GPG private key and/or it's password are typically not available
        - also avoid interactive password queries through e.g. gpg agent

2018-01-21 Kenneth Loafman <email address hidden>

    * Merged in lp:~dawgfoto/duplicity/fixup1251
      - Avoid redundant replication of already present backup sets.
      - Fixed by adding back BackupSet.__eq__ which was accidentally(?) removed in 1251.

2017-12-24 Kenneth Loafman <email address hidden>

    * Reduce dependencies on backend libraries
      - Moved backend imports into backend class __init__ method
      - Surrounded imports with try/except to allow better errors
      - Put all library dependencies in requirements.txt

2017-12-22 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-ufn-to-fsdecode
      - Change util.fsdecode to use "replace" instead of "ignore" (matching behaviour of util.ufn)
      - Replace all uses of ufn with fsdecode
      - Make backend.tobytes use util.fsencode rather than reimplementing

2017-12-20 Kenneth Loafman <email address hidden>

    * Fixes so pylint 1.8.1 does not complain about missing conditional imports.
      - Fix dpbxbackend so that imports require instantiation of the class.
      - Added pylint: disable=import-error to a couple of conditional imports

2017-12-14 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-ufn-to-uc_name
      - Replace util.ufn(path.name) with path.uc_name throughout.

2017-12-13 Kenneth Loafman <email address hidden>

    * More pytest changes
      - Use requirements.txt for dependencies
      - Run unit tests first, then functional
      - Some general cleanup

2017-12-12 Kenneth Loafman <email address hidden>

    * Converted to use pytest instead of unittest (setup.py test is now discouraged)
      - We use @pytest.mark.nocapture to mark the tests (gpg) that require
        no capture of file streams (currently 10 tests).
      - The rest of the tests are run normally

2017-12-03 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-unicode
      - Many strings have been changed to unicode for better handling of international
        characters and to make the transition to Python 3 significantly easier, primarily
        on the 'local' side of duplicity (selection, commandline arguments etc) rather
        than any backends etc.

2017-11-28 Kenneth Loafman <email address hidden>

    * Merged in lp:~crosser/duplicity/fix-small-file-upload
      - Fixed small file upload changes made in Dropbox SDK v7.1

2017-11-25 Kenneth Loafman <email address hidden>

    * Merged in lp:~crosser/duplicity/fix-oauth-flow
      - Fixed bug #1638236 "BackendException with oauth2client 4.0.0"
    * Merged in lp:~crosser/duplicity/dpbx-fix-file-listing
      - Fixed bug #1639664 "Dropbox support needs to be updated for Dropbox SDK v7.1"

2017-11-23 Kenneth Loafman <email address hidden>

    * More fixes for Unicode handling
      - Default to 'utf-8' if sys.getfilesystemencoding() returns 'ascii' or None
      - Fixed bug #1386373 with suggestion from Eugene Morozov

2017-11-18 Kenneth Loafman <email address hidden>

    * Fixed bug #1733057 AttributeError: 'GPGError' object has no attribute 'decode'
      - Replaced call to util.ufn() with call to util.uexc(). Stupid typo!

2017-11-09 Kenneth Loafman <email address hidden>

    * Fixed bug #1730902 GPG Error Handling
      - use util.ufn() not str() to handle encoding

2017-11-01 Kenneth Loafman <email address hidden>

    * Fixed bug #1723890 with patch from Killian Lackhove
      - Fixes error handling in pydrivebackend.py

2017-10-31 Kenneth Loafman <email address hidden>

    * Fixed bug #1720159 - Cannot allocate memory with large manifest file since 0.7.03
      - filelist is not read if --file-changed option in collection-status not present
      - This will keep memory usage lower in non collection-status operations

2017-10-26 Kenneth Loafman <email address hidden>

    * Fixed bug #1448094 with patch from Tomáš Zvala
      - Don't log incremental deletes for chains that have no incrementals
    * Fixed bug #1724144 "--gpg-options unused with some commands"
      - Add --gpg-options to get version run command

2017-10-16 Kenneth Loafman <email address hidden>

    * Fixed bug #1654756 with new b2backend.py module from Vincent Rouille
      - Faster (big files are uploaded in chunks)
      - Added upload progress reporting support

2017-10-12 Kenneth Loafman <email address hidden>

    * Patched in lp:~mterry/duplicity/rename-dep
      - Make rename command a dependency for LP build

2017-09-22 Kenneth Loafman <email address hidden>

    * Fixed bug #1714663 "Volume signed by XXXXXXXXXXXXXXXX, not XXXXXXXX"
      - Normalized comparison length to min length of compared keys before comparison
      - Avoids comparing mix of short, long, or fingerprint size keys.

2017-09-13 Kenneth Loafman <email address hidden>

    * Fixed bug #1715650 with patch from Mattheww S
      - Fix to make duplicity attempt a get first, then create, a container
        in order to support container ACLs.

2017-09-07 Kenneth Loafman <email address hidden>

    * Merged in lp:~mterry/duplicity/more-decode-issues
      - Here's some fixes for another couple UnicodeDecodeErrors.
      - The duplicity/dup_time.py fixes when a user passes a utf8 date string (or a string with bogus
        utf8 characters, but they have to really try to do that). This is bug 1334436.
      - The bin/duplicity change from str(e) to util.uexc(e) fixes bug 1324188.
      - The rest of the changes (util.exception_traceback and bin/duplicity changes to use it) are to
        make the printing of exceptions prettier. Without this, if you see a French exception, you see
        "accept\xe9es" instead of "acceptées".
      - You can test all of these changes in one simple line:
        $ LANGUAGE=fr duplicity remove-older-than $'accept\xffées'
    * Fix backend.py to allow string, list, and tuple types to support megabackend.py.

2017-09-06 Kenneth Loafman <email address hidden>

    * Fixed bug introduced in new megabackend.py where process_commandline()
      takes a string not a list. Now it takes both.
    * Updated web page for new megabackend requirements.

2017-09-01 Kenneth Loafman <email address hidden>

    * Fixed bug #1538333 Assertion error in manifest.py: assert filecount == ...
      - Made sure to never pass .part files as true manifest files
      - Changed assert to log.Error to warn about truncated/corrupt filelist
      - Added unit test to make sure detection works
      - Note: while this condition is serious, it will not affect the basic backup and restore
        functions. Interactive options like --list-files-changed and --file-changed will not
        work correctly for this backup set, so it is advised to run a full backup as soon as
        possible after this error occurs.
    * Fixed bug #1638033 Remove leading slash on --file-to-restore
      - code already used rstrip('/') so change to just strip('/')

2017-08-29 Kenneth Loafman <email address hidden>

    * Fixed bug #1394386 with new module megabackend.py from Tomas Vondra
      - uses megatools from https://megatools.megous.com/ instead of mega.py library
        which has been deprecated
      - fixed copyright and PEP8 issues
      - replaced subprocess.call() with self.subprocess_popen() to standardize

2017-08-28 Kenneth Loafman <email address hidden>

    * Fixed bug #1711905 with suggestion from Schneider
      - log.Warn was invoked with log.warn in webdavbackend.py
    * Merged in lp:~mterry/duplicity/gpg-tag-versions
      - Support gpg versions numbers that have tags on them.
      - This can happen if you build gpg from git trunk (e.g. 2.1.15-beta20). Or if you run
        against the freedesktop flatpak runtime (e.g. 2.1.14-unknown).

2017-08-15 Kenneth Loafman <email address hidden>

    * Fixed bug #1709047 with suggestion from Gary Hasson
      - fixed so default was to use original filename
    * Fixed PEP8 errors in bin/duplicity
    * Merged in lp:~mterry/duplicity/gio_child_for_display_name
      - gio: be slightly more correct and get child GFiles based on display name

2017-08-06 Kenneth Loafman <email address hidden>

    * Merged in lp:~mterry/duplicity/giobackend-display-name
      - giobackend: handle a wider variety of gio backends by making less assumptions;
        in particular, this fixes the google-drive: backend

2017-07-20 Kenneth Loafman <email address hidden>

    * Fixed encrypted remote manifest handling to merely put out a non-fatal
      error message and continue if the private key is not available.

2017-07-19 Kenneth Loafman <email address hidden>

    * Fixed slowness in 'collection-status' by basing the status on the
      remote system only. The local cache is treated as empty.

2017-07-11 Kenneth Loafman <email address hidden>

    * Patched in lp:~dawgfoto/duplicity/skip_sync_collection_status
      - collection-status should not sync metadata
      - up-to-date local metadata is not needed as collection-status is
        generated from remote file list
      - syncing metadata might require to download several GBs

2017-06-30 Kenneth Loafman <email address hidden>

    * Merged in lp:~xlucas/duplicity/multibackend-prefix-affinity
      - Support prefix affinity in multibackend.
    * Merged in lp:~xlucas/duplicity/pca-backend
      - Add support for OVH Public Cloud Archive backend.
    * Fixed PEP8 and 2to3 issues.

2017-06-23 Kenneth Loafman <email address hidden>

    * Merged in lp:~dawgfoto/duplicity/replicate
      - Add integration test for newly added replicate command.
      - Also see https://code.launchpad.net/~dawgfoto/duplicity/replicate/+merge/322836.

2017-06-19 Kenneth Loafman <email address hidden>

    * Fixed problem in dist/makedist when building on Mac where AppleDouble
      files were being created in the tarball. See:
      https://superuser.com/questions/61185/why-do-i-get-files-like-foo-in-my-tarball-on-os-x

2017-06-10 Kenneth Loafman <email address hidden>

    * Fixed bug #1265765 with patches from Matthias Larisch and Edgar Soldin
      - SSH Paramiko backend now uses BufferedFile implementation to enable
        collecting the entire list of files on the backend.
    * Copy.com is gone so remove copycombackend.py.
    * Merged in lp:~xlucas/duplicity/swift-multibackend-bug
      - Fix a bug when swift backend is used in a multibackend configuration.

2017-06-04 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-fix-man-verify
      - Fix description of --verify and --compare-data in the man page. Now
        clarifies that verify compares the restored files to hashes stored at
        backup date, while --compare-data compares restored files to files
        in target_path.

2017-06-03 Kenneth Loafman <email address hidden>

    * Merged in lp:~dernils/duplicity/docker-compose
      - Test Infrastructure now utilizing docker-compose

2017-06-02 Kenneth Loafman <email address hidden>

    * Fix bug #1672540 with patch from Benoit Nadeau
      - Rename would fail to move par files when moving across filesystems.
      - Patch uses shutil.move() to do the rename instead.

2017-05-31 Kenneth Loafman <email address hidden>

    * Revisited bug #670891 with patch from Edgar Soldin
      - Forced librsync.PatchedFile() to extract file object from TemporaryFile()
        object when on Windows or Cygwin systems. This allows us to avoid the
        problem of tmpfile() use which creates temp files in the wrong place.
      - See discussion at https://bugs.launchpad.net/duplicity/+bug/670891

2017-05-17 Kenneth Loafman <email address hidden>

    * May have finally fixed bug #1556553, "Too many open files...".
      - Applied patch from Howard Kaye, question #631423. The fix is to dup
        the file descriptor, and then close the file in the deallocator
        routine in the glue code. Duping the file lets the C code and the Python
        code each close the file when they are done with it.
      - Invalidated and removed the fix put in for bug #1320832.
      - Caveat: long incremental chains will still eat up a large number of file
        descriptors. It's a very risky practice, so I'm not inclined to fix it.

2017-05-15 Kenneth Loafman <email address hidden>

    * Merged in lp:~dernils/duplicity/Dockerfile
      - Now have subnet name and IP of the subnet for testing as a variable.

2017-05-14 Kenneth Loafman <email address hidden>

    * Merged in lp:~xlucas/duplicity/swift-storage-policies
      - This brings support for Swift storage policies: when using a Swift
        backend, you can specify the policy containers should be operating on.
      - This is similar to AWS Cloud Storage classes (ia, rrs, glacier and so on).
    * Merged in lp:~dernils/duplicity/Dockerfile
      - Added another backend to the docker test infrastructure, updated the setup
        for testing and updated the documentation.

2017-05-12 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/tox_pylint_fixes
      - Changes needed to run-tests without pylint E0401(import-error) errors

2017-05-11 Kenneth Loafman <email address hidden>

    * Fixed bug #1320641 and others regarding lockfile
      - swap from lockfile to fasteners module
      - use an fcntl() style lock for process lock of duplicity cache
      - lockfile will now clear if duplicity is killed or crashes

2017-05-09 Kenneth Loafman <email address hidden>

    * Fixed bug #1689632 with patch from Howard Kaye
      - On MacOS, the tempfile.TemporaryFile call erroneously raises an
        IOError exception saying that too many files are open. This causes
        restores to fail randomly, after thousands of files have been restored.

2017-05-06 Kenneth Loafman <email address hidden>

    * Merged in lp:~dernils/duplicity/DockerfileConvenience
      - Add a few files that are the beginning of further infrastructure based
        on docker. It contains a Dockerfile for a simple ftp server (used for
        backend testing) and a setup script that can be used to set up the
        complete test environment.
    * Moved Dockerfile for duplicitytest into testinfrastructure/duplicity_test
    * Moved some things around in testing/infrastructure to clean up

2017-05-05 Kenneth Loafman <email address hidden>

    * Merged in lp:~dernils/duplicity/DockerfileConvenience
      - Added a few tools to the Dockerfile that make life easier
    * Fixed bug #1320832 with suggestion from Oskar Wycislak
      - Use chunks instead of reading it all in swiftbackend

2017-05-04 Kenneth Loafman <email address hidden>

    * Merged in lp:~dawgfoto/duplicity/replicate
      - Add replicate command to replicate a backup (or backup
        sets older than a given time) to another backend, leveraging
        duplicity's backend and compression/encryption infrastructure.
    * Fixed some incoming PyLint and PEP-8 errors.
    * Merged in lp:~marix/duplicity/add-azure-arguments
      - Using the Azure backend to store large amounts of data we found that
        performance is sub-optimal. The changes on this branch add command line
        parameters to fine-tune some parameters of the Azure storage library,
        allowing to push write performance towards Azure above 1 Gb/s for large
        back-ups. If a user does not provide the parameters the defaults of the
        Azure storage library will continue to be used.
    * Replace incoming non-ASCII chars in commandline.py
    * bzr does not honor perms so fix the perms at the start of the testing and
      avoid annoying error regarding testing/gnupg having too lenient perms

2017-04-23 Kenneth Loafman <email address hidden>

    * Merged in lp:~dernils/duplicity/testing
      - Fixed minor stuff in requirements.txt.
      - Added a Dockerfile for testing.
      - Minor changes to README files.
      - Added README-TESTING with some information on testing.
    * Merged in lp:~dernils/duplicity/documentation
      - Minor changes to README-REPO, README-TESTING
      - Also redo the changes to requirements.txt and Dockerfile

2017-04-22 Kenneth Loafman <email address hidden>

    * Fixed bug #1680682 with patch supplied from Dave Allan
      - Only specify --pinentry-mode=loopback when --use-agent is not specified
    * Fixed man page that had 'cancel' instead of 'loopback' for pinentry mode
    * Fixed bug #1684312 with suggestion from Wade Rossman
      - Use shutil.copyfile instead of os.system('cp ...')
      - Should reduce overhead of os.system() memory usage.

2017-03-13 Kenneth Loafman <email address hidden>

    * Fixed bug #1668750 - Don't mask backend errors
      - added exception prints to module import errors

2017-03-11 Kenneth Loafman <email address hidden>

    * Fixed bug #1671852 - Code regression caused by revision 1108
      - change util.uexc() back to bare uexc()

2017-03-05 Kenneth Loafman <email address hidden>

    * Merged in p:~aaron-whitehouse/duplicity/pep8_E402_fixes
      - Fixed PEP8 errors: E402 module level import not at top of file

2017-03-02 Kenneth Loafman <email address hidden>

    * Merged in lp:~benoit.bertholon/duplicity/duplicity
      - Use the globals.archive_dir variable to store only a string
        in the case of a path, uses globals.archive_dir_path

2017-02-21 Kenneth Loafman <email address hidden>

    * Merged in lp:~marix/duplicity/azure-storage-0.30.0-plus
      - This makes the Azure backend compatible with version 0.30.0 and up of the
        underlying azure-storage package.
    * Merged in lp:~marix/duplicity/azure-storage-sas
      - This branch adds support for Shared Access Signature to the Azure backend
        which allows to run Duplicity with a minimal set of permissions.
    * Merged in lp:~aaron-whitehouse/duplicity/pep8_test_fixes
      - Fix PEP-8 testing by moving to using pycodestyle library.
      - Temporarily add ignores to allow these tests to pass.
      - Fix E305 PEP8 errors: expected 2 blank lines after class or function definition, found 1.
    * Merged in lp:~benoit.bertholon/duplicity/duplicity
      - Fixes bug #1666194 - ProcessCommandLine function called twice fail and arglist argument not used
    * Fixed variable name change in last merge which broke a bunch of tests
      - Changed archive_dir_root back to archive_dir
    * Fixed bug #1367675 - IMAP Backend does not work with Yahoo server
      - added the split() as needed in 'nums=list[0].strip().split(" ")'
      - the other fixes mentioned in the bug report comments were already done

2017-02-12 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-python-futurize-stage-1
      - Made many of the safer changes for improved Python 3 support (python-future's futurize -stage1)
        without functional change to the code (and leaving the isinstance(s, types.StringType) tests unchanged).
      - Created Python 2/3 compatible tests for int and long.
      - Update setup.py to show only Python 2.7 support.

2017-02-11 Kenneth Loafman <email address hidden>

    * Fixed bug #1603704 with patch supplied by Maciej Bliziński
      - Crash with UnicodeEncodeError

2017-02-08 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-refactor-unit-test-globmatch
      - Rename path_matches_glob_fn to select_fn_from_glob, as this more accurately reflects the return value.
      - Significantly refactored unit/test_globmatch.py to make this cleaner and clearer.
    * Fixed bug #1657916 with patch supplied by Daniel Harvey
      - B2 provider cannot handle two backups in the same bucket

2017-02-07 Kenneth Loafman <email address hidden>

    * Add detail about import exceptions in onedrivebackend.py

2017-01-30 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/08-merge-glob-parsers
      - Use a single code path for glob strings whether or not these contain special
        characters/wildcards (glob_get_normal_sf) and remove glob_get_filename_sf and glob_get_tuple_sf.
      - Remove run-tests-ve as this was identical to run-tests.

2017-01-24 Kenneth Loafman <email address hidden>

    * Merged in lp:~matthew-t-bentley/duplicity/duplicity
      - Sets a user agent. Backblaze asked for this in case there are errors that originate
        from the Duplicity B2 backend
      - Only retrieves a new upload URL when the current one expires, to bring it in line
        with their best practices for integrations: https://www.backblaze.com/b2/docs/integration_checklist.html

2017-01-19 Kenneth Loafman <email address hidden>

    * Fixed bug #1655268 "--gpg-binary option not working"
      - If gpg binary is specified rebuild gpg profile using new binary location

2017-01-16 Kenneth Loafman <email address hidden>

    * Fixed bug #1623342 with patch supplied by Daniel Jakots
      - Failing test on OpenBSD because tar/gtar not found
    * Fixed bug #1654220 with patch supplied by Kenneth Newwood
      - Duplicity fails on MacOS because GPG version parsing fails
    * Merged in lp:~aaron-whitehouse/duplicity/0-8-merge_selection_tests
      - Merge in TestExcludeIfPresent from 0.7-series, which tests the behaviour of
        duplicity's --exclude-if-present option.
      - Move and rename TestTrailingSlash2 test (was duplicate name) as in 0.7-series.
      - Fix PEP error on adbackend.py.
      - Add jottalib as a tox dep to fix pylint error.
      - Remove unnecessary skipUnless Linux as per 0.7-series.

2016-12-29 Kenneth Loafman <email address hidden>

    * Fix Bug #1642813 with patch from Ravi
      - If stat() returns None, don't attempt to set perms.
    * Merged in lp:~breunigs/duplicity/amazondrive3
      - As reported on the mailinglist, if a space is entered while duplicity asks for the URL, it fails.
        Since all important spaces are URL encoded anyway, this should be fine even if there are spaces in
        the URL at all. I also patched it in the onedrive backend, because it must have similar issues.

2016-12-25 Kenneth Loafman <email address hidden>

    * Fix some issues with testing on MacOS
    * Fix problem with gpg2 in yakety and zesty

2016-12-11 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/Bug_1624725_files_within_folder_slash
      - Fixed Bug #1624725, so that an include glob ending in "/" now includes folder contents (for globs with
        and without special characters). This preserves the behaviour that an expression ending in "/" only
        matches a folder, but now the contents of any matching folder is included.

2016-12-08 Kenneth Loafman <email address hidden>

    * Merged in lp:~horgh/duplicity/copy-symlink-targets-721599
      - Add --copy-links to copy symlink contents, not just the link itself.

2016-11-21 Kenneth Loafman <email address hidden>

    * Fix bug using 40-char sign keys, from Richard McGraw on mail list
      - Remove truncation of argument and adjust comments
    * Merged in lp:~dernils/duplicity/robust-dropbox-backend
      - Added new command line option --backend-retry-delay
        that allows to determine the time that duplicity sleeps
        before retrying after an error has occured.
      - Added some robustness to dpbxbackend.py that ensures re-authentication
        happens in case that a socket is changed (e.g. due to a forced reconnect
        of a dynamic internet connection).
    * Merged in lp:~ed.so/duplicity/manpage.fixes
      - Fix html output via rman on the website

2016-11-16 Kenneth Loafman <email address hidden>

    * Fixed bug #1642098 - does not create PAR2 archives when '--par2-options' is used
      - Missing space between par2-options plus default options

2016-11-07 Kenneth Loafman <email address hidden>

    * Merged in lp:~breunigs/duplicity/amazondrive2
      - Fixed variable renaming issue

2016-11-01 Kenneth Loafman <email address hidden>

    * Fixed bug #1621194 with code from Tornhoof
      - Do backup to google drive working without a service account
    * Merged in lp:~havard/duplicity/jottacloudbackend
      - Adds support for a new backend, jottacloud.com, using the scheme `jottacloud:/<folder>`.
      - Reverse-engineered library, `jottalib`: http://github.com/havardgulldahl/jottalib
      - Here's how you set up jottalib https://github.com/havardgulldahl/jottalib/wiki
    * Merged in lp:~breunigs/duplicity/amazondrive
      - Provide a native backend for AmazonDrive

2016-10-22 Kenneth Loafman <email address hidden>

    * Merged in lp:~mwilck/duplicity/duplicity
      - GPG: enable truly non-interactive operation with gpg2
      - This patch fixes the IMO unexpected behavior that, when using GnuPG2, a pass phrase dialog always pops up for
        saving backups. This is particularly annoying when trying to do unattended / fully automatic backups.

2016-09-16 Kenneth Loafman <email address hidden>

    * Fixed bug #1623342 with patch from Daniel Jakots
      - failing test on OpenBSD because tar/gtar not found

2016-08-22 Kenneth Loafman <email address hidden>

    * Fixed bugs #815510 and #1615480
      - Changed default --volsize to 200MB
    * Merged in lp:~mstoll-de/duplicity/duplicity
      - Backblaze announced a new domain for the b2 api

2016-08-18 Kenneth Loafman <email address hidden>

    * Merged in lp:~fenisilius/duplicity/acd_init_mkdir
      - Allow duplicity to create remote folder

2016-08-12 Kenneth Loafman <email address hidden>

    * Fixed bug #1612472 with patch from David Cuthbert
      - Restore from S3 fails with --with-prefix-archive if prefix includes '/'
    * Merged in lp:~arashad.ahamad/duplicity/duplicity_latest
      - Changes for connecting to IBM Bluemix ObjectStorage. See man page.

2016-07-31 Kenneth Loafman <email address hidden>

    * Fixed conflict in merge from Martin Wilck and applied
      - https://code.launchpad.net/~mwilck/duplicity/0.7-series/+merge/301492
      - merge fixes setsid usage in functional testing.

2016-07-28 Kenneth Loafman <email address hidden>

    * Merged in lp:~mwilck/duplicity/duplicity
      - Speedup of path_matches_glob() by about 8x. See
        https://code.launchpad.net/~mwilck/duplicity/duplicity/+merge/301268
        for more details.

2016-07-24 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/07-fix_deja_dup_error_on_locked_files
      - Revert log.Error to log.Warn, as it was prior to the merge in rev 1224,
        as this was affecting other applications (e.g. deja dup; Bug #1605939).

2016-07-20 Kenneth Loafman <email address hidden>

    * Fixed bug #1600692 with patch from Wolfgang Rohdewald
      - Allow symlink to have optional trailing slash during verify.

2016-07-03 Kenneth Loafman <email address hidden>

    * Merged in lp:~aaron-whitehouse/duplicity/remove-python26
      - Remove Python 2.6 support references and tests.

File Description Downloads
download icon duplicity-0.8.00.tar.gz (md5, sig) duplicity tarball 574
last downloaded 7 weeks ago
Total downloads: 574

2130 of 64 releases