[perl-App-cpanminus] Unbundle all modules

2013-09-11 Thread Petr Pisar
commit 05a090766e3f6cf2f05e5e63cc12e9adc9e5e61f
Author: Petr Písař ppi...@redhat.com
Date:   Fri Aug 2 17:06:52 2013 +0200

Unbundle all modules

 fatunpack   |  114 ++
 perl-App-cpanminus.spec |  126 +--
 2 files changed, 202 insertions(+), 38 deletions(-)
---
diff --git a/fatunpack b/fatunpack
new file mode 100755
index 000..f13b107
--- /dev/null
+++ b/fatunpack
@@ -0,0 +1,114 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+use File::Path;
+use File::Spec;
+use Getopt::Long;
+
+my $libdir = 'lib';
+my $filter = '';
+
+GetOptions('libdir=s' = \$libdir, 'filter=s' = \$filter) or
+die Could not parse arguments\n;
+if ($filter eq '') {
+# Empty pattern passes previous result by definition. Do not use it.
+# Interpolared compilation is fixed in perl 5.18.0. RT#119095.
+$filter = qr/(?:)/;
+}
+eval { $filter = qr{$filter}; 1} or
+die Could not compile filter as a regular expression: $@\n;
+
+my ($file, $filename, $delimiter);
+while () {
+if (/^\$fatpacked\{\s*([^]*)\s*\}\s*=\s*\s*'([^']*)'\s*;/) {
+# Packed module beginning found
+$filename = $1;
+$delimiter = $2;
+if ($filename =~ $filter) {
+print STDERR Extracting `$filename'\n;
+my $directory = (File::Spec-splitpath($filename))[1];
+File::Path::make_path(File::Spec-catfile($libdir, $directory));
+if ($file) {
+die Unballanced fat-packed module at line $.\n;
+}
+open($file, '', File::Spec-catfile($libdir, $filename)) or
+die Could not create `,
+File::Spec-catfile($libdir, $filename), ': $!\n;
+} else {
+print STDERR Removing `$filename'\n;
+}
+} elsif (defined $delimiter and /^\Q$delimiter\E$/) {
+# Packed module end found
+if (defined $file) {
+close($file) or
+die Could not close `,
+File::Spec-catfile($libdir, $filename), ': $!\n;
+$file = undef;
+}
+$filename = undef;
+$delimiter = undef;
+} elsif (defined $file) {
+# Packed module to extract
+s/^  //;# de-escape recursive here-documents
+print $file $_;
+} elsif (! defined $delimiter) {
+# Rest of code to output
+print STDOUT $_;
+}
+}
+
+__END__
+
+=encoding utf8
+
+=head1 NAME
+
+fatunpack - Unpacker for App::FatPacker packets
+
+=head1 SYNOPSYS
+
+fatunpack [OPTION…] [PACKED_SCRIPT…]
+
+=head1 DESCRIPTION
+
+This tool unpacks scripts packed with App::FatPacker.
+
+Packed script's file names are specified as positional arguments. If no
+argument is given, a script from standard intput will be processed.
+
+The content of packed script stripped of all bundled modules is written to
+standard output.
+
+=head1 OPTIONS
+
+=over 8
+
+=item B--libdir DIRECTORY
+
+Directory to output unpacked modules to that where bundled into the input
+script. Default value is Clib.
+
+=item B--filter REGULAR_EXPRESSION
+
+Save only modules whose file name matches the BREGULAR_EXPRESSION. The file
+names are compared without B--libdir prefix. The expession is not anchored
+by default. Empty expression matches any file name. Default value is empty
+regular expression, i.e. to save all modules.
+
+=back
+
+=head1 VERSION
+
+This is version 1.
+
+=head1 COPYRIGHT
+
+Copyright © 2013  Petr Písař ppi...@redhat.com.
+
+=head1 LICENSE
+
+This is free software.  You may redistribute copies of it under the terms of
+the GNU General Public License Lhttp://www.gnu.org/licenses/gpl.html.
+There is NO WARRANTY, to the extent permitted by law.
+
+=cut
diff --git a/perl-App-cpanminus.spec b/perl-App-cpanminus.spec
index a0eb629..af4181a 100644
--- a/perl-App-cpanminus.spec
+++ b/perl-App-cpanminus.spec
@@ -1,72 +1,114 @@
 Name:   perl-App-cpanminus
 Version:1.6927
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Get, unpack, build and install CPAN modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/App-cpanminus/
 Source0:
http://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-%{version}.tar.gz
+Source1:fatunpack
 BuildArch:  noarch
+BuildRequires:  %{_bindir}/podselect
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
-# Tests:
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Getopt::Long)
 BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
+# Nothing special. The tests are very poor. But we run perl -c at built-time
+# to check for correct unpacking. So we need non-optional run-time
+# dependencies at build-time too:
+BuildRequires:  perl(aliased)
+BuildRequires:  perl(Config)
+BuildRequires:  perl(constant)
+# CPAN::DistnameInfo not needed for 

[Bug 907464] cpanm bundle lots of library and is not listed on fesco page

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=907464

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-App-cpanminus-1.6927-3
   ||.fc21
 Resolution|--- |RAWHIDE
Last Closed|2013-02-04 10:14:52 |2013-09-11 04:35:23



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=w5Q5XhaBaga=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 991767] perl-App-cpanminus-1.7001 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=991767

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||ppi...@redhat.com
   Assignee|jples...@redhat.com |ppi...@redhat.com



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=N29Nr3nSDAa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1006785] New: perl-Config-Any-0.24 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1006785

Bug ID: 1006785
   Summary: perl-Config-Any-0.24 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Config-Any
  Keywords: FutureFeature, Triaged
  Assignee: robinlee.s...@gmail.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org,
psab...@redhat.com, robinlee.s...@gmail.com



Latest upstream release: 0.24
Current version/release in Fedora Rawhide: 0.23-6.fc20
URL: http://search.cpan.org/dist/Config-Any/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=hgfJU3FT0za=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1006790] New: perl-HTTP-Tiny-0.035 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1006790

