summaryrefslogtreecommitdiff
path: root/dev-lang/moarvm
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
commit9ee6d97c2883d42f204a533a8bc1f4562df778fb (patch)
treeb690ddc0ca30f1472887edbb0b8313629bfcbbb2 /dev-lang/moarvm
parentb17a3ef12038de50228bade1f05502c74e135321 (diff)
gentoo resync : 16.09.2020
Diffstat (limited to 'dev-lang/moarvm')
-rw-r--r--dev-lang/moarvm/Manifest1
-rw-r--r--dev-lang/moarvm/files/fix-quoting.patch28
2 files changed, 0 insertions, 29 deletions
diff --git a/dev-lang/moarvm/Manifest b/dev-lang/moarvm/Manifest
index 05f8888aca1c..0f3da3079d3b 100644
--- a/dev-lang/moarvm/Manifest
+++ b/dev-lang/moarvm/Manifest
@@ -1,4 +1,3 @@
-AUX fix-quoting.patch 1089 BLAKE2B b42de8144ff2555dbb6986ab1d6b62ab6125e8f0fa8ca78ded2d8a0aa0d053ff4c52506cbd50f18a2e9cd8b7a8314f5a859ef55e7578d2ded4c80643cd4351ed SHA512 b7fe948f82c1c32b2b1c86a68409ae4d24927dc783476354b3ffa56e8448c5bb4d3727f1d8c37ed01685869d9636eb15776f92ae2f5f1206db98e954a948912f
DIST MoarVM-2020.05.tar.gz 5309065 BLAKE2B ed33f066cc16382218509dd9cf8f9f252c87a7d8bfeaf11be8ccbf4fe2337e1dd598d7f4368d4edc5fa1b7c704ee2b4dfec66ee8824465e6088ce0bdf7c8fac1 SHA512 10dd2bb8c629ac4d7804a8e64f8883617545930520c61ff34b62b29b81f827c425004bb07c8978df9620da446fa204ccb3b5c8889651e243a1fe4da28350ab66
DIST MoarVM-2020.06.tar.gz 5325582 BLAKE2B 3cef20e2cf8d35cf4e812c2838963938a059393eddf1b87d4f2a69750b5e3eae81db76c671d3fcc137f63acd0b94ff03a6c5c3c2a772d9d9409348cfb33fe235 SHA512 5dae0abb825d8ac1620a62da44de6a0a6ddbeed6862c728b895ad5922c0142fd305f5d63bef9726490d9bab0afa603e93b0a1cfd7e61f5778dedfca0f016664c
DIST MoarVM-2020.07.tar.gz 5329508 BLAKE2B a761234baf88bfb5d8bc87e621822cd4cc1c11c383d9a42785a33d6cc6aa2f039a7764923044c028677b75fd849fa785edb2b0b9bd4ba1bd5393dbe7269c6dc1 SHA512 7581dc0b028029f34fdb1035c1db75f9c13637f7ba5a0d85ca8478cc1844bb0f5852822a145df453b28037cb19972dc6112f32d9b443854952761223926f4042
diff --git a/dev-lang/moarvm/files/fix-quoting.patch b/dev-lang/moarvm/files/fix-quoting.patch
deleted file mode 100644
index f3e02b156ab5..000000000000
--- a/dev-lang/moarvm/files/fix-quoting.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From f1b26bb0e8f4e0a00ac31f9defb1ed74b820eb39 Mon Sep 17 00:00:00 2001
-From: Stefan Seifert <nine@detonation.org>
-Date: Mon, 15 Jul 2019 12:04:45 +0200
-Subject: [PATCH] Fix Configure.pl failing when --prefix /usr is passed
-
-gerd++ reported this on Github 1143 and supplied the diagnostics and
-fix:
-If the prefix is exact /usr, then it seems that in build/Makefile.in
-@moardll@: $(OBJECTS) $(THIRDPARTY)
- $(MSG) linking $@
- $(CMD)$(LD) @ldout@$@ $(LDFLAGS) @ldshared@ @moarshared@ $(OBJECTS) $(DLL_LIBS)
-moarshared will not be substituted or is wrong.
----
- Configure.pl | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/Configure.pl b/Configure.pl
-index b71b576be..753dcfaac 100755
---- a/Configure.pl
-+++ b/Configure.pl
-@@ -441,6 +441,7 @@ sub uniq {
- push @ldflags, $ENV{LDFLAGS} if $ENV{LDFLAGS};
- $config{ldflags} = join ' ', @ldflags;
-
-+$config{moarshared} = '';
- # Switch shared lib compiler flags in relocatable case.
- if (not $args{static} and $config{prefix} ne '/usr') {
- $config{moarshared} = $config{moarshared_relocatable} if $args{relocatable};