96bd3a80e2
0.8.20 New * Better looping. Increase to 100 loops. * Repeating test for LP bug 487720. Restore fails with "Invalid data - SHA1 hash mismatch" Changes * Log difftar filename where kill happened. * Allow customization. * Add support for --s3-multipart-chunk-size, default 25MB. * Fix formatting in A NOTE ON GDRIVE BACKEND. Minor. Fix * Fix test file count after deleting lockfile. * Support -o{Global,User}KnownHostsFile in --ssh-options. * Add pydrive2 to requirements.txt. * Fix error message on gdrivebackend. * Fix issue 57 SSH backends - IndexError: list index out of range. Other * Merge branch 'master' into 'master' Add support for new b2sdk V2 API * Add support for new b2sdk V2 API. * Merge branch 'master' into 'master' chg:dev:Fix Support DynamicLargeObjects inside swift backend * Merge branch 'issue68' into 'master' have duplicity retry validate_block so object storage can report correct size * Have duplicity retry validate\_block so object storage can report correct size. * Merge branch 'master' into 'master' Replace b2sdk private API references in b2backend with public API * Replace b2sdk private API references in b2backend with public API. * Merge branch 'master' into 'master' Update b2 backend to use *public* b2sdk API. * Update b2 backend to use *public* b2sdk API. * Merge branch 'bullfrogalj/duplicity-master' * B2sdk 1.8.0 refactored minimum\_part\_size to recommended\_part\_size (the value used stays the same) It's a breaking change that makes duplicity fail with the new SDK. This fix makes duplicity compatible with both pre- and post- 1.8.0 SDKs. * Merge branch 'PR-backend-gdrive-mydrive' into 'master' backend gdrive, added Google MyDrive support * Added Google MyDrive support updated man pages and --help text.
51 lines
1.9 KiB
Makefile
51 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.54 2021/08/05 08:26:05 adam Exp $
|
|
|
|
DISTNAME= duplicity-0.8.20
|
|
CATEGORIES= sysutils net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=d/duplicity/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.nongnu.org/duplicity/
|
|
COMMENT= Remote encrypting incremental backup utility
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
|
|
DEPENDS+= ${PYPKGPREFIX}-fasteners-[0-9]*:../../devel/py-fasteners
|
|
DEPENDS+= ${PYPKGPREFIX}-future-[0-9]*:../../devel/py-future
|
|
|
|
GPGPATH= ${PREFIX}/bin/gpg2
|
|
DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2
|
|
DEPENDS+= lftp-[0-9]*:../../net/lftp
|
|
DEPENDS+= ${PYPKGPREFIX}-boto3-[0-9]*:../../net/py-boto3
|
|
DEPENDS+= ${PYPKGPREFIX}-dropbox-[0-9]*:../../net/py-dropbox
|
|
DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko
|
|
DEPENDS+= ${PYPKGPREFIX}-requests-oauthlib-[0-9]*:../../security/py-requests-oauthlib
|
|
DEPENDS+= ${PYPKGPREFIX}-swiftclient-[0-9]*:../../www/py-swiftclient
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-pexpect-[0-9]*:../../devel/py-pexpect
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
|
|
REPLACE_PYTHON+= bin/duplicity
|
|
REPLACE_PYTHON+= bin/rdiffdir
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
SUBST_CLASSES+= fix-paths
|
|
SUBST_STAGE.fix-paths= pre-configure
|
|
SUBST_MESSAGE.fix-paths= fixing hard coded dirs
|
|
SUBST_FILES.fix-paths= setup.py
|
|
SUBST_SED.fix-paths= -e 's,share/man/man1,${PKGMANDIR}/man1,'
|
|
SUBST_SED.fix-paths+= -e 's,share/locale,${PKGLOCALEDIR}/locale,'
|
|
|
|
SUBST_CLASSES+= gpgpath
|
|
SUBST_STAGE.gpgpath= pre-configure
|
|
SUBST_FILES.gpgpath= duplicity/gpginterface.py
|
|
SUBST_VARS.gpgpath= GPGPATH
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../net/librsync/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|