Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/fsarchiver/
Date: Tue, 18 May 2021 14:15:21
Message-Id: 1621347296.c752fcb6d895aa54074d48b63b8c3cb31d035cfb.bkohler@gentoo
1 commit: c752fcb6d895aa54074d48b63b8c3cb31d035cfb
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 18 14:00:55 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue May 18 14:14:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c752fcb6
7
8 app-backup/fsarchiver: drop old
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 app-backup/fsarchiver/Manifest | 1 -
14 app-backup/fsarchiver/fsarchiver-0.8.5-r1.ebuild | 50 ------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/app-backup/fsarchiver/Manifest b/app-backup/fsarchiver/Manifest
18 index 4266c34809c..72031c4f5bf 100644
19 --- a/app-backup/fsarchiver/Manifest
20 +++ b/app-backup/fsarchiver/Manifest
21 @@ -1,2 +1 @@
22 -DIST fsarchiver-0.8.5.tar.gz 298502 BLAKE2B 434fbc945bb4999243fe2b6a212c6b04118ae37749b4b14b590cf8269e541a5b09954e75a898126c8a55b5b516f458a1cf1842b4a9f4ead2185c7b5e8c99343c SHA512 bf427dfcc5a73fc799710766dc1c1392ed379565ec68d7cef49e9391da749e08fb655f2b86b4ab4db7cacaf323286b4673a7c3fbebba81ac50d0b66c1f0b91ff
23 DIST fsarchiver-0.8.6.tar.gz 273652 BLAKE2B 2f8d11bb721c4e5452f0bc62661bd254226d3d62b5d7bee0a8ccfd227bdc39dd0dd544e831888bbf39010341aaa0d74b2805ab580c79cc90e96a43be1676d86c SHA512 26a2d7a68d162aabb778b14f29c52cf8fbadb8147cf5eae592352a36fbf93cc45c08c241253bd8dfe8cd0b77d0f156afcc8d89e8d24a238fd4427cb479827f14
24
25 diff --git a/app-backup/fsarchiver/fsarchiver-0.8.5-r1.ebuild b/app-backup/fsarchiver/fsarchiver-0.8.5-r1.ebuild
26 deleted file mode 100644
27 index 625ecf82129..00000000000
28 --- a/app-backup/fsarchiver/fsarchiver-0.8.5-r1.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Flexible filesystem archiver for backup and deployment tool"
39 -HOMEPAGE="https://www.fsarchiver.org"
40 -SRC_URI="https://github.com/fdupoux/${PN}/releases/download/${PV}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="debug lz4 lzma lzo static zstd"
46 -
47 -CDEPEND="dev-libs/libgcrypt:0=
48 - >=sys-fs/e2fsprogs-1.41.4
49 - lz4? ( app-arch/lz4 )
50 - lzma? ( >=app-arch/xz-utils-4.999.9_beta )
51 - lzo? ( >=dev-libs/lzo-2.02 )
52 - zstd? ( app-arch/zstd )
53 -"
54 -DEPEND="${CDEPEND}
55 - static? (
56 - lz4? ( app-arch/lz4[static-libs] )
57 - lzma? ( app-arch/xz-utils[static-libs] )
58 - lzo? ( dev-libs/lzo[static-libs] )
59 - zstd? ( app-arch/zstd[static-libs] )
60 - )"
61 -RDEPEND="${DEPEND}"
62 -
63 -src_prepare() {
64 - default
65 - sed -i -e 's/^\([a-z]*_CFLAGS.*\)-ggdb/\1/' src/Makefile.am \
66 - || die "seding failed"
67 - eautoreconf
68 -}
69 -
70 -src_configure() {
71 - local myeconfargs=(
72 - $(use_enable debug devel)
73 - $(use_enable lz4)
74 - $(use_enable lzma)
75 - $(use_enable lzo)
76 - $(use_enable static)
77 - $(use_enable zstd)
78 - )
79 - econf "${myeconfargs[@]}"
80 -}