Bug ID: 1006790
   Summary: perl-HTTP-Tiny-0.035 is available
   Product: Fedora
   Version: rawhide
 Component: perl-HTTP-Tiny
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 0.035
Current version/release in Fedora Rawhide: 0.034-3.fc20
URL: http://search.cpan.org/dist/HTTP-Tiny/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=fnBgQJVb1Xa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-ParseUtil-Domain

2013-09-11 Thread buildsys


perl-ParseUtil-Domain has broken dependencies in the F-20 tree:
On x86_64:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-09-11 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the F-20 tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
On armhfp:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Alien-ROOT

2013-09-11 Thread buildsys


perl-Alien-ROOT has broken dependencies in the F-20 tree:
On armhfp:
perl-Alien-ROOT-5.34.3.1-3.fc20.noarch requires root-core
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Language-Expr

2013-09-11 Thread buildsys


perl-Language-Expr has broken dependencies in the F-20 tree:
On x86_64:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Language-Prolog-Yaswi

2013-09-11 Thread buildsys


perl-Language-Prolog-Yaswi has broken dependencies in the F-20 tree:
On x86_64:
perl-Language-Prolog-Yaswi-0.21-13.fc20.x86_64 requires 
libswipl.so.6.2.6()(64bit)
On i386:
perl-Language-Prolog-Yaswi-0.21-13.fc20.i686 requires libswipl.so.6.2.6
On armhfp:
perl-Language-Prolog-Yaswi-0.21-13.fc20.armv7hl requires 
libswipl.so.6.2.6
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Unix-Statgrab

2013-09-11 Thread buildsys


perl-Unix-Statgrab has broken dependencies in the F-20 tree:
On x86_64:
perl-Unix-Statgrab-0.04-20.fc20.x86_64 requires 
libstatgrab.so.6()(64bit)
On i386:
perl-Unix-Statgrab-0.04-20.fc20.i686 requires libstatgrab.so.6
On armhfp:
perl-Unix-Statgrab-0.04-20.fc20.armv7hl requires libstatgrab.so.6
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-IPTables-libiptc

2013-09-11 Thread buildsys


perl-IPTables-libiptc has broken dependencies in the F-20 tree:
On x86_64:
perl-IPTables-libiptc-0.52-5.fc19.x86_64 requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-IPTables-libiptc-0.52-5.fc19.i686 requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-IPTables-libiptc-0.52-5.fc19.armv7hl requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: slic3r

2013-09-11 Thread buildsys


slic3r has broken dependencies in the F-20 tree:
On x86_64:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On i386:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On armhfp:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-MooseX-TrackDirty-Attributes

2013-09-11 Thread buildsys


perl-MooseX-TrackDirty-Attributes has broken dependencies in the F-20 tree:
On x86_64:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-PDL

2013-09-11 Thread buildsys


perl-PDL has broken dependencies in the F-20 tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.2
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-MIME-Lite-HTML

2013-09-11 Thread buildsys


perl-MIME-Lite-HTML has broken dependencies in the F-20 tree:
On x86_64:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Padre

2013-09-11 Thread buildsys


perl-Padre has broken dependencies in the F-20 tree:
On x86_64:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl] Resolves: BZ#978233, BZ#989486, BZ#970567, BZ#988805, BZ#982131

2013-09-11 Thread Jitka Plesnikova
commit 5af7c28320a85a10909f8591ec6167d9fa1753b8
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Sep 11 14:05:01 2013 +0200

Resolves: BZ#978233, BZ#989486, BZ#970567, BZ#988805, BZ#982131

 perl-5.19.2-Fix-coreamp.t-s-rand-test.patch|   31 
 perl-5.19.2-Fix-crash-with-glob_copy.patch |   96 ++
 ...es-for-parsing-numeric-escapes-in-regexes.patch |  184 
 ...x-using-regexes-with-multiple-code-blocks.patch |   68 +++
 ...d-in-case-where-exception-has-been-thrown.patch |   69 
 perl.spec  |   38 -
 6 files changed, 485 insertions(+), 1 deletions(-)
