Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/moarvm/files/
Date: Sat, 12 Sep 2020 21:10:33
Message-Id: 1599944973.37c280502d46fc52827866f06ec59c71391dfc98.kentnl@gentoo
1 commit: 37c280502d46fc52827866f06ec59c71391dfc98
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 5 17:04:14 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 12 21:09:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c28050
7
8 dev-lang/moarvm: remove unused patch(es)
9
10 Closes: https://github.com/gentoo/gentoo/pull/17428
11 Package-Manager: Portage-3.0.5, Repoman-3.0.1
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
14
15 dev-lang/moarvm/files/fix-quoting.patch | 28 ----------------------------
16 1 file changed, 28 deletions(-)
17
18 diff --git a/dev-lang/moarvm/files/fix-quoting.patch b/dev-lang/moarvm/files/fix-quoting.patch
19 deleted file mode 100644
20 index f3e02b156ab..00000000000
21 --- a/dev-lang/moarvm/files/fix-quoting.patch
22 +++ /dev/null
23 @@ -1,28 +0,0 @@
24 -From f1b26bb0e8f4e0a00ac31f9defb1ed74b820eb39 Mon Sep 17 00:00:00 2001
25 -From: Stefan Seifert <nine@××××××××××.org>
26 -Date: Mon, 15 Jul 2019 12:04:45 +0200
27 -Subject: [PATCH] Fix Configure.pl failing when --prefix /usr is passed
28 -
29 -gerd++ reported this on Github 1143 and supplied the diagnostics and
30 -fix:
31 -If the prefix is exact /usr, then it seems that in build/Makefile.in
32 -@moardll@: $(OBJECTS) $(THIRDPARTY)
33 - $(MSG) linking $@
34 - $(CMD)$(LD) @ldout@$@ $(LDFLAGS) @ldshared@ @moarshared@ $(OBJECTS) $(DLL_LIBS)
35 -moarshared will not be substituted or is wrong.
36 ----
37 - Configure.pl | 1 +
38 - 1 file changed, 1 insertion(+)
39 -
40 -diff --git a/Configure.pl b/Configure.pl
41 -index b71b576be..753dcfaac 100755
42 ---- a/Configure.pl
43 -+++ b/Configure.pl
44 -@@ -441,6 +441,7 @@ sub uniq {
45 - push @ldflags, $ENV{LDFLAGS} if $ENV{LDFLAGS};
46 - $config{ldflags} = join ' ', @ldflags;
47 -
48 -+$config{moarshared} = '';
49 - # Switch shared lib compiler flags in relocatable case.
50 - if (not $args{static} and $config{prefix} ne '/usr') {
51 - $config{moarshared} = $config{moarshared_relocatable} if $args{relocatable};