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 27314158090 for ; Sat, 7 May 2022 04:29:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DF1FE085E; Sat, 7 May 2022 04:29:44 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 54B79E085E for ; Sat, 7 May 2022 04:29:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4A4A1341961 for ; Sat, 7 May 2022 04:29:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0BCED3 for ; Sat, 7 May 2022 04:29:41 +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: <1651897774.2c4a8d7c2c850e8b9a1859a6d7cfb2bd4769cf0e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/dante/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/dante/dante-1.4.1-r6.ebuild X-VCS-Directories: net-proxy/dante/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c4a8d7c2c850e8b9a1859a6d7cfb2bd4769cf0e X-VCS-Branch: master Date: Sat, 7 May 2022 04:29:41 +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: 70566177-0d4a-4d99-b5f4-5fa0f68af25e X-Archives-Hash: 7479db103da115115af2933ac6f73ed8 commit: 2c4a8d7c2c850e8b9a1859a6d7cfb2bd4769cf0e Author: orbea riseup net> AuthorDate: Fri May 6 14:03:13 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 7 04:29:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4a8d7c net-proxy/dante: Fix build with slibtool Removing -all-dynamic is the easiest choice as nothing seems to actually provide that argument. GNU libtool of course will ignore the issue. Bug: https://bugs.gentoo.org/780039 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25349 Signed-off-by: Sam James gentoo.org> net-proxy/dante/dante-1.4.1-r6.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-proxy/dante/dante-1.4.1-r6.ebuild b/net-proxy/dante/dante-1.4.1-r6.ebuild index 18dc73c8e8b4..85808412bb40 100644 --- a/net-proxy/dante/dante-1.4.1-r6.ebuild +++ b/net-proxy/dante/dante-1.4.1-r6.ebuild @@ -48,6 +48,9 @@ PATCHES=( src_prepare() { default + # 780039 + sed -e 's/-all-dynamic//' -i dlib/Makefile.am dlib64/Makefile.am || die + sed \ -e 's:/etc/socks\.conf:"${EPREFIX}"/etc/socks/socks.conf:' \ -e 's:/etc/sockd\.conf:"${EPREFIX}"/etc/socks/sockd.conf:' \