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
This commit is contained in:
Rene Ladan 2016-09-25 09:22:19 +00:00
parent 0e86cd705d
commit b6a76d31e6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=422745
4 changed files with 43 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1474794166
SHA256 (dirsync-2.2.2.zip) = 6297938d5385f8202768a74bae87ff6faed2d799c0c6dbd717a194c667dd8dc1
SIZE (dirsync-2.2.2.zip) = 17112

View file

@ -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/