Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/newt/files/
Date: Fri, 29 Jul 2022 18:13:02
Message-Id: 1659118372.5dc6eab3b1f13997365ee276c86b36abd2aa7b86.bkohler@gentoo
1 commit: 5dc6eab3b1f13997365ee276c86b36abd2aa7b86
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Jul 29 05:12:07 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 29 18:12:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dc6eab3
7
8 dev-libs/newt: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Portage 3.0.34 / pkgdev 0.2.1 / pkgcheck 0.10.11
12 Closes: https://github.com/gentoo/gentoo/pull/26642
13 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
14
15 .../newt-0.52.21-makefile-LDFLAGS-ordering.patch | 30 ----------------------
16 1 file changed, 30 deletions(-)
17
18 diff --git a/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch b/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
19 deleted file mode 100644
20 index f05075adb371..000000000000
21 --- a/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
22 +++ /dev/null
23 @@ -1,30 +0,0 @@
24 -From 22d44d2cbfcbec216d0028ebdf274247139a8045 Mon Sep 17 00:00:00 2001
25 -From: Sam James <sam@g.o>
26 -Date: Wed, 14 Jul 2021 05:12:32 +0100
27 -Subject: [PATCH] Swap order of LDFLAGS and P*FLAGS
28 -
29 -Needed to respect as-needed.
30 -
31 -Bug: https://bugs.gentoo.org/798945
32 ----
33 - Makefile.in | 4 ++--
34 - 1 file changed, 2 insertions(+), 2 deletions(-)
35 -
36 -diff --git a/Makefile.in b/Makefile.in
37 -index 1047efc..f0bc417 100644
38 ---- a/Makefile.in
39 -+++ b/Makefile.in
40 -@@ -97,8 +97,8 @@ _snack.$(SOEXT): snack.c $(LIBNEWTSH)
41 - PLFLAGS=`$$pyconfig --libs`; \
42 - echo $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snack.o snack.c; \
43 - $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snack.o snack.c; \
44 -- echo $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
45 -- $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
46 -+ echo $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
47 -+ $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
48 - done || :
49 - touch $@
50 -
51 ---
52 -2.32.0
53 -