Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pbzip2/
Date: Sat, 26 Sep 2020 14:33:44
Message-Id: 1601130807.69abe5cc5db217ee0c5aa34623d5ec3fa8da2c8d.bman@gentoo
1 commit: 69abe5cc5db217ee0c5aa34623d5ec3fa8da2c8d
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 13:34:47 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 14:33:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69abe5cc
7
8 app-arch/pbzip2: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild | 43 ---------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild b/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild
16 deleted file mode 100644
17 index 8590d21d481..00000000000
18 --- a/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit flag-o-matic eutils toolchain-funcs
27 -
28 -DESCRIPTION="Parallel bzip2 (de)compressor using libbz2"
29 -HOMEPAGE="http://compression.ca/pbzip2/ https://launchpad.net/pbzip2"
30 -SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz"
31 -
32 -LICENSE="BZIP2"
33 -SLOT="0"
34 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
35 -IUSE="static symlink"
36 -
37 -LIB_DEPEND="app-arch/bzip2[static-libs(+)]"
38 -RDEPEND="
39 - !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
40 - symlink? ( !app-arch/lbzip2[symlink] )"
41 -DEPEND="${RDEPEND}
42 - static? ( ${LIB_DEPEND} )"
43 -
44 -src_prepare() {
45 - epatch "${FILESDIR}"/${PN}-1.1.10-makefile.patch \
46 - "${FILESDIR}"/${P}-data_truncation_fix.patch
47 - tc-export CXX
48 - use static && append-ldflags -static
49 -}
50 -
51 -src_install() {
52 - dobin pbzip2
53 - dodoc AUTHORS ChangeLog README
54 - doman pbzip2.1
55 - dosym pbzip2 /usr/bin/pbunzip2
56 -
57 - if use symlink ; then
58 - local s
59 - for s in bzip2 bunzip2 bzcat ; do
60 - dosym pbzip2 /usr/bin/${s}
61 - done
62 - fi
63 -}