diff options
author | Vladimir Pavljuchenkov (SpiderX) <spiderx@spiderx.dp.ua> | 2017-02-24 09:32:59 +0200 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2017-04-01 19:56:36 -0400 |
commit | 29f1455481e07c0de116380763f79f72342ca786 (patch) | |
tree | 32e277a30a268ab337ac7db9ce0aad47bbdc3b55 /app-backup/zbackup/metadata.xml | |
parent | sys-kernel/hardened-sources: version bump to 4.9.20 (diff) | |
download | gentoo-29f1455481e07c0de116380763f79f72342ca786.tar.gz gentoo-29f1455481e07c0de116380763f79f72342ca786.tar.bz2 gentoo-29f1455481e07c0de116380763f79f72342ca786.zip |
app-backup/zbackup: new ebuild
zbackup is a globally-deduplicating backup tool, based on the ideas found in rsync.
Feed a large .tar into it, and it will store duplicate regions of it only once,
then compress and optionally encrypt the result. Feed another .tar file,
and it will also re-use any data found in any previous backups.
This way only new changes are stored, and as long as the files are not very different,
the amount of storage required is very low. Any of the backup files stored previously
can be read back in full at any time.
Base for ebuild from https://github.com/SpiderX/portage-overlay/tree/master/app-backup/zbackup
Gentoo-Bug: https://bugs.gentoo.org/576796
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-backup/zbackup/metadata.xml')
-rw-r--r-- | app-backup/zbackup/metadata.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-backup/zbackup/metadata.xml b/app-backup/zbackup/metadata.xml new file mode 100644 index 000000000000..65b656521136 --- /dev/null +++ b/app-backup/zbackup/metadata.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>spiderx@spiderx.dp.ua</email> + <name>Vladimir Pavljuchenkov</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription> + zbackup is a globally-deduplicating backup tool. + The program has the following features: + Parallel LZMA or LZO compression of the stored data + Built-in AES encryption of the stored data + Possibility to delete old backup data + Use of a 64-bit rolling hash, keeping the amount of soft collisions to zero + </longdescription> + <use> + <flag name="tartool">Install tartool utility</flag> + </use> + <upstream> + <remote-id type="github">zbackup/zbackup</remote-id> + </upstream> +</pkgmetadata> |