85d2038c98
Changes since 0.12.5: * Yet another unreadable file non-root regress bug fix. * Added --list-increment-sizes option from the development branch. Previously this option was in the man page but was omitted in the code (thanks to Michael Schwendt for report). * Regressing and restoring should now take less memory when processing large directories (noticed by Luke Mewburn and others). * When regressing, remove mirror_metadata and similar increments first. This will hopefully help regressing a backup that failed because disk was full (reported by Erik Forsberg). * Fixed rather important quoting problem: quoting directives like --windows-mode were simply ignored when rdiff-backup was running remotely! I'm surprised no one noticed this. Are none of you using --windows-mode or similar? * Fixed handling of (lack of) daylight savings time. Earlier bug would cause some files to be marked an hour later. Thanks to Troels Arvin and Farkas Levente for bug report.
27 lines
740 B
Makefile
27 lines
740 B
Makefile
# $NetBSD: Makefile,v 1.10 2003/12/12 21:58:58 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= rdiff-backup-0.12.6
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= http://rdiff-backup.stanford.edu/
|
|
|
|
MAINTAINER= davids@idiom.com
|
|
HOMEPAGE= http://rdiff-backup.stanford.edu/
|
|
COMMENT= Remote incremental backup utility
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PYTHON_VERSIONS_ACCEPTED= 22 22pth 23 23pth
|
|
USE_BUILDLINK2= yes
|
|
|
|
post-patch:
|
|
${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
< ${WRKSRC}/setup.py > ${WRKSRC}/setup.py.tmp && \
|
|
${MV} ${WRKSRC}/setup.py.tmp ${WRKSRC}/setup.py
|
|
|
|
BUILDLINK_DEPENDS.librsync= librsync>=0.9.6
|
|
|
|
.include "../../devel/librsync/buildlink2.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|