From owner-svn-ports-head@freebsd.org Sun Sep 25 09:22:20 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EF98BE9E4D; Sun, 25 Sep 2016 09:22:20 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60C16F10; Sun, 25 Sep 2016 09:22:20 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8P9MJ7h044175; Sun, 25 Sep 2016 09:22:19 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8P9MJVu044171; Sun, 25 Sep 2016 09:22:19 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609250922.u8P9MJVu044171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 25 Sep 2016 09:22:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422745 - in head/sysutils: . py-dirsync 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.23 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, 25 Sep 2016 09:22:20 -0000 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 [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 +# $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 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 [options] + +From python: + +from dirsync import sync +sync(sourcedir, targetdir, action, **options) + +WWW: https://bitbucket.org/tkhyn/dirsync/