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: Thu, 23 Apr 2020 18:51:19
Message-Id: 1587667869.f0a911b23d828a43facf26f1aafa97410c708761.blueness@gentoo
1 commit: f0a911b23d828a43facf26f1aafa97410c708761
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 18:39:30 2020 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 18:51:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0a911b2
7
8 app-backup/borgbackup: remove older version
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/borgbackup-1.1.11-r1.ebuild | 52 -----------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/app-backup/borgbackup/borgbackup-1.1.11-r1.ebuild b/app-backup/borgbackup/borgbackup-1.1.11-r1.ebuild
17 deleted file mode 100644
18 index 822bb8bafab..00000000000
19 --- a/app-backup/borgbackup/borgbackup-1.1.11-r1.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6,7} )
28 -
29 -inherit distutils-r1
30 -
31 -if [[ ${PV} == "9999" ]] ; then
32 - EGIT_REPO_URI="https://github.com/${PN}/borg.git"
33 - inherit git-r3
34 -else
35 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 - KEYWORDS="~amd64 ~x86"
37 -fi
38 -
39 -DESCRIPTION="Deduplicating backup program with compression and authenticated encryption"
40 -HOMEPAGE="https://borgbackup.readthedocs.io/"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -IUSE="libressl"
45 -
46 -# Unfortunately we have a file conflict with app-office/borg, bug #580402
47 -RDEPEND="
48 - !!app-office/borg
49 - app-arch/lz4
50 - virtual/acl
51 - dev-python/llfuse[${PYTHON_USEDEP}]
52 - ~dev-python/msgpack-0.5.6[${PYTHON_USEDEP}]
53 - dev-python/pyzmq[${PYTHON_USEDEP}]
54 - !libressl? ( dev-libs/openssl:0= )
55 - libressl? ( dev-libs/libressl:0= )
56 -"
57 -
58 -DEPEND="
59 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
60 - dev-python/cython[${PYTHON_USEDEP}]
61 - ${RDEPEND}
62 -"
63 -
64 -python_prepare_all() {
65 - rm -rf src/borg/algorithms/msgpack
66 - eapply "${FILESDIR}"/${P}-unbundle-msgpack.patch
67 - distutils-r1_python_prepare_all
68 -}
69 -
70 -src_install() {
71 - distutils-r1_src_install
72 - doman docs/man/*
73 -}