From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB9C013835A for ; Sat, 26 Sep 2020 14:33:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 237D2E0858; Sat, 26 Sep 2020 14:33:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08277E0857 for ; Sat, 26 Sep 2020 14:33:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FBF633BDE4 for ; Sat, 26 Sep 2020 14:33:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74BFB380 for ; Sat, 26 Sep 2020 14:33:40 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1601130807.69abe5cc5db217ee0c5aa34623d5ec3fa8da2c8d.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pbzip2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild X-VCS-Directories: app-arch/pbzip2/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 69abe5cc5db217ee0c5aa34623d5ec3fa8da2c8d X-VCS-Branch: master Date: Sat, 26 Sep 2020 14:33:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7eae19c2-8af5-4182-a74d-2c65d35401a0 X-Archives-Hash: 030b5b0e050681437a3238a6f182e9f9 commit: 69abe5cc5db217ee0c5aa34623d5ec3fa8da2c8d Author: Aaron Bauman gentoo org> AuthorDate: Sat Sep 26 13:34:47 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Sep 26 14:33:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69abe5cc app-arch/pbzip2: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild | 43 --------------------------------- 1 file changed, 43 deletions(-) diff --git a/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild b/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild deleted file mode 100644 index 8590d21d481..00000000000 --- a/app-arch/pbzip2/pbzip2-1.1.12-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit flag-o-matic eutils 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 \ - "${FILESDIR}"/${P}-data_truncation_fix.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 -}