Date: Fri, 25 Jan 2019 08:44:22 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491136 - in head/sysutils: . backupuser Message-ID: <201901250844.x0P8iMxj032067@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Fri Jan 25 08:44:22 2019 New Revision: 491136 URL: https://svnweb.freebsd.org/changeset/ports/491136 Log: New port: sysutils/backupuser backupuser is a command line utility, which automates the creation of backups of a user's home directory. An accompanying utility lets a user verify the integrity of files on another storage device. Special backup options exist for the root user. WWW: http://www.olivermahmoudi.com/programming/backup-strategies PR: 224735 Submitted by: Oliver Mahmoudi <fbsd@olivermahmoudi.com> Added: head/sysutils/backupuser/ head/sysutils/backupuser/Makefile (contents, props changed) head/sysutils/backupuser/distinfo (contents, props changed) head/sysutils/backupuser/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Jan 25 08:39:14 2019 (r491135) +++ head/sysutils/Makefile Fri Jan 25 08:44:22 2019 (r491136) @@ -72,6 +72,7 @@ SUBDIR += backuppc SUBDIR += backuppc-devel SUBDIR += backuppc4 + SUBDIR += backupuser SUBDIR += bacula-bat SUBDIR += bacula-client SUBDIR += bacula-client-static Added: head/sysutils/backupuser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/backupuser/Makefile Fri Jan 25 08:44:22 2019 (r491136) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= backupuser +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://www.olivermahmoudi.com/files/ + +MAINTAINER= fbsd@olivermahmoudi.com +COMMENT= User Backup Utility + +LICENSE= BSD2CLAUSE + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= bin/backupuser \ + bin/bu_check_files \ + man/man1/backupuser.1.gz \ + man/man1/bu_check_files.1.gz +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-install: + cd ${WRKSRC} && ${INSTALL_SCRIPT} ${PORTNAME} bu_check_files \ + ${STAGEDIR}${PREFIX}/bin + cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 bu_check_files.1 \ + ${STAGEDIR}${PREFIX}/man/man1 + +.include <bsd.port.mk> Added: head/sysutils/backupuser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/backupuser/distinfo Fri Jan 25 08:44:22 2019 (r491136) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514653592 +SHA256 (backupuser-1.0.tar.gz) = f33fdc33fd5e98e5fd2fbc517bfeddd83e1851d9f4e0348827c69de98ee07f53 +SIZE (backupuser-1.0.tar.gz) = 5338 Added: head/sysutils/backupuser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/backupuser/pkg-descr Fri Jan 25 08:44:22 2019 (r491136) @@ -0,0 +1,6 @@ +backupuser is a command line utility, which automates the creation +of backups of a user's home directory. An accompanying utility +lets a user verify the integrity of files on another storage device. +Special backup options exist for the root user. + +WWW: http://www.olivermahmoudi.com/programming/backup-strategies
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901250844.x0P8iMxj032067>