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: Mon, 10 Dec 2018 16:38:04
Message-Id: 1544459858.19fbcd73a4e3086fa6a2df853983c4066747a46d.blueness@gentoo
1 commit: 19fbcd73a4e3086fa6a2df853983c4066747a46d
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 9 15:54:26 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 10 16:37:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19fbcd73
7
8 app-backup/borgbackup: version bump to 1.1.8
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
13
14 app-backup/borgbackup/Manifest | 1 +
15 app-backup/borgbackup/borgbackup-1.1.8.ebuild | 46 +++++++++++++++++++++++++++
16 2 files changed, 47 insertions(+)
17
18 diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest
19 index b733fd51c71..d2d58d6d1d0 100644
20 --- a/app-backup/borgbackup/Manifest
21 +++ b/app-backup/borgbackup/Manifest
22 @@ -1,2 +1,3 @@
23 DIST borgbackup-1.1.6.tar.gz 3441523 BLAKE2B 13b1892774e857432a77d1f67d981046a0670b4ba2f3665502f7b729a211fc47e10a87feca308d5089c984cfe4665e7e70ca68bb9aa6e188893a0d088e84df93 SHA512 5741c48bdb70a26d40bd583f207460e35bb7dd560424889d37eb4d90ee96947457faf09bae0fa2b26b42ec71ef6eeaec1b770ba3257223a2637fcb55266e4a17
24 DIST borgbackup-1.1.7.tar.gz 3446832 BLAKE2B c4e2ce7c08f0df479d3333e5766ea070d0c1e18abc88fc8787e4212eff27e8e4505759f80f3bdda80d2b9a737241b907a41749edca9a6138eae2a5620913908d SHA512 586420b9cad7e731f2f1b8b05f3cd3dc606691c5a5ec307e887035d941ac5ac6d4c988783660969960a1221e4d9f2b865ee5558d4007ea7524632d0a50a8a402
25 +DIST borgbackup-1.1.8.tar.gz 3456058 BLAKE2B cad55216f92025418e1a427f4b578d6b7eafa03f6b3e9c4fccb148dd3856c4f6649928fb4227249c534add125f9b3a2a0b6ed808ae12c5e60a28f9df4fb0031a SHA512 1455e68bcedab8f35f9426dc73958c6a6565ad1f1cc274ce59d34a12e3a7bfa1d12fa2b8e8dd3e71824e1cd0927babf79f4e99d4e516454ed12dbd3970d0e921
26
27 diff --git a/app-backup/borgbackup/borgbackup-1.1.8.ebuild b/app-backup/borgbackup/borgbackup-1.1.8.ebuild
28 new file mode 100644
29 index 00000000000..15ee3092744
30 --- /dev/null
31 +++ b/app-backup/borgbackup/borgbackup-1.1.8.ebuild
32 @@ -0,0 +1,46 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python3_{4,5,6} )
39 +
40 +inherit distutils-r1
41 +
42 +if [[ ${PV} == "9999" ]] ; then
43 + EGIT_REPO_URI="https://github.com/${PN}/borg.git"
44 + inherit git-r3
45 +else
46 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 + KEYWORDS="~amd64 ~x86"
48 +fi
49 +
50 +DESCRIPTION="Deduplicating backup program with compression and authenticated encryption"
51 +HOMEPAGE="https://borgbackup.readthedocs.io/"
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +IUSE="libressl"
56 +
57 +# Unfortunately we have a file conflict with app-office/borg, bug #580402
58 +RDEPEND="
59 + !!app-office/borg
60 + app-arch/lz4
61 + dev-python/llfuse[${PYTHON_USEDEP}]
62 + dev-python/msgpack[${PYTHON_USEDEP}]
63 + dev-python/pyzmq[${PYTHON_USEDEP}]
64 + !libressl? ( dev-libs/openssl:0= )
65 + libressl? ( dev-libs/libressl:0= )
66 +"
67 +
68 +DEPEND="
69 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
70 + dev-python/cython[${PYTHON_USEDEP}]
71 + ${RDEPEND}
72 +"
73 +
74 +python_prepare_all() {
75 + # allow use of new (renamed) msgpack
76 + sed -i "s|'msgpack-python.*',||g" setup.py || die
77 + distutils-r1_python_prepare_all
78 +}