---
diff --git a/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch 
b/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch
new file mode 100644
index 000..5b4e027
--- /dev/null
+++ b/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch
@@ -0,0 +1,31 @@
+From fba93b250c0d566f7ef26442312286310b2b9b46 Mon Sep 17 00:00:00 2001
+From: Father Chrysostomos spr...@cpan.org
+Date: Sun, 2 Jun 2013 00:36:33 -0700
+Subject: [PATCH] =?UTF-8?q?[perl=20#118237]=20Fix=20coreamp.t=E2=80=99s=20?=
+ =?UTF-8?q?rand=20test?=
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+when rand returns something really small that does not
+begin with 0, such as 2.90736361456823e-05.
+---
+ t/op/coreamp.t | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/t/op/coreamp.t b/t/op/coreamp.t
+index c1f7181..fe7c741 100644
+--- a/t/op/coreamp.t
 b/t/op/coreamp.t
+@@ -637,7 +637,7 @@ test_proto 'quotemeta', '$', '\$';
+ 
+ test_proto 'rand';
+ $tests += 3;
+-like CORE::rand, qr/^0[.\d+-e]*\z/, 'rand';
++like CORE::rand, qr/^[.\d+-e]*\z/, 'rand';
+ unlike join( , CORE::rand), qr/ /, 'rand in list context';
+ cmp_ok(CORE::rand(78), qw ' 78', 'rand with 1 arg');
+ 
+-- 
+1.8.3.1
+
diff --git a/perl-5.19.2-Fix-crash-with-glob_copy.patch 
b/perl-5.19.2-Fix-crash-with-glob_copy.patch
new file mode 100644
index 000..6623f74
--- /dev/null
+++ b/perl-5.19.2-Fix-crash-with-glob_copy.patch
@@ -0,0 +1,96 @@
+From 2f222bbdd2d6da605708c3ab620ac25c62481179 Mon Sep 17 00:00:00 2001
+From: Father Chrysostomos spr...@cpan.org
+Date: Sun, 28 Jul 2013 12:35:47 -0700
+Subject: [PATCH] [perl #119051] Fix crash with \$glob_copy
+
+$ref = *Foo::nosub;
+\$ref;
+
+The assignment creates a glob copy (coercible glob; one that down-
+grades back to a simple scalar when assigned to).
+
+\$ref autovivifies a stub in that glob.  The CvGV pointer ends up
+pointing to $ref, rather than *Foo::nosub.  $ref can easily cease
+being a glob.  So crashes happen.
+
+Stub autovivification used to stringify the glob, look it up again by
+name, and then vivify the stub in the glob.
+
+In commit 186a5ba82d584 I removed what seemed like a waste of CPU
+cycles, but apparently it served some purpose.  The lookup caused CvGV
+to point to *Foo::nosub, rather than $x.
+
+This commit restores the stringfy-and-lookup if the glob is coercible
+(SvFAKE).  It goes a little further and turns off the SvFAKE flag if
+the glob just looked up is also FAKE.
+
+It turns out this bug is old, and has been triggerable via glob copies
+in stash elements for a long time.  186a5ba82d584 made it easier to
+trigger the bug (so it is a regression from 5.16).
+---
+ op.c  |  8 +++-
+ t/op/gv.t | 16 +++-
+ 2 files changed, 22 insertions(+), 2 deletions(-)
+
+diff --git a/op.c b/op.c
+index e308d08..7576509 100644
+--- a/op.c
 b/op.c
+@@ -7918,13 +7918,19 @@ CV *
+ Perl_newSTUB(pTHX_ GV *gv, bool fake)
+ {
+ CV *cv = MUTABLE_CV(newSV_type(SVt_PVCV));
++GV *cvgv;
+ PERL_ARGS_ASSERT_NEWSTUB;
+ assert(!GvCVu(gv));
+ GvCV_set(gv, cv);
+ GvCVGEN(gv) = 0;
+ if (!fake  HvENAME_HEK(GvSTASH(gv)))
+   gv_method_changed(gv);
+-CvGV_set(cv, gv);
++if (SvFAKE(gv)) {
++  cvgv = gv_fetchsv((SV *)gv, GV_ADDMULTI, SVt_PVCV);
++  SvFAKE_off(cvgv);
++}
++else cvgv = gv;
++CvGV_set(cv, cvgv);
+ CvFILE_set_from_cop(cv, PL_curcop);
+ CvSTASH_set(cv, PL_curstash);
+ GvMULTI_on(gv);
+diff --git a/t/op/gv.t b/t/op/gv.t
+index deb92f3..806a68a 100644
+--- a/t/op/gv.t
 b/t/op/gv.t
+@@ -12,7 +12,7 @@ BEGIN {
+ 
+ use warnings;
+ 
+-plan( tests = 245 );
++plan( tests = 247 );
+ 
+ # type coercion on assignment
+ $foo = 'foo';
+@@ -959,6 +959,20 @@ package lrcg {
+ $::{aoeuaoeuaoeaoeu} = __PACKAGE__; # cow
+ () = *{aoeuaoeuaoeaoeu};
+ 
++$x = *_119051;
++$y = \$x;
++undef $x;
++eval { $y };
++pass No crash due to CvGV(vivified stub) pointing to flattened glob copy;
++# Not really supported, but this should not crash either:
++$x = *_119051again;
++delete $::{_119051again};
++$::{_119051again} = $x;# now we have a fake glob under the right name
++$y = \$x; # so when this tries to look up the right GV for
++undef $::{_119051again};   # CvGV, it still gets a fake one
++eval { $y-() };
++pass No crash due to CvGV pointing to 

Broken dependencies: perl-ParseUtil-Domain

2013-09-11 Thread buildsys


perl-ParseUtil-Domain has broken dependencies in the rawhide tree:
On x86_64:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-ParseUtil-Domain-2.22-3.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Locale-Codes

2013-09-11 Thread buildsys


perl-Locale-Codes has broken dependencies in the rawhide tree:
On x86_64:
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangFam_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Codes)
On i386:
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangFam_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Codes)
On armhfp:
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Script_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Language_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangVar_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangFam_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::LangExt_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Currency_Codes)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Retired)
perl-Locale-Codes-3.27-1.fc21.noarch requires 
perl(Locale::Codes::Country_Codes)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Language-Expr

2013-09-11 Thread buildsys


perl-Language-Expr has broken dependencies in the rawhide tree:
On x86_64:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Padre

2013-09-11 Thread buildsys


perl-Padre has broken dependencies in the rawhide tree:
On x86_64:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-Padre-0.90-6.fc18.noarch requires perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Unix-Statgrab

2013-09-11 Thread buildsys


perl-Unix-Statgrab has broken dependencies in the rawhide tree:
On x86_64:
perl-Unix-Statgrab-0.04-20.fc20.x86_64 requires 
libstatgrab.so.6()(64bit)
On i386:
perl-Unix-Statgrab-0.04-20.fc20.i686 requires libstatgrab.so.6
On armhfp:
perl-Unix-Statgrab-0.04-20.fc20.armv7hl requires libstatgrab.so.6
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: slic3r

2013-09-11 Thread buildsys


slic3r has broken dependencies in the rawhide tree:
On x86_64:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On i386:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
On armhfp:
slic3r-0.9.10b-2.fc20.noarch requires perl(:MODULE_COMPAT_5.16.3)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-MooseX-TrackDirty-Attributes

2013-09-11 Thread buildsys


perl-MooseX-TrackDirty-Attributes has broken dependencies in the rawhide tree:
On x86_64:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-MooseX-TrackDirty-Attributes-2.002-2.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-PDL

2013-09-11 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires perl(:MODULE_COMPAT_5.16.2)
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.2
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-MIME-Lite-HTML

2013-09-11 Thread buildsys


perl-MIME-Lite-HTML has broken dependencies in the rawhide tree:
On x86_64:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On i386:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
On armhfp:
perl-MIME-Lite-HTML-1.24-4.fc18.noarch requires 
perl(:MODULE_COMPAT_5.16.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-09-11 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
On armhfp:
perl-Bio-ASN1-EntrezGene-1.091-19.fc20.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl/f20] Resolves: BZ#978233, BZ#989486, BZ#970567, BZ#988805, BZ#982131

2013-09-11 Thread Jitka Plesnikova
commit 0de8d4ee701c8bc1bbf55a3b5649adeb0e494366
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Sep 11 14:48:59 2013 +0200

Resolves: BZ#978233, BZ#989486, BZ#970567, BZ#988805, BZ#982131

 perl-5.19.2-Fix-coreamp.t-s-rand-test.patch|   31 
 perl-5.19.2-Fix-crash-with-glob_copy.patch |   96 ++
 ...es-for-parsing-numeric-escapes-in-regexes.patch |  184 
 ...x-using-regexes-with-multiple-code-blocks.patch |   68 +++
 ...d-in-case-where-exception-has-been-thrown.patch |   69 
 perl.spec  |   38 -
 6 files changed, 485 insertions(+), 1 deletions(-)
---
diff --git a/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch 
b/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch
new file mode 100644
index 000..5b4e027
--- /dev/null
+++ b/perl-5.19.2-Fix-coreamp.t-s-rand-test.patch
@@ -0,0 +1,31 @@
+From fba93b250c0d566f7ef26442312286310b2b9b46 Mon Sep 17 00:00:00 2001
+From: Father Chrysostomos spr...@cpan.org
+Date: Sun, 2 Jun 2013 00:36:33 -0700
+Subject: [PATCH] =?UTF-8?q?[perl=20#118237]=20Fix=20coreamp.t=E2=80=99s=20?=
+ =?UTF-8?q?rand=20test?=
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+when rand returns something really small that does not
+begin with 0, such as 2.90736361456823e-05.
+---
+ t/op/coreamp.t | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/t/op/coreamp.t b/t/op/coreamp.t
+index c1f7181..fe7c741 100644
+--- a/t/op/coreamp.t
 b/t/op/coreamp.t
+@@ -637,7 +637,7 @@ test_proto 'quotemeta', '$', '\$';
+ 
+ test_proto 'rand';
+ $tests += 3;
+-like CORE::rand, qr/^0[.\d+-e]*\z/, 'rand';
++like CORE::rand, qr/^[.\d+-e]*\z/, 'rand';
+ unlike join( , CORE::rand), qr/ /, 'rand in list context';
+ cmp_ok(CORE::rand(78), qw ' 78', 'rand with 1 arg');
+ 
+-- 
+1.8.3.1
+
diff --git a/perl-5.19.2-Fix-crash-with-glob_copy.patch 
b/perl-5.19.2-Fix-crash-with-glob_copy.patch
new file mode 100644
index 000..6623f74
--- /dev/null
+++ b/perl-5.19.2-Fix-crash-with-glob_copy.patch
@@ -0,0 +1,96 @@
+From 2f222bbdd2d6da605708c3ab620ac25c62481179 Mon Sep 17 00:00:00 2001
+From: Father Chrysostomos spr...@cpan.org
+Date: Sun, 28 Jul 2013 12:35:47 -0700
+Subject: [PATCH] [perl #119051] Fix crash with \$glob_copy
+
+$ref = *Foo::nosub;
+\$ref;
+
+The assignment creates a glob copy (coercible glob; one that down-
+grades back to a simple scalar when assigned to).
+
+\$ref autovivifies a stub in that glob.  The CvGV pointer ends up
+pointing to $ref, rather than *Foo::nosub.  $ref can easily cease
+being a glob.  So crashes happen.
+
+Stub autovivification used to stringify the glob, look it up again by
+name, and then vivify the stub in the glob.
+
+In commit 186a5ba82d584 I removed what seemed like a waste of CPU
+cycles, but apparently it served some purpose.  The lookup caused CvGV
+to point to *Foo::nosub, rather than $x.
+
+This commit restores the stringfy-and-lookup if the glob is coercible
+(SvFAKE).  It goes a little further and turns off the SvFAKE flag if
+the glob just looked up is also FAKE.
+
+It turns out this bug is old, and has been triggerable via glob copies
+in stash elements for a long time.  186a5ba82d584 made it easier to
+trigger the bug (so it is a regression from 5.16).
+---
+ op.c  |  8 +++-
+ t/op/gv.t | 16 +++-
+ 2 files changed, 22 insertions(+), 2 deletions(-)
+
+diff --git a/op.c b/op.c
+index e308d08..7576509 100644
+--- a/op.c
 b/op.c
+@@ -7918,13 +7918,19 @@ CV *
+ Perl_newSTUB(pTHX_ GV *gv, bool fake)
+ {
+ CV *cv = MUTABLE_CV(newSV_type(SVt_PVCV));
++GV *cvgv;
+ PERL_ARGS_ASSERT_NEWSTUB;
+ assert(!GvCVu(gv));
+ GvCV_set(gv, cv);
+ GvCVGEN(gv) = 0;
+ if (!fake  HvENAME_HEK(GvSTASH(gv)))
+   gv_method_changed(gv);
+-CvGV_set(cv, gv);
++if (SvFAKE(gv)) {
++  cvgv = gv_fetchsv((SV *)gv, GV_ADDMULTI, SVt_PVCV);
++  SvFAKE_off(cvgv);
++}
++else cvgv = gv;
++CvGV_set(cv, cvgv);
+ CvFILE_set_from_cop(cv, PL_curcop);
+ CvSTASH_set(cv, PL_curstash);
+ GvMULTI_on(gv);
+diff --git a/t/op/gv.t b/t/op/gv.t
+index deb92f3..806a68a 100644
+--- a/t/op/gv.t
 b/t/op/gv.t
+@@ -12,7 +12,7 @@ BEGIN {
+ 
+ use warnings;
+ 
+-plan( tests = 245 );
++plan( tests = 247 );
+ 
+ # type coercion on assignment
+ $foo = 'foo';
+@@ -959,6 +959,20 @@ package lrcg {
+ $::{aoeuaoeuaoeaoeu} = __PACKAGE__; # cow
+ () = *{aoeuaoeuaoeaoeu};
+ 
++$x = *_119051;
++$y = \$x;
++undef $x;
++eval { $y };
++pass No crash due to CvGV(vivified stub) pointing to flattened glob copy;
++# Not really supported, but this should not crash either:
++$x = *_119051again;
++delete $::{_119051again};
++$::{_119051again} = $x;# now we have a fake glob under the right name
++$y = \$x; # so when this tries to look up the right GV for
++undef $::{_119051again};   # CvGV, it still gets a fake one
++eval { $y-() };
++pass No crash due to CvGV pointing to 

File App-cpanminus-1.7001.tar.gz uploaded to lookaside cache by ppisar

2013-09-11 Thread Petr Pisar
A file has been added to the lookaside cache for perl-App-cpanminus:

4655c5903e2885085262cf5f15ff5ae3  App-cpanminus-1.7001.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 991767] perl-App-cpanminus-1.7001 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=991767

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-App-cpanminus-1.7001-1
   ||.fc21
 Resolution|--- |RAWHIDE
Last Closed||2013-09-11 09:10:22



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=uWC60R9fMva=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File HTTP-Tiny-0.035.tar.gz uploaded to lookaside cache by ppisar

2013-09-11 Thread Petr Pisar
A file has been added to the lookaside cache for perl-HTTP-Tiny:

b9512258d7d137f81ddabfccbb804d47  HTTP-Tiny-0.035.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-HTTP-Tiny] 0.035 bump

2013-09-11 Thread Petr Pisar
commit 5c4ea1ebe01b9f383631c50b32fe808c1738ecb3
Author: Petr Písař ppi...@redhat.com
Date:   Wed Sep 11 15:29:26 2013 +0200

0.035 bump

 .gitignore  |1 +
 perl-HTTP-Tiny.spec |   12 
 sources |2 +-
 3 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 85b2f90..8713eea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /HTTP-Tiny-0.032.tar.gz
 /HTTP-Tiny-0.033.tar.gz
 /HTTP-Tiny-0.034.tar.gz
+/HTTP-Tiny-0.035.tar.gz
diff --git a/perl-HTTP-Tiny.spec b/perl-HTTP-Tiny.spec
index eb66166..493894b 100644
--- a/perl-HTTP-Tiny.spec
+++ b/perl-HTTP-Tiny.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Tiny
-Version:0.034
-Release:3%{?dist}
+Version:0.035
+Release:1%{?dist}
 Summary:Small, simple, correct HTTP/1.1 client
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -22,14 +22,15 @@ BuildRequires:  perl(MIME::Base64)
 # Net::SSLeay 1.49 is optional
 BuildRequires:  perl(Time::Local)
 # Tests:
+BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Basename) 
-BuildRequires:  perl(File::Find)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Spec::Functions)
 BuildRequires:  perl(File::Temp)
-BuildRequires:  perl(Exporter)
 BuildRequires:  perl(IO::Dir)
 BuildRequires:  perl(IO::File)
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IPC::Open3)
 BuildRequires:  perl(List::Util)
 BuildRequires:  perl(open)
 BuildRequires:  perl(Test::More) = 0.96
@@ -71,6 +72,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Sep 11 2013 Petr Pisar ppi...@redhat.com - 0.035-1
+- 0.035 bump
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.034-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index c46d310..733f8d3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3fbf1f3df3fdf969a46f832ef8c2c372  HTTP-Tiny-0.034.tar.gz
+b9512258d7d137f81ddabfccbb804d47  HTTP-Tiny-0.035.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1006790] perl-HTTP-Tiny-0.035 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1006790

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-HTTP-Tiny-0.035-1.fc21
 Resolution|--- |RAWHIDE
