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 A84D91382C5 for ; Sat, 26 Dec 2020 21:28:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2D13E0AFF; Sat, 26 Dec 2020 21:28:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D67D7E0AFF for ; Sat, 26 Dec 2020 21:28:40 +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 9611F34126B for ; Sat, 26 Dec 2020 21:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21D334E for ; Sat, 26 Dec 2020 21:28:38 +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: <1609017967.1b70a52e37a116fe26be43a0c60d32b0dbf9af9f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpg-error/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgpg-error/libgpg-error-1.41.ebuild X-VCS-Directories: dev-libs/libgpg-error/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1b70a52e37a116fe26be43a0c60d32b0dbf9af9f X-VCS-Branch: master Date: Sat, 26 Dec 2020 21:28:38 +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: 26e99cea-8cb7-434d-98fd-cc0085baced3 X-Archives-Hash: d381d42dbbf428f65c23e32b1ac0c86b commit: 1b70a52e37a116fe26be43a0c60d32b0dbf9af9f Author: Sam James gentoo org> AuthorDate: Sat Dec 26 21:26:07 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 26 21:26:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b70a52e dev-libs/libgpg-error: sync with ::prefix Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-libs/libgpg-error/libgpg-error-1.41.ebuild | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/dev-libs/libgpg-error/libgpg-error-1.41.ebuild b/dev-libs/libgpg-error/libgpg-error-1.41.ebuild index dcb9068911b..be7802c9db4 100644 --- a/dev-libs/libgpg-error/libgpg-error-1.41.ebuild +++ b/dev-libs/libgpg-error/libgpg-error-1.41.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="common-lisp nls" RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )" @@ -32,11 +32,26 @@ PATCHES=( src_prepare() { default + + if use prefix ; then + # don't hardcode /usr/xpg4/bin/sh as shell on Solaris + sed -i -e 's/solaris\*/disabled/' configure.ac || die + fi + # only necessary for as long as we run eautoreconf, configure.ac # uses ./autogen.sh to generate PACKAGE_VERSION, but autogen.sh is # not a pure /bin/sh script, so it fails on some hosts hprefixify -w 1 autogen.sh eautoreconf + + if use prefix ; then + # upstream seems not interested in trying to understand (#584330) + # https://lists.gnupg.org/pipermail/gnupg-devel/2017-March/032671.html + # again reported as https://dev.gnupg.org/T4474 + einfo "Forcing -no-undefined libtool flag ..." + sed -i -e 's/\$(no_undefined)/-no-undefined/' src/Makefile.in + eend $? || die + fi } multilib_src_configure() {