1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Subject: Stop corruption of repository
The upstream code cleans up META.yml and Makefile.PL (and regenerates
the latter). This is fine but for Debian means that the build could fail
if done twice in a row where the regenerated Makefile.PL differs
from the upstream one. Whilst we are at we comment out stuff that whilst
harmless creates noise during the build.
Forwarded: not-needed
Author: Nicholas Bamber <nicholas@periapt.co.uk>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2014-04-06
--- a/Build.PL
+++ b/Build.PL
@@ -16,16 +16,16 @@
'UNIVERSAL::require' => 0,
'version' => 0,
},
- recommends => {
- 'Devel::CheckOS' => 0,
- },
- create_makefile_pl => 'traditional',
- meta_merge => {
- resources => {
- repository => "http://github.com/egiles/test-compile",
- }
- },
- add_to_cleanup => [ 'Makefile.PL', 'META.yml' ],
+# recommends => {
+# 'Devel::CheckOS' => 0,
+# },
+# create_makefile_pl => 'traditional',
+# meta_merge => {
+# resources => {
+# repository => "http://github.com/egiles/test-compile",
+# }
+# },
+# add_to_cleanup => [ 'Makefile.PL', 'META.yml' ],
);
$build->create_build_script;
|