Last Closed||2013-09-11 09:40:45



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=VyV4nkfCADa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Test-Warnings-0.009.tar.gz uploaded to lookaside cache by pghmcfc

2013-09-11 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Test-Warnings:

ed8f06c91fdd9c9d9f59b0a50e5cb8ea  Test-Warnings-0.009.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Warnings] Update to 0.009

2013-09-11 Thread Paul Howarth
commit 49cd1ffe65260060a1548b51f9d6a544bd951fd8
Author: Paul Howarth p...@city-fan.org
Date:   Wed Sep 11 14:54:36 2013 +0100

Update to 0.009

- New upstream release 0.009
  - Fixed error in synopsis (we do not export anything by default)
  - A caveat added to the documentation regarding embedding warning checks
inside another sub
  - ':no_end_test' now also covers side effects of done_testing, as well as
END blocks, making it possible to use the warning(s) subs without 
having an
end warning test while using done_testing (necessary when combining with
the 'if' pragma)
  - END tests will not be added by a subequent use of Test::Warnings if a
previous one passed ':no_end_test'
- Update dependencies

 perl-Test-Warnings.spec |   26 --
 sources |2 +-
 2 files changed, 21 insertions(+), 7 deletions(-)
---
diff --git a/perl-Test-Warnings.spec b/perl-Test-Warnings.spec
index c613aa3..66f3288 100644
--- a/perl-Test-Warnings.spec
+++ b/perl-Test-Warnings.spec
@@ -1,6 +1,6 @@
 Name:  perl-Test-Warnings
