Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/bup/
Date: Sun, 17 Nov 2019 22:10:36
Message-Id: 1574028568.e4c41341a8344edd2e10b1c3bca931e987d8a083.radhermit@gentoo
1 commit: e4c41341a8344edd2e10b1c3bca931e987d8a083
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 22:06:52 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 22:09:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c41341
7
8 app-backup/bup: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 app-backup/bup/Manifest | 1 -
13 app-backup/bup/bup-0.28.1.ebuild | 57 ----------------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-backup/bup/Manifest b/app-backup/bup/Manifest
17 index 61b18d18dc0..687815efd8f 100644
18 --- a/app-backup/bup/Manifest
19 +++ b/app-backup/bup/Manifest
20 @@ -1,2 +1 @@
21 -DIST bup-0.28.1.tar.gz 377712 BLAKE2B b469af7b40807e1462c603c03078fc4e048fc300f74dccba9db4ee9d5b1cd385b3092c2bcc08b60ba798e4f401953ccb3217275c6afb3ebf8040e6e507fde9fd SHA512 b27a94eeee86366f9f97081611d8e0443686ed8c4070d45729ad4efe1d48ee9f528d3257bfd5d37d6243927f5b63d6b613bf5ae2c39117012979ccd5ccecf9d2
22 DIST bup-0.29.2.tar.gz 389145 BLAKE2B 1a54cb68b2c68ecf4902a7f1ee940711b62e413c69d17ba1515f24e115484bac1b4919947f2214ffff784389839f633fbb13dea69c186246426e57c33a148c4c SHA512 10c433d6779b1fd7e1935c587676492d96a330dc3280556332bb55b6e5c62de8631fd755d07d2eaf80cb9fa209dc25b241d5ecf3a6fe2b8210a3d0e1ce4fa4bf
23
24 diff --git a/app-backup/bup/bup-0.28.1.ebuild b/app-backup/bup/bup-0.28.1.ebuild
25 deleted file mode 100644
26 index f1071883fb2..00000000000
27 --- a/app-backup/bup/bup-0.28.1.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python2_7 )
35 -
36 -inherit python-single-r1
37 -
38 -DESCRIPTION="A highly efficient backup system based on the git packfile format"
39 -HOMEPAGE="https://bup.github.io/ https://github.com/bup/bup"
40 -SRC_URI="https://github.com/bup/bup/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="test web"
46 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 -
48 -RDEPEND="${PYTHON_DEPS}
49 - app-arch/par2cmdline
50 - dev-python/fuse-python[${PYTHON_USEDEP}]
51 - dev-python/pylibacl[${PYTHON_USEDEP}]
52 - dev-python/pyxattr[${PYTHON_USEDEP}]
53 - web? ( www-servers/tornado[${PYTHON_USEDEP}] )
54 - sys-libs/readline:0
55 - dev-vcs/git"
56 -DEPEND="${RDEPEND}
57 - test? (
58 - dev-lang/perl
59 - net-misc/rsync
60 - )
61 - app-text/pandoc
62 -"
63 -
64 -# unresolved sandbox issues
65 -RESTRICT="test"
66 -
67 -src_prepare() {
68 - default
69 -
70 - sed -e "/^CFLAGS :=/s/-O2 -Werror//" \
71 - -i Makefile || die
72 -}
73 -
74 -src_configure() {
75 - ./configure || die
76 -}
77 -
78 -src_test() {
79 - emake test
80 -}
81 -
82 -src_install() {
83 - emake DESTDIR="${D}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)/bup" DOCDIR="/usr/share/${PF}" install
84 - python_fix_shebang "${ED}"
85 - python_optimize "${ED}"
86 -}