Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pbzip2/
Date: Tue, 07 Sep 2021 14:22:29
Message-Id: 1631024496.b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f.asturm@gentoo
1 commit: b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 19 12:50:01 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 7 14:21:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f45bf6
7
8 app-arch/pbzip2: Drop 1.1.12, EAPI5--
9
10 Closes: https://bugs.gentoo.org/756880
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-arch/pbzip2/Manifest | 1 -
15 app-arch/pbzip2/pbzip2-1.1.12.ebuild | 42 ------------------------------------
16 2 files changed, 43 deletions(-)
17
18 diff --git a/app-arch/pbzip2/Manifest b/app-arch/pbzip2/Manifest
19 index 126b9c84039..c66c7c13c0f 100644
20 --- a/app-arch/pbzip2/Manifest
21 +++ b/app-arch/pbzip2/Manifest
22 @@ -1,2 +1 @@
23 -DIST pbzip2-1.1.12.tar.gz 47826 BLAKE2B 62b1e47b7b67f2a27f31032654506552c33e68121dd50d3496dc746a405cf783807c4966058feb1aebda2080ae1d1d22e944d057ea3a0dba2f9247ea46b23eb0 SHA512 bb68e87867295b89ee6fb76a8b72834daebf0ca6c16b2f10bce67fe7386716a728acd28bf46a9732087202ca0cc774f02c741b0b58801184bb7550f6fd119cd6
24 DIST pbzip2-1.1.13.tar.gz 48015 BLAKE2B 1bb410acadc728963c3a04d2665fb1b1f0c206a893ed90352a9c16512e9bd5f82c3f5f3b383b382134bbe904735a1c8a81615a8bc54de8c6bc91633d9ce72c57 SHA512 a150e476a85b2ae71c244561380f8f113072ef712173afaa0bdace5845d5f81a15b135258cb01376156b69a5085b02b7ab866cfab5713aa773b251b203c087b8
25
26 diff --git a/app-arch/pbzip2/pbzip2-1.1.12.ebuild b/app-arch/pbzip2/pbzip2-1.1.12.ebuild
27 deleted file mode 100644
28 index 0d647fae666..00000000000
29 --- a/app-arch/pbzip2/pbzip2-1.1.12.ebuild
30 +++ /dev/null
31 @@ -1,42 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit flag-o-matic epatch toolchain-funcs
38 -
39 -DESCRIPTION="Parallel bzip2 (de)compressor using libbz2"
40 -HOMEPAGE="http://compression.ca/pbzip2/ https://launchpad.net/pbzip2"
41 -SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz"
42 -
43 -LICENSE="BZIP2"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
46 -IUSE="static symlink"
47 -
48 -LIB_DEPEND="app-arch/bzip2[static-libs(+)]"
49 -RDEPEND="
50 - !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
51 - symlink? ( !app-arch/lbzip2[symlink] )"
52 -DEPEND="${RDEPEND}
53 - static? ( ${LIB_DEPEND} )"
54 -
55 -src_prepare() {
56 - epatch "${FILESDIR}"/${PN}-1.1.10-makefile.patch
57 - tc-export CXX
58 - use static && append-ldflags -static
59 -}
60 -
61 -src_install() {
62 - dobin pbzip2
63 - dodoc AUTHORS ChangeLog README
64 - doman pbzip2.1
65 - dosym pbzip2 /usr/bin/pbunzip2
66 -
67 - if use symlink ; then
68 - local s
69 - for s in bzip2 bunzip2 bzcat ; do
70 - dosym pbzip2 /usr/bin/${s}
71 - done
72 - fi
73 -}