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: Wed, 11 Mar 2020 01:50:50
Message-Id: 1583891422.c658f1153f43ad8d07f46fe2204b5d1e91a9a241.blueness@gentoo
1 commit: c658f1153f43ad8d07f46fe2204b5d1e91a9a241
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 01:50:22 2020 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 01:50:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c658f115
7
8 app-backup/borgbackup: version bump to 1.1.11
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 app-backup/borgbackup/Manifest | 1 +
14 app-backup/borgbackup/borgbackup-1.1.11.ebuild | 52 ++++++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/app-backup/borgbackup/Manifest b/app-backup/borgbackup/Manifest
18 index e7366684d6e..d7ee489ce9f 100644
19 --- a/app-backup/borgbackup/Manifest
20 +++ b/app-backup/borgbackup/Manifest
21 @@ -1 +1,2 @@
22 DIST borgbackup-1.1.10.tar.gz 3610011 BLAKE2B 9c13d89a0441b5403019ed24b2f36fd55f4d133219b68802b79c76f5086324f4a249124a89c67049fecbadb78d5dae64b007ed6c53a579c115ce248db3e83054 SHA512 9315335208f10427e3105e10819817d15fd05171479252903bd51eaacb016bc3ff792d505b9203ce0b9b41ec350472bdb9a23b0128e7fe156aaa47c1608451c0
23 +DIST borgbackup-1.1.11.tar.gz 3718055 BLAKE2B ea03d538bd7936cc12705f73c3f8e63dc28167f1930e84bdd04fc13bcc34c2b9f35e7e6ed945ba20b647dbdefe12c66c04645414c7efc974e53a312e3dff6991 SHA512 cf629f31d38d27ce6350670ff27b4937f2f30eddf9e0cd9209cd9d57a4ffa653f5a291ea1e1c79614dd2c08bcf5c50bc3e4e0f222e0d3cd1bbfb2d756b4a4573
24
25 diff --git a/app-backup/borgbackup/borgbackup-1.1.11.ebuild b/app-backup/borgbackup/borgbackup-1.1.11.ebuild
26 new file mode 100644
27 index 00000000000..644e3a09332
28 --- /dev/null
29 +++ b/app-backup/borgbackup/borgbackup-1.1.11.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7} )
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"
54 +
55 +# Unfortunately we have a file conflict with app-office/borg, bug #580402
56 +RDEPEND="
57 + !!app-office/borg
58 + app-arch/lz4
59 + virtual/acl
60 + dev-python/llfuse[${PYTHON_USEDEP}]
61 + ~dev-python/msgpack-0.5.6[${PYTHON_USEDEP}]
62 + dev-python/pyzmq[${PYTHON_USEDEP}]
63 + !libressl? ( dev-libs/openssl:0= )
64 + libressl? ( dev-libs/libressl:0= )
65 +"
66 +
67 +DEPEND="
68 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
69 + dev-python/cython[${PYTHON_USEDEP}]
70 + ${RDEPEND}
71 +"
72 +
73 +python_prepare_all() {
74 + # allow use of new (renamed) msgpack
75 + sed -i "s|'msgpack-python.*',||g" setup.py || die
76 + distutils-r1_python_prepare_all
77 +}
78 +
79 +src_install() {
80 + distutils-r1_src_install
81 + doman docs/man/*
82 +}