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 41 42 43 44 45
|
Description: Replace occurences of Digest::SHA1 in Makefile.PL and metafiles.
In Debian we use the core Digest::SHA module that was released with Perl 5.9.3.
Upstream keeps compatibility with Perl 5.8.1 so this patch is not forwarded.
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: no
Last-Update: 2016-06-21
---
--- a/META.json
+++ b/META.json
@@ -34,7 +34,6 @@
},
"runtime" : {
"requires" : {
- "Digest::SHA1" : "2.13",
"perl" : "v5.8.1"
}
}
--- a/META.yml
+++ b/META.yml
@@ -19,7 +19,6 @@
- xt
- example
requires:
- Digest::SHA1: '2.13'
perl: v5.8.1
resources:
bugtracker: https://github.com/ingydotnet/module-compile-pm/issues
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -20,7 +20,6 @@
"LICENSE" => "perl",
"NAME" => "Module::Compile",
"PREREQ_PM" => {
- "Digest::SHA1" => "2.13"
},
"VERSION" => "0.35",
"test" => {
@@ -30,7 +29,6 @@
my %FallbackPrereqs = (
- "Digest::SHA1" => "2.13"
);
|