diff options
| author | Robert Clausecker <fuz@FreeBSD.org> | 2024-09-27 12:48:46 +0200 |
|---|---|---|
| committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-11-06 16:17:35 +0100 |
| commit | 6e2da9672f79f44048d597f0f61e4646cdeade9d (patch) | |
| tree | c92e4b3158e3419e8cec38e00227d08dcdaab3e9 /filesystems/py-zfs-autobackup | |
| parent | math/sdpa: speed up build (diff) | |
filesystems: add new category for file systems and related utilities
The filesystems category houses file systems and file system utilities.
It is added mainly to turn the sysutils/fusefs-* pseudo-category into
a proper one, but is also useful for the sundry of other file systems
related ports found in the tree.
Ports that seem like they belong there are moved to the new category.
Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are
not moved as they currently don't fetch and don't have TIMESTAMP set
in their distinfo, but that is required to be able to push a rename
of the port by the pre-receive hook.
Approved by: portmgr (rene)
Reviewed by: mat
Pull Request: https://github.com/freebsd/freebsd-ports/pull/302
PR: 281988
Diffstat (limited to 'filesystems/py-zfs-autobackup')
| -rw-r--r-- | filesystems/py-zfs-autobackup/Makefile | 24 | ||||
| -rw-r--r-- | filesystems/py-zfs-autobackup/distinfo | 3 | ||||
| -rw-r--r-- | filesystems/py-zfs-autobackup/pkg-descr | 20 |
3 files changed, 47 insertions, 0 deletions
diff --git a/filesystems/py-zfs-autobackup/Makefile b/filesystems/py-zfs-autobackup/Makefile new file mode 100644 index 000000000000..5c4b9f55ec28 --- /dev/null +++ b/filesystems/py-zfs-autobackup/Makefile @@ -0,0 +1,24 @@ +PORTNAME= zfs-autobackup +DISTVERSIONPREFIX= v +DISTVERSION= 3.2.2 +CATEGORIES= filesystems sysutils python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skozlov@FreeBSD.org +COMMENT= Periodicly backup zfs filesystems to other locations +WWW= https://github.com/psy0rz/zfs_autobackup + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>0:devel/py-colorama@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +USE_GITHUB= yes +GH_ACCOUNT= psy0rz +GH_PROJECT= zfs_autobackup + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/filesystems/py-zfs-autobackup/distinfo b/filesystems/py-zfs-autobackup/distinfo new file mode 100644 index 000000000000..bc8df6ea038e --- /dev/null +++ b/filesystems/py-zfs-autobackup/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1694871100 +SHA256 (psy0rz-zfs_autobackup-v3.2.2_GH0.tar.gz) = 736019c61a7829c3f60124e9213e51099cffad5a2d10826e3008c8f3b788b88e +SIZE (psy0rz-zfs_autobackup-v3.2.2_GH0.tar.gz) = 115708 diff --git a/filesystems/py-zfs-autobackup/pkg-descr b/filesystems/py-zfs-autobackup/pkg-descr new file mode 100644 index 000000000000..a76d09ca93f4 --- /dev/null +++ b/filesystems/py-zfs-autobackup/pkg-descr @@ -0,0 +1,20 @@ +This is a tool written to make replicating ZFS datasets easy and reliable. + +You can either use it as a backup tool, replication tool or snapshot tool. +You can select what to backup by setting a custom ZFS property. This allows you +to set and forget: Configure it so it backups your entire pool, and you never +have to worry about backupping again. Even new datasets you create later will be +backupped. Other settings are just specified on the commandline. This also makes +it easier to setup and test zfs-autobackup and helps you fix all the issues you +might encounter. When you're done you can just copy/paste your command to a cron +or script. +Since its using ZFS commands, you can see what its actually doing by specifying +--debug. This also helps a lot if you run into some strange problem or error. +You can just copy-paste the command that fails and play around with it on the +commandline. (also something I missed in other tools) +An important feature thats missing from other tools is a reliable --test option: +This allows you to see what zfs-autobackup will do and tune your parameters. It +will do everything, except make changes to your zfs datasets. Another nice +thing is progress reporting: Its very useful with HUGE datasets, +when you want to know how many hours/days it will take. zfs-autobackup tries to +be the easiest to use backup tool for zfs. |
