Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/borgbackup/
Date: Sun, 30 Oct 2016 19:15:30
Message-Id: 1477854845.40156a1bbec0f147f5aee9b1ba363f25cbf5ab13.blueness@gentoo
1 commit: 40156a1bbec0f147f5aee9b1ba363f25cbf5ab13
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 30 19:14:05 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 30 19:14:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40156a1b
7
8 app-backup/borgbackup: version bump to 1.0.8
9
10 Package-Manager: portage-2.3.0
11
12 app-backup/borgbackup/Manifest | 1 +
13 app-backup/borgbackup/borgbackup-1.0.8.ebuild | 40 +++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest
17 index ccfed18..fc75394 100644
18 --- a/app-backup/borgbackup/Manifest
19 +++ b/app-backup/borgbackup/Manifest
20 @@ -1 +1,2 @@
21 DIST borgbackup-1.0.7.tar.gz 462509 SHA256 203353a299b6ea0c092a1f23b6bb5414a0b795712c213c68f7a1f4c24be131d1 SHA512 750e85597043049775a2480fb32df5a10e4ba581a91911e93eeb29dbc517db43f537b54206f8f2ce8fa51530866ed9e490c31e6c35d181853481fb3e6269d8af WHIRLPOOL ec34fa9f144dc3cf35f8ef8c61e70ce4b62dd624b6fcff42ca0db3e017b68e2afa3e379aec0acbc443279df25dded18b79df9ba702cc3f94ed834a9c7ff6eff0
22 +DIST borgbackup-1.0.8.tar.gz 501606 SHA256 6902563c447c4f378ff1a13167f83d15eb60a02316a06368a539b7ff3d88aeb9 SHA512 2a24b302da6cf0266c53a5efc7c1f500c3a3f290c1a49abbced981d2e252886e81b828ab092518f675a81b9865079af66ea34d035b34ebf19a86a153fff6bd45 WHIRLPOOL 8f258bca6b4787e0494f68660e774bcc63d73d3829c5236815858719381c74ca037fcb418cef039e05b74e7da0535cbe941e3e1a8185e51cae1deb8a5aa58505
23
24 diff --git a/app-backup/borgbackup/borgbackup-1.0.8.ebuild b/app-backup/borgbackup/borgbackup-1.0.8.ebuild
25 new file mode 100644
26 index 00000000..065fdc1
27 --- /dev/null
28 +++ b/app-backup/borgbackup/borgbackup-1.0.8.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="6"
35 +
36 +PYTHON_COMPAT=( python3_{4,5} )
37 +
38 +inherit distutils-r1
39 +
40 +if [[ ${PV} == "9999" ]] ; then
41 + EGIT_REPO_URI="https://github.com/${PN}/borg.git"
42 + inherit git-r3
43 +else
44 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 + KEYWORDS="~amd64 ~x86"
46 +fi
47 +
48 +DESCRIPTION="Deduplicating backup program with compression and authenticated encryption."
49 +HOMEPAGE="https://borgbackup.readthedocs.io/"
50 +
51 +LICENSE="BSD"
52 +SLOT="0"
53 +IUSE="libressl +fuse"
54 +
55 +# Unformately we have a file conflict with app-office/borg, bug #580402
56 +RDEPEND="
57 + !!app-office/borg
58 + app-arch/lz4
59 + dev-python/msgpack[${PYTHON_USEDEP}]
60 + !libressl? ( dev-libs/openssl:0= )
61 + libressl? ( dev-libs/libressl:0= )
62 + fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] )
63 +"
64 +
65 +DEPEND="
66 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
67 + dev-python/cython[${PYTHON_USEDEP}]
68 + ${RDEPEND}
69 +"