svn commit: r341310 - in head/net: . rsync-bpc
Ruslan Makhmatkhanov
rm at FreeBSD.org
Sun Jan 26 23:37:34 UTC 2014
Author: rm
Date: Sun Jan 26 23:37:32 2014
New Revision: 341310
URL: http://svnweb.freebsd.org/changeset/ports/341310
QAT: https://qat.redports.org/buildarchive/r341310/
Log:
Rsync-bpc is a customized version of rsync that is used as part of BackupPC,
an open source backup system.
The main change to rsync is adding a shim layer that emulates the system calls
for accessing the file system so that rsync can directly read/write files in
BackupPC's format.
Rsync-bpc is fully line-compatible with vanilla rsync, so it can talk to rsync
servers and clients.
Rsync-bpc serves no purpose outside of BackupPC.
WWW: http://backuppc.sourceforge.net/
PR: 182434
Submitted by: Alexander Moisseev <moiseev at mezonplus.ru>
Added:
head/net/rsync-bpc/
head/net/rsync-bpc/Makefile (contents, props changed)
head/net/rsync-bpc/distinfo (contents, props changed)
head/net/rsync-bpc/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Sun Jan 26 23:32:24 2014 (r341309)
+++ head/net/Makefile Sun Jan 26 23:37:32 2014 (r341310)
@@ -1009,6 +1009,7 @@
SUBDIR += rsmb
SUBDIR += rsplib
SUBDIR += rsync
+ SUBDIR += rsync-bpc
SUBDIR += rtg
SUBDIR += rtpbreak
SUBDIR += rtpproxy
Added: head/net/rsync-bpc/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/rsync-bpc/Makefile Sun Jan 26 23:37:32 2014 (r341310)
@@ -0,0 +1,23 @@
+# Created by: Alexander Moisseev <moiseev at mezonplus.ru>
+# $FreeBSD$
+
+PORTNAME= rsync-bpc
+PORTVERSION= 3.0.9.3
+CATEGORIES= net
+MASTER_SITES= SF
+MASTER_SITE_SUBDIR= backuppc/backuppc-beta/4.0.0alpha3
+
+MAINTAINER= moiseev at mezonplus.ru
+COMMENT= Modified rsync that used as part of BackupPC
+
+LICENSE= GPLv3
+
+USES= perl5
+USE_PERL5= build
+HAS_CONFIGURE= yes
+CONFIGURE_SCRIPT= configure.sh
+CONFIGURE_ARGS= --prefix=${PREFIX}
+
+PLIST_FILES= bin/rsync_bpc
+
+.include <bsd.port.mk>
Added: head/net/rsync-bpc/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/rsync-bpc/distinfo Sun Jan 26 23:37:32 2014 (r341310)
@@ -0,0 +1,2 @@
+SHA256 (rsync-bpc-3.0.9.3.tar.gz) = 4b147a0fe60aca65879ad3430c7c8ead09562161b8bbd29f5f29054b925fe01a
+SIZE (rsync-bpc-3.0.9.3.tar.gz) = 775134
Added: head/net/rsync-bpc/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/rsync-bpc/pkg-descr Sun Jan 26 23:37:32 2014 (r341310)
@@ -0,0 +1,13 @@
+Rsync-bpc is a customized version of rsync that is used as part of BackupPC,
+an open source backup system.
+
+The main change to rsync is adding a shim layer that emulates the system calls
+for accessing the file system so that rsync can directly read/write files in
+BackupPC's format.
+
+Rsync-bpc is fully line-compatible with vanilla rsync, so it can talk to rsync
+servers and clients.
+
+Rsync-bpc serves no purpose outside of BackupPC.
+
+WWW: http://backuppc.sourceforge.net/
More information about the svn-ports-all
mailing list