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 77B46158094 for ; Tue, 6 Sep 2022 21:34:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B681DE08BD; Tue, 6 Sep 2022 21:34:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9D1EFE08BD for ; Tue, 6 Sep 2022 21:34:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD6B7341126 for ; Tue, 6 Sep 2022 21:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C5985B1 for ; Tue, 6 Sep 2022 21:34:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1662500015.001f2d2011a09562d882943e0b2de72a0ed86046.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/binutils/binutils-2.39-r1.ebuild sys-devel/binutils/binutils-2.39-r2.ebuild sys-devel/binutils/binutils-9999.ebuild X-VCS-Directories: sys-devel/binutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 001f2d2011a09562d882943e0b2de72a0ed86046 X-VCS-Branch: master Date: Tue, 6 Sep 2022 21:34:33 +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: b4e01ade-f83d-49e4-a41c-b1971cef8147 X-Archives-Hash: 37cc4800a0324f9ed00ed1c2c55810bb commit: 001f2d2011a09562d882943e0b2de72a0ed86046 Author: Sam James gentoo org> AuthorDate: Tue Sep 6 21:33:35 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 6 21:33:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=001f2d20 sys-devel/binutils: fix automagic msgpack dep Closes: https://bugs.gentoo.org/865875 Signed-off-by: Sam James gentoo.org> .../binutils/{binutils-2.39-r1.ebuild => binutils-2.39-r2.ebuild} | 5 ++++- sys-devel/binutils/binutils-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sys-devel/binutils/binutils-2.39-r1.ebuild b/sys-devel/binutils/binutils-2.39-r2.ebuild similarity index 99% rename from sys-devel/binutils/binutils-2.39-r1.ebuild rename to sys-devel/binutils/binutils-2.39-r2.ebuild index 816ef121f08a..140158fa69ca 100644 --- a/sys-devel/binutils/binutils-2.39-r1.ebuild +++ b/sys-devel/binutils/binutils-2.39-r2.ebuild @@ -275,10 +275,13 @@ src_configure() { # {native,cross}/binutils, binutils-libs. bug #666100 --with-extra-soversion-suffix=gentoo-${CATEGORY}-${PN}-$(usex multitarget mt st) - # avoid automagic dependency on (currently prefix) systems + # Avoid automagic dependency on (currently prefix) systems # systems with debuginfod library, bug #754753 --without-debuginfod + # Avoid automagic dev-libs/msgpack dep, bug #865875 + --without-msgpack + # Allow user to opt into CET for host libraries. # Ideally we would like automagic-or-disabled here. # But the check does not quite work on i686: bug #760926. diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild index 033e36f10292..e52f674b5d25 100644 --- a/sys-devel/binutils/binutils-9999.ebuild +++ b/sys-devel/binutils/binutils-9999.ebuild @@ -32,7 +32,6 @@ else [[ -z ${PATCH_VER} ]] || SRC_URI="${SRC_URI} https://dev.gentoo.org/~${PATCH_DEV}/distfiles/binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz" SLOT=$(ver_cut 1-2) - # live ebuild #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" fi @@ -276,10 +275,13 @@ src_configure() { # {native,cross}/binutils, binutils-libs. bug #666100 --with-extra-soversion-suffix=gentoo-${CATEGORY}-${PN}-$(usex multitarget mt st) - # avoid automagic dependency on (currently prefix) systems + # Avoid automagic dependency on (currently prefix) systems # systems with debuginfod library, bug #754753 --without-debuginfod + # Avoid automagic dev-libs/msgpack dep, bug #865875 + --without-msgpack + # Allow user to opt into CET for host libraries. # Ideally we would like automagic-or-disabled here. # But the check does not quite work on i686: bug #760926.