Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/skalibs/files/
Date: Thu, 26 May 2022 20:29:22
Message-Id: 1653596929.adfc6a6a99048b7bdcfcb2f34e48dd32e5ce461e.conikost@gentoo
1 commit: adfc6a6a99048b7bdcfcb2f34e48dd32e5ce461e
2 Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
3 AuthorDate: Fri May 20 15:28:30 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 20:28:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adfc6a6a
7
8 dev-libs/skalibs: remove stale patch
9
10 Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
11 Closes: https://github.com/gentoo/gentoo/pull/25614
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 ...alibs-2.9.3.0-respect-user-provided-flags.patch | 33 ----------------------
15 1 file changed, 33 deletions(-)
16
17 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
18 deleted file mode 100644
19 index a36db4853a15..000000000000
20 --- a/dev-libs/skalibs/files/skalibs-2.9.3.0-respect-user-provided-flags.patch
21 +++ /dev/null
22 @@ -1,33 +0,0 @@
23 -From: Laurent Bercot <ska-skaware@×××××××.org>
24 -Date: Mon, 24 Jan 2022 11:44:29 +0000
25 -Subject: [PATCH] Apply user-provided CPPFLAGS, CFLAGS and LDFLAGS during
26 - autodetection
27 -
28 -Backported-from: d9f541c2b3af (" Apply user-provided CPPFLAGS, CFLAGS and LDFLAGS during autodetection")
29 -See-also: http://skarnet.org/lists/skaware/1656.html
30 ----
31 -diff --git a/configure b/configure
32 -index 55f34f8..49b3678 100755
33 ---- a/configure
34 -+++ b/configure
35 -@@ -99,7 +99,7 @@ stripdir () {
36 - tryflag () {
37 - echo "Checking whether compiler accepts $2 ..."
38 - echo "typedef int x;" > "$tmpc"
39 -- if $CC_AUTO "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
40 -+ if $CC_AUTO $CPPFLAGS_POST $CFLAGS_POST "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
41 - echo " ... yes"
42 - eval "$1=\"\${$1} \$2\""
43 - eval "$1=\${$1# }"
44 -@@ -113,7 +113,7 @@ tryflag () {
45 - tryldflag () {
46 - echo "Checking whether linker accepts $2 ..."
47 - echo "typedef int x;" > "$tmpc"
48 -- if $CC_AUTO -nostdlib "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
49 -+ if $CC_AUTO $CPPFLAGS_POST $CFLAGS_POST $LDFLAGS_POST -nostdlib "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
50 - echo " ... yes"
51 - eval "$1=\"\${$1} \$2\""
52 - eval "$1=\${$1# }"
53 ---
54 -2.34.1
55 -