diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-08-19 14:50:01 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-09-07 16:21:36 +0200 |
commit | b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f (patch) | |
tree | 0142e437ecb23942d40d490752f20875cdf8a853 /app-arch/pbzip2 | |
parent | x11-misc/xdg-utils: Drop old (diff) | |
download | gentoo-b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f.tar.gz gentoo-b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f.tar.bz2 gentoo-b0f45bf6d5fe132488e32285cdfe2ffa23be3c3f.zip |
app-arch/pbzip2: Drop 1.1.12, EAPI5--
Closes: https://bugs.gentoo.org/756880
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-arch/pbzip2')
-rw-r--r-- | app-arch/pbzip2/Manifest | 1 | ||||
-rw-r--r-- | app-arch/pbzip2/pbzip2-1.1.12.ebuild | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/app-arch/pbzip2/Manifest b/app-arch/pbzip2/Manifest index 126b9c840392..c66c7c13c0f6 100644 --- a/app-arch/pbzip2/Manifest +++ b/app-arch/pbzip2/Manifest @@ -1,2 +1 @@ -DIST pbzip2-1.1.12.tar.gz 47826 BLAKE2B 62b1e47b7b67f2a27f31032654506552c33e68121dd50d3496dc746a405cf783807c4966058feb1aebda2080ae1d1d22e944d057ea3a0dba2f9247ea46b23eb0 SHA512 bb68e87867295b89ee6fb76a8b72834daebf0ca6c16b2f10bce67fe7386716a728acd28bf46a9732087202ca0cc774f02c741b0b58801184bb7550f6fd119cd6 DIST pbzip2-1.1.13.tar.gz 48015 BLAKE2B 1bb410acadc728963c3a04d2665fb1b1f0c206a893ed90352a9c16512e9bd5f82c3f5f3b383b382134bbe904735a1c8a81615a8bc54de8c6bc91633d9ce72c57 SHA512 a150e476a85b2ae71c244561380f8f113072ef712173afaa0bdace5845d5f81a15b135258cb01376156b69a5085b02b7ab866cfab5713aa773b251b203c087b8 diff --git a/app-arch/pbzip2/pbzip2-1.1.12.ebuild b/app-arch/pbzip2/pbzip2-1.1.12.ebuild deleted file mode 100644 index 0d647fae6661..000000000000 --- a/app-arch/pbzip2/pbzip2-1.1.12.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit flag-o-matic epatch toolchain-funcs - -DESCRIPTION="Parallel bzip2 (de)compressor using libbz2" -HOMEPAGE="http://compression.ca/pbzip2/ https://launchpad.net/pbzip2" -SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz" - -LICENSE="BZIP2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static symlink" - -LIB_DEPEND="app-arch/bzip2[static-libs(+)]" -RDEPEND=" - !static? ( ${LIB_DEPEND//\[static-libs(+)]} ) - symlink? ( !app-arch/lbzip2[symlink] )" -DEPEND="${RDEPEND} - static? ( ${LIB_DEPEND} )" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.1.10-makefile.patch - tc-export CXX - use static && append-ldflags -static -} - -src_install() { - dobin pbzip2 - dodoc AUTHORS ChangeLog README - doman pbzip2.1 - dosym pbzip2 /usr/bin/pbunzip2 - - if use symlink ; then - local s - for s in bzip2 bunzip2 bzcat ; do - dosym pbzip2 /usr/bin/${s} - done - fi -} |