summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Brewer (Gentoo Key) <tomboy64@sina.cn>2016-05-08 22:43:34 +0200
committerAmy Winston <amynka@gentoo.org>2016-05-09 09:06:23 +0200
commitc7488f5e5c8a664d811ec86e2328f2147f0eda72 (patch)
treefb23382671faf21382c8a224af72cac576c3d219 /dev-lang/moarvm/files
parentdev-libs/libressl: remove older versions (diff)
downloadgentoo-c7488f5e5c8a664d811ec86e2328f2147f0eda72.tar.gz
gentoo-c7488f5e5c8a664d811ec86e2328f2147f0eda72.tar.bz2
gentoo-c7488f5e5c8a664d811ec86e2328f2147f0eda72.zip
dev-lang/moarvm: remove unneeded patches
Diffstat (limited to 'dev-lang/moarvm/files')
-rw-r--r--dev-lang/moarvm/files/Configure-9999.patch15
-rw-r--r--dev-lang/moarvm/files/Configure.patch14
2 files changed, 0 insertions, 29 deletions
diff --git a/dev-lang/moarvm/files/Configure-9999.patch b/dev-lang/moarvm/files/Configure-9999.patch
deleted file mode 100644
index 85bbb5d81dac..000000000000
--- a/dev-lang/moarvm/files/Configure-9999.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- Configure.pl 2014-01-09 16:48:13.989620752 +0800
-+++ Configure.pl.new 2014-01-09 16:49:41.217885279 +0800
-@@ -94,11 +94,7 @@
- $VERSION = <$fh>;
- close($fh);
- }
--# .git is a file and not a directory in submodule
--if (-e '.git' && open(my $GIT, '-|', "git describe --tags")) {
-- $VERSION = <$GIT>;
-- close($GIT);
--}
-+
- chomp $VERSION;
- $config{version} = $VERSION;
- $config{versionmajor} = $VERSION =~ /^(\d+)/ ? $1 : 0;
diff --git a/dev-lang/moarvm/files/Configure.patch b/dev-lang/moarvm/files/Configure.patch
deleted file mode 100644
index 42c6fb97febf..000000000000
--- a/dev-lang/moarvm/files/Configure.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- Configure.pl 2013-12-06 10:13:34.000000000 +0800
-+++ Configure.pl.new 2013-12-06 10:22:28.360040309 +0800
-@@ -38,11 +38,6 @@
-
- print "Welcome to MoarVM!\n\n";
-
--print dots("Updating submodules");
--my $msg = qx{git submodule --quiet update --init 2>&1};
--if ($? >> 8 == 0) { print "OK\n" }
--else { softfail("git error: $msg") }
--
- # fiddle with flags
- $args{debug} //= 0 + !$args{optimize};
- $args{optimize} //= 0 + !$args{debug};