-Version:   0.008
-Release:   3%{?dist}
+Version:   0.009
+Release:   1%{?dist}
 Summary:   Test for warnings and the lack of them
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -8,7 +8,7 @@ URL:http://search.cpan.org/dist/Test-Warnings
 Source0:   
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-Warnings-%{version}.tar.gz
 BuildArch: noarch
 # Build
-BuildRequires: perl(Module::Build::Tiny) = 0.025
+BuildRequires: perl(Module::Build::Tiny) = 0.027
 # Module
 BuildRequires: perl(Exporter)
 BuildRequires: perl(Test::Builder)
@@ -16,10 +16,11 @@ BuildRequires:  perl(parent)
 BuildRequires: perl(strict)
 BuildRequires: perl(warnings)
 # Test Suite
-BuildRequires: perl(Capture::Tiny)
-BuildRequires: perl(File::Find)
-BuildRequires: perl(File::Temp)
+BuildRequires: perl(CPAN::Meta::Check) = 0.007
+BuildRequires: perl(File::Spec)
 BuildRequires: perl(if)
+BuildRequires: perl(IO::Handle)
+BuildRequires: perl(IPC::Open3)
 BuildRequires: perl(Test::CheckDeps) = 0.006
 BuildRequires: perl(Test::Deep)
 BuildRequires: perl(Test::More) = 0.94
