From owner-svn-ports-head@FreeBSD.ORG Sun Jan 26 23:37:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11726C88; Sun, 26 Jan 2014 23:37:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E610F17B3; Sun, 26 Jan 2014 23:37:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QNbX3i094352; Sun, 26 Jan 2014 23:37:33 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0QNbXZJ094348; Sun, 26 Jan 2014 23:37:33 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401262337.s0QNbXZJ094348@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sun, 26 Jan 2014 23:37:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341310 - in head/net: . rsync-bpc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 23:37:34 -0000 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 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 +# $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@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 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/