diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-03-20 17:50:43 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-03-20 17:51:19 -0400 |
commit | 02ba85d880d88de79561b93e5a449d02687855c8 (patch) | |
tree | 1b6ee7b2d8a2e1472c6ada2b11424774a9661584 /app-backup/borgbackup | |
parent | app-emulation/docker-compose: remove version 1.4.0 (diff) | |
download | gentoo-02ba85d880d88de79561b93e5a449d02687855c8.tar.gz gentoo-02ba85d880d88de79561b93e5a449d02687855c8.tar.bz2 gentoo-02ba85d880d88de79561b93e5a449d02687855c8.zip |
app-backup/borgbackup: initial commit
Borg is a fork of attic. Attic may be dead upstream
while borg is currently actively being maintained.
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-backup/borgbackup')
-rw-r--r-- | app-backup/borgbackup/Manifest | 1 | ||||
-rw-r--r-- | app-backup/borgbackup/borgbackup-1.0.0.ebuild | 38 | ||||
-rw-r--r-- | app-backup/borgbackup/borgbackup-9999.ebuild | 38 | ||||
-rw-r--r-- | app-backup/borgbackup/metadata.xml | 14 |
4 files changed, 91 insertions, 0 deletions
diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest new file mode 100644 index 000000000000..71527d575171 --- /dev/null +++ b/app-backup/borgbackup/Manifest @@ -0,0 +1 @@ +DIST borgbackup-1.0.0.tar.gz 424089 SHA256 500b9e311331aa88ec07df94d9f3280a79ca207bf1a997b92dd1e6a1f1664671 SHA512 5a94f1b0dfe17d383bcc917db69ed272b9b752b96912a21ac62886972cdbd718b58fe3f9529af455ab325ba418cfc05b89985e32a23fed5e946c5f7e53e6e3b1 WHIRLPOOL c0a5c40aff70c9872e62861a0e971f659191f3a99112dfe940db2440666def3a04af284f5f31ccaef410c7028a49377df96fb38fd462917ad11cd095e33b12e9 diff --git a/app-backup/borgbackup/borgbackup-1.0.0.ebuild b/app-backup/borgbackup/borgbackup-1.0.0.ebuild new file mode 100644 index 000000000000..5267b911de82 --- /dev/null +++ b/app-backup/borgbackup/borgbackup-1.0.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python3_4 ) + +inherit distutils-r1 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/borgbackup/borg.git" + inherit git-r3 +else + SRC_URI="mirror://pypi/b/borgbackup/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Deduplicating backup program with compression and authenticated encryption." +HOMEPAGE="https://borgbackup.github.io/" + +LICENSE="BSD" +SLOT="0" +IUSE="libressl +fuse" + +RDEPEND=" + app-arch/lz4 + dev-python/msgpack[${PYTHON_USEDEP}] + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] ) +" + +DEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/cython[${PYTHON_USEDEP}] + ${RDEPEND} +" diff --git a/app-backup/borgbackup/borgbackup-9999.ebuild b/app-backup/borgbackup/borgbackup-9999.ebuild new file mode 100644 index 000000000000..5267b911de82 --- /dev/null +++ b/app-backup/borgbackup/borgbackup-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python3_4 ) + +inherit distutils-r1 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/borgbackup/borg.git" + inherit git-r3 +else + SRC_URI="mirror://pypi/b/borgbackup/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Deduplicating backup program with compression and authenticated encryption." +HOMEPAGE="https://borgbackup.github.io/" + +LICENSE="BSD" +SLOT="0" +IUSE="libressl +fuse" + +RDEPEND=" + app-arch/lz4 + dev-python/msgpack[${PYTHON_USEDEP}] + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] ) +" + +DEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/cython[${PYTHON_USEDEP}] + ${RDEPEND} +" diff --git a/app-backup/borgbackup/metadata.xml b/app-backup/borgbackup/metadata.xml new file mode 100644 index 000000000000..520d60139017 --- /dev/null +++ b/app-backup/borgbackup/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>blueness@gentoo.org</email> + <name>Anthony G. Basile</name> + </maintainer> + <use> + <flag name="fuse">Mount archive as a FUSE filesystem.</flag> + </use> + <upstream> + <remote-id type="github">borgbackup/borg</remote-id> + </upstream> +</pkgmetadata> |