@@ -68,6 +69,19 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/Test::Warnings.3pm*
 
 %changelog
+* Wed Sep 11 2013 Paul Howarth p...@city-fan.org - 0.009-1
+- Update to 0.009
+  - Fixed error in synopsis (we do not export anything by default)
+  - A caveat added to the documentation regarding embedding warning checks
+inside another sub
+  - ':no_end_test' now also covers side effects of done_testing, as well as
+END blocks, making it possible to use the warning(s) subs without having an
+end warning test while using done_testing (necessary when combining with
+the 'if' pragma)
+  - END tests will not be added by a subequent use of Test::Warnings if a
+previous one passed ':no_end_test'
+- Update dependencies
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.008-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index ed83741..0b1ed93 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-06cdfaca3c01b5299852a4d9675b02c2  Test-Warnings-0.008.tar.gz
+ed8f06c91fdd9c9d9f59b0a50e5cb8ea  Test-Warnings-0.009.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 978233] perl-5.18: Regex \8 and \9 after literals no longer work

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=978233



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
perl-5.18.1-288.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-5.18.1-288.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=xrdcCZBbcqa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 989486] perl-5.18: Dereferencing undefined glob value as a code reference causes segfault

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=989486



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-5.18.1-288.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-5.18.1-288.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=PcZm78ySOqa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 988805] IPC::Open3 keeps zombies after failed execve()

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=988805



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-5.18.1-288.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-5.18.1-288.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=QLCOBxO0sZa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 970567] perl-5.18: t/op/coreamp.t sometimes fails

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=970567



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-5.18.1-288.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-5.18.1-288.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Wriwbkokm5a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 982131] Regular expression in regular expression code block corrupts back-reference

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=982131



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-5.18.1-288.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-5.18.1-288.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=50mQKeLQN0a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1006931] New: perl-Filesys-SmbClient missing flag compatibility with samba4

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1006931

Bug ID: 1006931
   Summary: perl-Filesys-SmbClient missing flag compatibility with
samba4
   Product: Fedora
   Version: 18
 Component: perl-Filesys-SmbClient
  Severity: medium
  Assignee: fedora...@rule.lv
  Reporter: aeben...@opentext.com
QA Contact: extras...@fedoraproject.org
CC: fedora...@rule.lv, perl-devel@lists.fedoraproject.org



Description of problem:
Unable to use kerberos via Filesys::SmbClient

Version-Release number of selected component (if applicable):
Filesys-SmbClient-3.2

How reproducible:
Create a new Filesys::SmbClient in perl with the option
  flags = SMB_CTX_FLAG_USE_KERBEROS
Does not invoke the use of KERBEROS.

Furthermore, making the perl module manually reveals the missing option, and
the code in the header file notes the new mechanism by which kerberos is
enabled.  Note that, when using the provided rpm, the invocation fails silently
back to password - which runs the risk of locking your account out as the
password is not likely provided.

Steps to Reproduce:
my $smb = new Filesys::SmbClient(
username  = user,
password = ,  # working, via kerberos
workgroup = DOMAIN,
flags = SMB_CTX_FLAG_USE_KERBEROS,
debug = 10);

Actual results:
Attempts password based login.

Expected results:
Uses existing kerberos credentials.

Additional info:
See /usr/include/samba-4.0/libsmbclient.h for new method of management.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=UG4DnM5BZ8a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Warnings] Created tag perl-Test-Warnings-0.009-1.fc21

2013-09-11 Thread Paul Howarth
The lightweight tag 'perl-Test-Warnings-0.009-1.fc21' was created pointing to:

 49cd1ff... Update to 0.009
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Warnings] Created tag perl-Test-Warnings-0.009-1.fc20

2013-09-11 Thread Paul Howarth
The lightweight tag 'perl-Test-Warnings-0.009-1.fc20' was created pointing to:

 49cd1ff... Update to 0.009
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Module-Metadata] Update to 1.000017

2013-09-11 Thread Paul Howarth
commit c12d0506af85c9a57a4cef531f73aca01b638d02
Author: Paul Howarth p...@city-fan.org
Date:   Wed Sep 11 16:33:56 2013 +0100

Update to 1.17

