From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 7D1CB1580F6 for ; Tue, 20 May 2025 13:04:53 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 68DC6343191 for ; Tue, 20 May 2025 13:04:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 95DFB1103DE; Tue, 20 May 2025 13:04:50 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 912D51103DE for ; Tue, 20 May 2025 13:04:50 +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 4A9CC34314C for ; Tue, 20 May 2025 13:04:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E168927A2 for ; Tue, 20 May 2025 13:04:48 +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: <1747746264.f4c630c4f5935f1d90a3c7b6cebc5dbdb13ccce3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dpkg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/dpkg/dpkg-1.22.14.ebuild X-VCS-Directories: app-arch/dpkg/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f4c630c4f5935f1d90a3c7b6cebc5dbdb13ccce3 X-VCS-Branch: master Date: Tue, 20 May 2025 13:04: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: 463e28ba-2dc7-4183-8e6d-6cacc28e3c76 X-Archives-Hash: 15fc72f80327ccb74a4e5ddafa547f9f commit: f4c630c4f5935f1d90a3c7b6cebc5dbdb13ccce3 Author: orbea riseup net> AuthorDate: Mon May 19 21:30:09 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 20 13:04:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4c630c4 app-arch/dpkg: add --enable-static dpkg currenty doesn't support shared libraries where GNU libtool will implicitly enable static libraries if both --disable-shared and --disable-static are used while slibtool will disable both. Closes: https://bugs.gentoo.org/956332 Upstream-Issue: https://dev.midipix.org/cross/slibtool/issue/79 Signed-off-by: orbea riseup.net> Part-of: https://github.com/gentoo/gentoo/pull/42164 Closes: https://github.com/gentoo/gentoo/pull/42164 Signed-off-by: Sam James gentoo.org> app-arch/dpkg/dpkg-1.22.14.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-arch/dpkg/dpkg-1.22.14.ebuild b/app-arch/dpkg/dpkg-1.22.14.ebuild index a38c5e55ff69..bbd537850d2b 100644 --- a/app-arch/dpkg/dpkg-1.22.14.ebuild +++ b/app-arch/dpkg/dpkg-1.22.14.ebuild @@ -63,11 +63,17 @@ src_prepare() { src_configure() { tc-export AR CC + # dpkg uses LT_INIT([disable-shared]) in configure.ac where GNU libtool + # enables static if both --disable-shared and --disable-static are set while + # slibtool disables both so explicitly set --enable-static until upstream + # supports shared libraries. + # https://bugs.gentoo.org/956332 local myconf=( --disable-compiler-warnings --disable-devel-docs --disable-dselect --disable-start-stop-daemon + --enable-static --enable-unicode --localstatedir="${EPREFIX}"/var $(use_enable nls)