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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFE1315808B for ; Fri, 18 Feb 2022 19:38:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CD44E0828; Fri, 18 Feb 2022 19:38:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0783BE0828 for ; Fri, 18 Feb 2022 19:38:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39C743432A0 for ; Fri, 18 Feb 2022 19:38:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE87F2C8 for ; Fri, 18 Feb 2022 19:38:48 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1645213127.63f2e2bffffb16a6d2727673100a67d3711a7617.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/bzip2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/bzip2/bzip2-1.0.8-r1.ebuild X-VCS-Directories: app-arch/bzip2/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 63f2e2bffffb16a6d2727673100a67d3711a7617 X-VCS-Branch: master Date: Fri, 18 Feb 2022 19:38:48 +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: 53284c56-5b1f-4d76-bc1a-b63772ecbc51 X-Archives-Hash: 222df2e89d8edf67f34405acb0b26f9b commit: 63f2e2bffffb16a6d2727673100a67d3711a7617 Author: Mike Gilbert gentoo org> AuthorDate: Fri Feb 18 19:37:32 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Feb 18 19:38:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63f2e2bf app-arch/bzip2: ensure libbz2.so.1.0 gets dropped on the next bump Signed-off-by: Mike Gilbert gentoo.org> app-arch/bzip2/bzip2-1.0.8-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild index 49d36f93d65a..20e9e8edeb87 100644 --- a/app-arch/bzip2/bzip2-1.0.8-r1.ebuild +++ b/app-arch/bzip2/bzip2-1.0.8-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # XXX: atm, libbz2.a is always PIC :(, so it is always built quickly @@ -8,6 +8,10 @@ EAPI=7 inherit toolchain-funcs multilib-minimal usr-ldscript +if [[ ${PVR} != 1.0.8-r1 ]]; then + die "Please remove libbz2.so.1.0 logic from multilib_src_install" +fi + DESCRIPTION="A high-quality data compressor used extensively by Gentoo Linux" HOMEPAGE="https://sourceware.org/bzip2/" SRC_URI="https://sourceware.org/pub/${PN}/${P}.tar.gz"