commit: e3d0c0b5b74bcb4f920217606e514696c281352a
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 21 10:12:38 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Apr 21 10:12:54 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d0c0b5
app-backup/borgbackup: version bump to 1.0.2
Package-Manager: portage-2.2.26
app-backup/borgbackup/Manifest | 1 +
app-backup/borgbackup/borgbackup-1.0.2.ebuild | 40 +++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest
index 807d19f..e32cc98 100644
--- a/app-backup/borgbackup/Manifest
+++ b/app-backup/borgbackup/Manifest
@@ -1 +1,2 @@
DIST borgbackup-1.0.1.tar.gz 413316 SHA256
58a2c2e649207c8e15223f6380d238124b0f1b45fd83990a40df5b678cd41fba SHA512
1cb0ceb0d4fcf844220947000b51bbd1156244dd4394285e51b82da9f6e23c866d97246aed3c13fdd62534788daf5efde9a049a51db36b22db2674892d95b1d9
WHIRLPOOL
964c173a22b524c7426c74421856e96a17cd8a583cc271829a5e069186b607186919a373ae9c7a7ae71132b26a4c495837a15536ed280e7daa5b984703c46aad
+DIST borgbackup-1.0.2.tar.gz 422181 SHA256
11ea343290f788a2d849f43ebb07e8f0990f651f3cf097ca4f4cd9ce2f08dfd7 SHA512
721f840b55a385976b7d01e03690cf0e73029f1566809fee5770622b3455aba6a35ca8b246127b5a8e07bc26e0cc31d6fd35a4e188906e5714d8dac912844189
WHIRLPOOL
e7854661260b82654d96158613f2676587b4aab165963bcc72ce0e5d1e95e7b28a0feea798fc257cda00b10c3db0c2967f75cceb2c6a91c192c3e0d75258c533
diff --git a/app-backup/borgbackup/borgbackup-1.0.2.ebuild
b/app-backup/borgbackup/borgbackup-1.0.2.ebuild
new file mode 100644
index 0000000..c6825d5
--- /dev/null
+++ b/app-backup/borgbackup/borgbackup-1.0.2.ebuild
@@ -0,0 +1,40 @@
+# 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"
+
+# Unformately we have a file conflict with app-office/borg, bug #580402
+RDEPEND="
+ !!app-office/borg
+ app-arch/lz4
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] )
+"
+
+DEPEND="
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ dev-python/cython[${PYTHON_USEDEP}]
+ ${RDEPEND}
+"