Upgrade to 1.42 as provided in perl-5.25.12
This commit is contained in:
parent
84fbaf6f23
commit
483f2eed45
128
Carp-1.40-Upgrade-to-1.42.patch
Normal file
128
Carp-1.40-Upgrade-to-1.42.patch
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
From 7cdc0cd3cf5f9fd6459daa746db8f647c14ef9fe Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
|
Date: Thu, 11 May 2017 08:43:33 +0200
|
||||||
|
Subject: [PATCH] Upgrade to 1.42
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Unbundled from perl-5.25.12.
|
||||||
|
|
||||||
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||||
|
---
|
||||||
|
lib/Carp.pm | 6 +++---
|
||||||
|
lib/Carp/Heavy.pm | 2 +-
|
||||||
|
t/Carp.t | 13 ++++++++++++-
|
||||||
|
t/arg_string.t | 10 +++++++++-
|
||||||
|
4 files changed, 25 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/lib/Carp.pm b/lib/Carp.pm
|
||||||
|
index 92f8866..05052b9 100644
|
||||||
|
--- a/lib/Carp.pm
|
||||||
|
+++ b/lib/Carp.pm
|
||||||
|
@@ -87,7 +87,7 @@ BEGIN {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-our $VERSION = '1.40';
|
||||||
|
+our $VERSION = '1.42';
|
||||||
|
$VERSION =~ tr/_//d;
|
||||||
|
|
||||||
|
our $MaxEvalLen = 0;
|
||||||
|
@@ -474,7 +474,7 @@ sub ret_backtrace {
|
||||||
|
eval {
|
||||||
|
CORE::die;
|
||||||
|
};
|
||||||
|
- if($@ =~ /^Died at .*(, <.*?> line \d+).$/ ) {
|
||||||
|
+ if($@ =~ /^Died at .*(, <.*?> (?:line|chunk) \d+).$/ ) {
|
||||||
|
$mess .= $1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -636,7 +636,7 @@ Carp - alternative warn and die for modules
|
||||||
|
|
||||||
|
# cluck, longmess and shortmess not exported by default
|
||||||
|
use Carp qw(cluck longmess shortmess);
|
||||||
|
- cluck "This is how we got here!";
|
||||||
|
+ cluck "This is how we got here!"; # warn with stack backtrace
|
||||||
|
$long_message = longmess( "message from cluck() or confess()" );
|
||||||
|
$short_message = shortmess( "message from carp() or croak()" );
|
||||||
|
|
||||||
|
diff --git a/lib/Carp/Heavy.pm b/lib/Carp/Heavy.pm
|
||||||
|
index b05d758..f9c584a 100644
|
||||||
|
--- a/lib/Carp/Heavy.pm
|
||||||
|
+++ b/lib/Carp/Heavy.pm
|
||||||
|
@@ -2,7 +2,7 @@ package Carp::Heavy;
|
||||||
|
|
||||||
|
use Carp ();
|
||||||
|
|
||||||
|
-our $VERSION = '1.40';
|
||||||
|
+our $VERSION = '1.42';
|
||||||
|
$VERSION =~ tr/_//d;
|
||||||
|
|
||||||
|
# Carp::Heavy was merged into Carp in version 1.12. Any mismatched versions
|
||||||
|
diff --git a/t/Carp.t b/t/Carp.t
|
||||||
|
index 9ecdf88..65daed7 100644
|
||||||
|
--- a/t/Carp.t
|
||||||
|
+++ b/t/Carp.t
|
||||||
|
@@ -3,7 +3,7 @@ no warnings "once";
|
||||||
|
use Config;
|
||||||
|
|
||||||
|
use IPC::Open3 1.0103 qw(open3);
|
||||||
|
-use Test::More tests => 66;
|
||||||
|
+use Test::More tests => 67;
|
||||||
|
|
||||||
|
sub runperl {
|
||||||
|
my(%args) = @_;
|
||||||
|
@@ -442,6 +442,16 @@ $@ =~ s/\n.*//; # just check first line
|
||||||
|
is $@, "heek at ".__FILE__." line ".(__LINE__-2).", <DATA> line 2.\n",
|
||||||
|
'last handle line num is mentioned';
|
||||||
|
|
||||||
|
+# [cpan #100183]
|
||||||
|
+{
|
||||||
|
+ local $/ = \6;
|
||||||
|
+ <XD::DATA>;
|
||||||
|
+ eval { croak 'jeek' };
|
||||||
|
+ $@ =~ s/\n.*//; # just check first line
|
||||||
|
+ is $@, "jeek at ".__FILE__." line ".(__LINE__-2).", <DATA> chunk 3.\n",
|
||||||
|
+ 'last handle chunk num is mentioned';
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
SKIP:
|
||||||
|
{
|
||||||
|
skip "IPC::Open3::open3 needs porting", 1 if $Is_VMS;
|
||||||
|
@@ -531,3 +541,4 @@ __DATA__
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
+abcdefghijklmnopqrstuvwxyz
|
||||||
|
diff --git a/t/arg_string.t b/t/arg_string.t
|
||||||
|
index dbd2e6e..dc70f43 100644
|
||||||
|
--- a/t/arg_string.t
|
||||||
|
+++ b/t/arg_string.t
|
||||||
|
@@ -1,6 +1,8 @@
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
+# confirm that stack args are displayed correctly by longmess()
|
||||||
|
+
|
||||||
|
use Test::More tests => 32;
|
||||||
|
|
||||||
|
use Carp ();
|
||||||
|
@@ -22,7 +24,13 @@ like lm(3), qr/main::lm\(3\)/;
|
||||||
|
like lm(substr("3\x{2603}", 0, 1)), qr/main::lm\(3\)/;
|
||||||
|
like lm(-3), qr/main::lm\(-3\)/;
|
||||||
|
like lm(-3.5), qr/main::lm\(-3\.5\)/;
|
||||||
|
-like lm(-3.5e100), qr/main::lm\(-3\.5[eE]\+?100\)/;
|
||||||
|
+like lm(-3.5e30),
|
||||||
|
+ qr/main::lm\(
|
||||||
|
+ (
|
||||||
|
+ -3500000000000000000000000000000
|
||||||
|
+ | -3\.5[eE]\+?0?30
|
||||||
|
+ )
|
||||||
|
+ \) /x;
|
||||||
|
like lm(""), qr/main::lm\(""\)/;
|
||||||
|
like lm("foo"), qr/main::lm\("foo"\)/;
|
||||||
|
like lm("a\$b\@c\\d\"e"), qr/main::lm\("a\\\$b\\\@c\\\\d\\\"e"\)/;
|
||||||
|
--
|
||||||
|
2.9.3
|
||||||
|
|
@ -1,27 +1,23 @@
|
|||||||
%global cpan_version 1.38
|
%global cpan_version 1.38
|
||||||
|
|
||||||
Name: perl-Carp
|
Name: perl-Carp
|
||||||
# Keep 2-digit precision
|
Version: 1.42
|
||||||
#Version: %%(echo '%%{cpan_version}' | sed 's/\(\...\)\(.\)/\1.\2/')
|
Release: 1%{?dist}
|
||||||
Version: 1.40
|
|
||||||
Release: 366%{?dist}
|
|
||||||
Summary: Alternative warn and die for modules
|
Summary: Alternative warn and die for modules
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
|
||||||
URL: http://search.cpan.org/dist/Carp/
|
URL: http://search.cpan.org/dist/Carp/
|
||||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Carp-%{cpan_version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Carp-%{cpan_version}.tar.gz
|
||||||
# Unbundled from perl 5.24.0
|
# Unbundled from perl 5.24.0
|
||||||
Patch0: Carp-1.38-Upgrade-to-1.40.patch
|
Patch0: Carp-1.38-Upgrade-to-1.40.patch
|
||||||
|
# Unbundled from perl 5.25.12
|
||||||
|
Patch1: Carp-1.40-Upgrade-to-1.42.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: coreutils
|
|
||||||
BuildRequires: findutils
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
BuildRequires: perl(warnings)
|
BuildRequires: perl(warnings)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: sed
|
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(Exporter)
|
BuildRequires: perl(Exporter)
|
||||||
# Tests:
|
# Tests:
|
||||||
@ -49,14 +45,14 @@ but it is a good educated guess.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n Carp-%{cpan_version}
|
%setup -q -n Carp-%{cpan_version}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -68,6 +64,9 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 11 2017 Petr Pisar <ppisar@redhat.com> - 1.42-1
|
||||||
|
- Upgrade to 1.42 as provided in perl-5.25.12
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.40-366
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.40-366
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user