dee3618b99
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
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.29 2015/04/09 10:16:35 hiramatsu Exp $
|
|
|
|
DISTNAME= duplicity-0.6.25
|
|
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
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.duplicity
|
|
PKG_SUPPORTED_OPTIONS= gnupg2
|
|
DEPENDS+= ${PYPKGPREFIX}-lockfile>=0.9.1:../../devel/py-lockfile
|
|
.include "../../mk/bsd.options.mk"
|
|
.if !empty(PKG_OPTIONS:Mgnupg2)
|
|
DEPENDS+= gnupg2-[0-9]*:../../security/gnupg2
|
|
GPGPATH= ${LOCALBASE}/bin/gpg2
|
|
.else
|
|
DEPENDS+= gnupg>=1.0.0:../../security/gnupg
|
|
GPGPATH= ${LOCALBASE}/bin/gpg
|
|
.endif
|
|
|
|
REPLACE_PYTHON+= bin/*
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.6.22
|
|
|
|
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
|
|
|
|
# XXX in 0.6.21, doc files are mode 0600
|
|
post-extract:
|
|
cd ${WRKSRC} && ${CHMOD} go+r *
|
|
|
|
BUILDLINK_API_DEPENDS.librsync+= librsync>=0.9.6
|
|
.include "../../devel/librsync/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|