Description: Do not extract VERSION from git repo
 In Debian package, the git repo contain debian package and does not contain tags matching upstream release.
 .
 So this code cannot work and must be removed (unless we import upstream repo in our Debian repo)
Forwarded: not-needed
Index: moarvm/Configure.pl
===================================================================
--- moarvm.orig/Configure.pl
+++ moarvm/Configure.pl
@@ -131,11 +131,6 @@ if (open(my $fh, '<', 'VERSION')) {
     $VERSION = <$fh>;
     close($fh);
 }
-# .git is a file and not a directory in submodule
-if (-e '.git' && open(my $GIT, '-|', 'git describe --tags "--match=20*"')) {
-    $VERSION = <$GIT>;
-    close($GIT);
-}
 chomp $VERSION;
 $config{version}      = $VERSION;
 $config{versionmajor} = $VERSION =~ /^(\d+)/ ? $1 : 0;
