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 08176158090 for ; Thu, 26 May 2022 20:29:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 311B6E07EE; Thu, 26 May 2022 20:29:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 169DFE07EE for ; Thu, 26 May 2022 20:29:21 +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 45F28341883 for ; Thu, 26 May 2022 20:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76BDD3AA for ; Thu, 26 May 2022 20:29:18 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1653596929.adfc6a6a99048b7bdcfcb2f34e48dd32e5ce461e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/skalibs/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/skalibs/files/skalibs-2.9.3.0-respect-user-provided-flags.patch X-VCS-Directories: dev-libs/skalibs/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: adfc6a6a99048b7bdcfcb2f34e48dd32e5ce461e X-VCS-Branch: master Date: Thu, 26 May 2022 20:29:18 +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: 261dea14-c0d0-49ed-90c5-db8b0419f4b2 X-Archives-Hash: 841be6e2e42230a55c9f69acb8f17772 commit: adfc6a6a99048b7bdcfcb2f34e48dd32e5ce461e Author: Petr Vaněk atlas cz> AuthorDate: Fri May 20 15:28:30 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu May 26 20:28:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adfc6a6a dev-libs/skalibs: remove stale patch Signed-off-by: Petr Vaněk atlas.cz> Closes: https://github.com/gentoo/gentoo/pull/25614 Signed-off-by: Conrad Kostecki gentoo.org> ...alibs-2.9.3.0-respect-user-provided-flags.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/dev-libs/skalibs/files/skalibs-2.9.3.0-respect-user-provided-flags.patch b/dev-libs/skalibs/files/skalibs-2.9.3.0-respect-user-provided-flags.patch deleted file mode 100644 index a36db4853a15..000000000000 --- a/dev-libs/skalibs/files/skalibs-2.9.3.0-respect-user-provided-flags.patch +++ /dev/null @@ -1,33 +0,0 @@ -From: Laurent Bercot -Date: Mon, 24 Jan 2022 11:44:29 +0000 -Subject: [PATCH] Apply user-provided CPPFLAGS, CFLAGS and LDFLAGS during - autodetection - -Backported-from: d9f541c2b3af (" Apply user-provided CPPFLAGS, CFLAGS and LDFLAGS during autodetection") -See-also: http://skarnet.org/lists/skaware/1656.html ---- -diff --git a/configure b/configure -index 55f34f8..49b3678 100755 ---- a/configure -+++ b/configure -@@ -99,7 +99,7 @@ stripdir () { - tryflag () { - echo "Checking whether compiler accepts $2 ..." - echo "typedef int x;" > "$tmpc" -- if $CC_AUTO "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then -+ if $CC_AUTO $CPPFLAGS_POST $CFLAGS_POST "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then - echo " ... yes" - eval "$1=\"\${$1} \$2\"" - eval "$1=\${$1# }" -@@ -113,7 +113,7 @@ tryflag () { - tryldflag () { - echo "Checking whether linker accepts $2 ..." - echo "typedef int x;" > "$tmpc" -- if $CC_AUTO -nostdlib "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then -+ if $CC_AUTO $CPPFLAGS_POST $CFLAGS_POST $LDFLAGS_POST -nostdlib "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then - echo " ... yes" - eval "$1=\"\${$1} \$2\"" - eval "$1=\${$1# }" --- -2.34.1 -