Date: Sun, 25 Sep 2016 09:22:19 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422745 - in head/sysutils: . py-dirsync Message-ID: <201609250922.u8P9MJVu044171@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Sun Sep 25 09:22:19 2016 New Revision: 422745 URL: https://svnweb.freebsd.org/changeset/ports/422745 Log: Advanced directory tree synchronisation tool (c) 2014-2016 Thomas Khyn (c) 2003-2015 Anand B Pillai Advanced directory tree synchronisation tool based on Python robocopier by Anand B Pillai Usage From the command line: dirsync <sourcedir> <targetdir> [options] From python: from dirsync import sync sync(sourcedir, targetdir, action, **options) WWW: https://bitbucket.org/tkhyn/dirsync/ Sponsored by: EuroBSDCon 2016 Belgrade Added: head/sysutils/py-dirsync/ head/sysutils/py-dirsync/Makefile (contents, props changed) head/sysutils/py-dirsync/distinfo (contents, props changed) head/sysutils/py-dirsync/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Sep 25 09:03:55 2016 (r422744) +++ head/sysutils/Makefile Sun Sep 25 09:22:19 2016 (r422745) @@ -832,6 +832,7 @@ SUBDIR += py-crontab SUBDIR += py-danzfs SUBDIR += py-diffoscope + SUBDIR += py-dirsync SUBDIR += py-dlipower SUBDIR += py-drmaa SUBDIR += py-execnet Added: head/sysutils/py-dirsync/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-dirsync/Makefile Sun Sep 25 09:22:19 2016 (r422745) @@ -0,0 +1,19 @@ +# Created by: René Ladan <rene@freebsd.org> +# $FreeBSD$ + +PORTNAME= dirsync +PORTVERSION= 2.2.2 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rene@FreeBSD.org +COMMENT= Advanced directory tree synchronisation tool + +LICENSE= MIT + +USES= python zip +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/sysutils/py-dirsync/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-dirsync/distinfo Sun Sep 25 09:22:19 2016 (r422745) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474794166 +SHA256 (dirsync-2.2.2.zip) = 6297938d5385f8202768a74bae87ff6faed2d799c0c6dbd717a194c667dd8dc1 +SIZE (dirsync-2.2.2.zip) = 17112 Added: head/sysutils/py-dirsync/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-dirsync/pkg-descr Sun Sep 25 09:22:19 2016 (r422745) @@ -0,0 +1,20 @@ +Advanced directory tree synchronisation tool + +(c) 2014-2016 Thomas Khyn (c) 2003-2015 Anand B Pillai + +Advanced directory tree synchronisation tool + +based on Python robocopier by Anand B Pillai + +Usage + +From the command line: + +dirsync <sourcedir> <targetdir> [options] + +From python: + +from dirsync import sync +sync(sourcedir, targetdir, action, **options) + +WWW: https://bitbucket.org/tkhyn/dirsync/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609250922.u8P9MJVu044171>