svn commit: r491136 - in head/sysutils: . backupuser
Tobias Kortkamp
tobik at FreeBSD.org
Fri Jan 25 08:44:24 UTC 2019
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 at 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 at 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
More information about the svn-ports-head
mailing list