From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9FD1A59CA5 for ; Sun, 20 Mar 2016 21:52:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE720E07FD; Sun, 20 Mar 2016 21:52:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35865E07FD for ; Sun, 20 Mar 2016 21:52:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B34B340845 for ; Sun, 20 Mar 2016 21:52:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1BA1822 for ; Sun, 20 Mar 2016 21:52:19 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1458510679.02ba85d880d88de79561b93e5a449d02687855c8.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/borgbackup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/borgbackup/Manifest app-backup/borgbackup/borgbackup-1.0.0.ebuild app-backup/borgbackup/borgbackup-9999.ebuild app-backup/borgbackup/metadata.xml X-VCS-Directories: app-backup/borgbackup/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 02ba85d880d88de79561b93e5a449d02687855c8 X-VCS-Branch: master Date: Sun, 20 Mar 2016 21:52:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3978167a-2796-4ad2-8a8e-6dda9bf12f47 X-Archives-Hash: fd315d32de12f4f6e4c3fe65affb0fa4 commit: 02ba85d880d88de79561b93e5a449d02687855c8 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Mar 20 21:50:43 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Mar 20 21:51:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02ba85d8 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 app-backup/borgbackup/Manifest | 1 + app-backup/borgbackup/borgbackup-1.0.0.ebuild | 38 +++++++++++++++++++++++++++ app-backup/borgbackup/borgbackup-9999.ebuild | 38 +++++++++++++++++++++++++++ app-backup/borgbackup/metadata.xml | 14 ++++++++++ 4 files changed, 91 insertions(+) diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest new file mode 100644 index 0000000..71527d5 --- /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 0000000..5267b91 --- /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 0000000..5267b91 --- /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 0000000..520d601 --- /dev/null +++ b/app-backup/borgbackup/metadata.xml @@ -0,0 +1,14 @@ + + + + + blueness@gentoo.org + Anthony G. Basile + + + Mount archive as a FUSE filesystem. + + + borgbackup/borg + +