[packages/perl] - work around our install process not getting some modules versions right - rel 8
baggins
baggins at pld-linux.org
Sun Jun 9 22:41:27 CEST 2013
commit 53d16475dd59af9e51c534e534f4a014e9f2dd15
Author: Jan Rękorajski <baggins at pld-linux.org>
Date: Sun Jun 9 22:40:49 2013 +0200
- work around our install process not getting some modules versions right
- rel 8
perl-modules | 6 +++---
perl.spec | 15 +++++----------
2 files changed, 8 insertions(+), 13 deletions(-)
---
diff --git a/perl.spec b/perl.spec
index 54786d5..a432712 100644
--- a/perl.spec
+++ b/perl.spec
@@ -44,7 +44,7 @@
%define perl_modversion() %([ -f %{SOURCE3} ] && awk -vp=%1 '$1 == p{m=$1; gsub(/::/, "-", m); printf("perl-%s = %s\\n", m, $3)}END{if (!m) printf("# Error looking up [%s]\\n", p)}' %{SOURCE3} || echo ERROR)
%define ver 5.18.0
-%define rel 7
+%define rel 8
Summary: Practical Extraction and Report Language (Perl)
Summary(cs.UTF-8): Programovací jazyk Perl
Summary(da.UTF-8): Programmeringssproget Perl
@@ -882,13 +882,6 @@ sed -i -e 's#^\(ld.*=.*\)-Wl,--as-needed\(.*\)#\1 \2#g' $RPM_BUILD_ROOT%{perl_ar
echo '# Module versions from Perl %{ver} distribution.' > perl-modules
for m in $(awk '!/^#/ && !/^$/{print $1}' %{SOURCE3}); do
case $m in
- Devel::DProf)
-# + perl -ilib -MDevel::DProf -e print 'Devel-DProf = ',$Devel::DProf::VERSION
-# DProf: run perl with -d to use DProf.
-# Compilation failed in require.
-# BEGIN failed--compilation aborted.
- v=$(%{__perl} -e 'do "Devel/DProf.pm"; print $Devel::DProf::VERSION')
- ;;
libnet)
v=$(awk '/^libnet /{print $2; exit}' cpan/libnet/Changes)
;;
@@ -899,8 +892,10 @@ for m in $(awk '!/^#/ && !/^$/{print $1}' %{SOURCE3}); do
echo "$m = $v" >> perl-modules
done
-egrep -v '^([ ]*$|[;#])' %{SOURCE3} > .mods1
-egrep -v '^([ ]*$|[;#])' perl-modules > .mods2
+# ExtUtils::CBuilder Compress::Raw::Bzip2 Compress::Raw::Zlib ignored due to VERSION from the loop above
+# is missing ending '0'
+egrep -v '^([ ]*$|[;#])' %{SOURCE3} | egrep -v 'ExtUtils::CBuilder|Compress::Raw::Bzip2|Compress::Raw::Zlib' > .mods1
+egrep -v '^([ ]*$|[;#])' perl-modules | egrep -v 'ExtUtils::CBuilder|Compress::Raw::Bzip2|Compress::Raw::Zlib' > .mods2
if ! cmp -s .mods1 .mods2; then
: %{SOURCE3} outdated with $(pwd)/perl-modules
exit 1
diff --git a/perl-modules b/perl-modules
index 5d3309d..adb8814 100644
--- a/perl-modules
+++ b/perl-modules
@@ -4,8 +4,8 @@ Attribute::Handlers = 0.94
autodie = 2.13
bignum = 0.33
CGI = 3.63
-Compress::Raw::Bzip2 = 2.06
-Compress::Raw::Zlib = 2.06
+Compress::Raw::Bzip2 = 2.060
+Compress::Raw::Zlib = 2.060
CPAN = 2.00
CPAN::Meta = 2.120921
CPAN::Meta::YAML = 0.008
@@ -15,7 +15,7 @@ Digest = 1.17
Digest::MD5 = 2.52
Digest::SHA = 5.84
Encode = 2.49
-ExtUtils::CBuilder = 0.28021
+ExtUtils::CBuilder = 0.280210
ExtUtils::Command = 1.17
ExtUtils::Embed = 1.30
ExtUtils::Install = 1.59
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/perl.git/commitdiff/53d16475dd59af9e51c534e534f4a014e9f2dd15
More information about the pld-cvs-commit
mailing list