- New upstream release 1.17
  - De-taint version, if needed (CPAN RT#88576)
- BR: perl(Test::Fatal)

 perl-Module-Metadata.spec |8 +++-
 sources   |2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/perl-Module-Metadata.spec b/perl-Module-Metadata.spec
index 19cc906..d69072d 100644
--- a/perl-Module-Metadata.spec
+++ b/perl-Module-Metadata.spec
@@ -1,5 +1,5 @@
 Name:  perl-Module-Metadata
-Version:   1.16
+Version:   1.17
 Release:   1%{?dist}
 Summary:   Gather package and POD information from perl module files
 License:   GPL+ or Artistic
@@ -25,6 +25,7 @@ BuildRequires:perl(Exporter)
 BuildRequires: perl(File::Temp)
 BuildRequires: perl(File::Path)
 BuildRequires: perl(lib)
+BuildRequires: perl(Test::Fatal)
 BuildRequires: perl(Test::More)
 # Release tests
 %if !%{defined perl_bootstrap}
@@ -62,6 +63,11 @@ make test TEST_FILES=xt/*.t
 %{_mandir}/man3/Module::Metadata.3pm*
 
 %changelog
+* Wed Sep 11 2013 Paul Howarth p...@city-fan.org - 1.17-1
+- Update to 1.17
+  - De-taint version, if needed (CPAN RT#88576)
+- BR: perl(Test::Fatal)
+
 * Thu Aug 22 2013 Paul Howarth p...@city-fan.org - 1.16-1
 - Update to 1.16
   - Re-release to fix prereqs and other metadata
diff --git a/sources b/sources
index 159e996..3f61582 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-9c592edce2f2b5eded075422c7165971  Module-Metadata-1.16.tar.gz
+191b97e1640f8de856fc4e88efb4ea2e  Module-Metadata-1.17.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Perl-OSType-1.005.tar.gz uploaded to lookaside cache by pghmcfc

2013-09-11 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Perl-OSType:

9a0c41e9ccd937ae0c865ac501cc0dc6  Perl-OSType-1.005.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Perl-OSType] Created tag perl-Perl-OSType-1.005-1.fc20

2013-09-11 Thread Paul Howarth
The lightweight tag 'perl-Perl-OSType-1.005-1.fc20' was created pointing to:

 48e91b9... Update to 1.005
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Perl-OSType] Created tag perl-Perl-OSType-1.005-1.fc21

2013-09-11 Thread Paul Howarth
The lightweight tag 'perl-Perl-OSType-1.005-1.fc21' was created pointing to:

 48e91b9... Update to 1.005
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1003385] perl-Rose-DB-Object-0.807 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1003385

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-Rose-DB-Object-0.807-1
   ||.fc19
 Resolution|--- |ERRATA
Last Closed||2013-09-11 21:57:00



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Rose-DB-Object-0.807-1.fc19 has been pushed to the Fedora 19 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=PBdqndE4fxa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1003385] perl-Rose-DB-Object-0.807 is available

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1003385

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

   Fixed In Version|perl-Rose-DB-Object-0.807-1 |perl-Rose-DB-Object-0.807-1
   |.fc19   |.fc18



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-Rose-DB-Object-0.807-1.fc18 has been pushed to the Fedora 18 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=okZXSAwPsza=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Hash-MoreUtils-0.03.tar.gz uploaded to lookaside cache by corsepiu

2013-09-11 Thread corsepiu
A file has been added to the lookaside cache for perl-Hash-MoreUtils:

12d456c187d5b02cfa137502c87315dd  Hash-MoreUtils-0.03.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils] Upstream update.

2013-09-11 Thread corsepiu
commit c441d18244c4f364f04b9f86ec9c0b50833f4ee2
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:12:42 2013 +0200

Upstream update.

- Reflect upstream having abandoned pod-, manifest-testing and 
RELEASE_TESTING.
- Modernize spec.

 .gitignore   |1 +
 perl-Hash-MoreUtils.spec |   36 +++-
 sources  |2 +-
 3 files changed, 13 insertions(+), 26 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0a1603b..6838685 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Hash-MoreUtils-0.02.tar.gz
+/Hash-MoreUtils-0.03.tar.gz
diff --git a/perl-Hash-MoreUtils.spec b/perl-Hash-MoreUtils.spec
index 379f6cd..45740f7 100644
--- a/perl-Hash-MoreUtils.spec
+++ b/perl-Hash-MoreUtils.spec
@@ -1,61 +1,47 @@
 Name:   perl-Hash-MoreUtils
-Version:0.02
-Release:8%{?dist}
+Version:0.03
+Release:1%{?dist}
 Summary:Provide the stuff missing in Hash::Util
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Hash-MoreUtils/
 Source0:
http://www.cpan.org/authors/id/R/RE/REHSACK/Hash-MoreUtils-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Module::Build)
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::More) = 0.90
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
-# For improved tests
-BuildRequires:  perl(Test::Pod::Coverage) = 1.08
-BuildRequires:  perl(Test::Pod) = 1.22
-BuildRequires:  perl(Test::CheckManifest) = 0.9
-
 %description
 Similar to List::MoreUtils, Hash::MoreUtils contains trivial but commonly-
 used functionality for hashes.
 
 %prep
-# Unpackage tarball in a subdirectory, otherwise the testsuite will fail.
-%setup -q -c -n %{name}-%{version}
-%setup -q -T -D -n %{name}-%{version} -a0
+%setup -q -n Hash-MoreUtils-%{version}
 
 %build
-cd Hash-MoreUtils-%{version}
 %{__perl} Build.PL installdirs=vendor
 ./Build
-cd ..
 
 %install
-rm -rf $RPM_BUILD_ROOT
-cd Hash-MoreUtils-%{version}
 ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
 
 %{_fixperms} $RPM_BUILD_ROOT/*
-cd ..
 
 %check
-cd Hash-MoreUtils-%{version}
-RELEASE_TESTING=1 ./Build test
-cd ..
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+./Build test
 
 %files
-%defattr(-,root,root,-)
-%doc Hash-MoreUtils-%{version}/Changes Hash-MoreUtils-%{version}/README
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Sep 12 2013 Ralf Corsépius corse...@fedoraproject.org - 0.03-1
+- Upstream update.
+- Reflect upstream having abandoned pod-, manifest-testing and RELEASE_TESTING.
+- Modernize spec.
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index cce267a..b4568c5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-07350a6b0813fbe88b8b48ef786dda98  Hash-MoreUtils-0.02.tar.gz
+12d456c187d5b02cfa137502c87315dd  Hash-MoreUtils-0.03.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils] Upstream update.

2013-09-11 Thread corsepiu
commit 38d1480a1979df0392d33b5a733d3a0b2781b0be
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:21:14 2013 +0200

Upstream update.

- Reflect upstream having abandoned pod-, manifest-testing and 
RELEASE_TESTING.
- Modernize spec.

 .gitignore |1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6838685..d986aa6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1 @@
-/Hash-MoreUtils-0.02.tar.gz
 /Hash-MoreUtils-0.03.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils/f20] (2 commits) ...Upstream update.

2013-09-11 Thread corsepiu
Summary of changes:

  c441d18... Upstream update. (*)
  38d1480... Upstream update. (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils/f19] (5 commits) ...Merge cleanup.

2013-09-11 Thread corsepiu
Summary of changes:

  bfdb470... Perl 5.18 rebuild (*)
  22f15bb... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  c441d18... Upstream update. (*)
  38d1480... Upstream update. (*)
  22dcfdc... Merge cleanup.

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils/f19: 5/5] Merge cleanup.

2013-09-11 Thread corsepiu
commit 22dcfdcbf701cf4072236220a4c97bc7d6d5123b
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:27:57 2013 +0200

Merge cleanup.

 perl-Hash-MoreUtils.spec |6 --
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/perl-Hash-MoreUtils.spec b/perl-Hash-MoreUtils.spec
index 45740f7..6147247 100644
--- a/perl-Hash-MoreUtils.spec
+++ b/perl-Hash-MoreUtils.spec
@@ -42,12 +42,6 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 - Reflect upstream having abandoned pod-, manifest-testing and RELEASE_TESTING.
 - Modernize spec.
 
-* Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Sun Jul 21 2013 Petr Pisar ppi...@redhat.com - 0.02-7
-- Perl 5.18 rebuild
-
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils/f18: 7/7] Merge cleanup.

2013-09-11 Thread corsepiu
commit 6f5b2a4bd7b3c1e54dec6e7e6d6239cb4c336a45
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:33:44 2013 +0200

Merge cleanup.

 perl-Hash-MoreUtils.spec |3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/perl-Hash-MoreUtils.spec b/perl-Hash-MoreUtils.spec
index 6147247..83382e1 100644
--- a/perl-Hash-MoreUtils.spec
+++ b/perl-Hash-MoreUtils.spec
@@ -42,9 +42,6 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 - Reflect upstream having abandoned pod-, manifest-testing and RELEASE_TESTING.
 - Modernize spec.
 
-* Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Hash-MoreUtils/f18] (7 commits) ...Merge cleanup.

2013-09-11 Thread corsepiu
Summary of changes:

  a61506b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  bfdb470... Perl 5.18 rebuild (*)
  22f15bb... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  c441d18... Upstream update. (*)
  38d1480... Upstream update. (*)
  22dcfdc... Merge cleanup. (*)
  6f5b2a4... Merge cleanup.

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Parallel-Scoreboard-0.04.tar.gz uploaded to lookaside cache by corsepiu

2013-09-11 Thread corsepiu
A file has been added to the lookaside cache for perl-Parallel-Scoreboard:

475912e4da95b72ee533efc0ce268717  Parallel-Scoreboard-0.04.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Parallel-Scoreboard] Upstream update.

2013-09-11 Thread corsepiu
commit a89716f52fb8cb34d7af6e5cd990dfb3ffacc3dc
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:51:29 2013 +0200

Upstream update.

- Modernize spec.

 .gitignore |1 +
 sources|2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f040269..edc15fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Parallel-Scoreboard-0.02.tar.gz
 /Parallel-Scoreboard-0.03.tar.gz
+/Parallel-Scoreboard-0.04.tar.gz
diff --git a/sources b/sources
index 8832ced..3d2c46d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5012c8b370ed66db603638c83c5506b7  Parallel-Scoreboard-0.03.tar.gz
+475912e4da95b72ee533efc0ce268717  Parallel-Scoreboard-0.04.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Parallel-Scoreboard] Upstream update.

2013-09-11 Thread corsepiu
commit 313b32ac2861ecb78d0bae2e3a92dc332c6e4cac
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Thu Sep 12 06:51:56 2013 +0200

Upstream update.

- Modernize spec.

 .gitignore|2 --
 perl-Parallel-Scoreboard.spec |   10 +++---
 2 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index edc15fd..ad8485a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1 @@
-/Parallel-Scoreboard-0.02.tar.gz
-/Parallel-Scoreboard-0.03.tar.gz
 /Parallel-Scoreboard-0.04.tar.gz
diff --git a/perl-Parallel-Scoreboard.spec b/perl-Parallel-Scoreboard.spec
index 417f4ef..8091ab5 100644
--- a/perl-Parallel-Scoreboard.spec
+++ b/perl-Parallel-Scoreboard.spec
@@ -1,6 +1,6 @@
 Name:   perl-Parallel-Scoreboard
-Version:0.03
-Release:10%{?dist}
+Version:0.04
+Release:1%{?dist}
 Summary:Scoreboard for monitoring status of many processes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -8,6 +8,7 @@ URL:http://search.cpan.org/dist/Parallel-Scoreboard/
 Source0:
http://www.cpan.org/authors/id/K/KA/KAZUHO/Parallel-Scoreboard-%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  perl(Class::Accessor::Lite) = 0.05
+BuildRequires:  perl(Filter::Util::Call)
 BuildRequires:  perl(HTML::Entities)
 BuildRequires:  perl(JSON)
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -53,12 +54,15 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 make test
 
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Sep 12 2013 Ralf Corsépius corse...@fedoraproject.org - 0.04-1
+- Upstream update.
+- Modernize spec.
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.03-10
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1007199] New: perl segfaults when pushing a glob to thread-shared array

2013-09-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1007199

Bug ID: 1007199
   Summary: perl segfaults when pushing a glob to thread-shared
array
   Product: Fedora
   Version: 18
 Component: perl
  Assignee: jples...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: cw...@alumni.drew.edu, iarn...@gmail.com,
jples...@redhat.com, ka...@ucw.cz,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com,
psab...@redhat.com, rc040...@freenet.de,
tcall...@redhat.com



$ perl -Mthreads -Mthreads::shared -e 'my @a :shared; push @a, *STDOUT'
Segmentation fault

This crash has been reported to upstream
https://rt.perl.org/rt3//Public/Bug/Display.html?id=119719.

All Fedoras are affected. (Tested with perl-libs-5.16.3-265.fc19.x86_64,
perl-threads-1.87-1.fc19.x86_64, perl-threads-shared-1.43-2.fc19.x86_64.)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=VvUjpe7qxda=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel