[perl-Test-Dist-VersionSync] Adapt to Test-Simple-0.98_05

2013-07-24 Thread Petr Pisar
commit 937a51f8ebce39b5e1ea17b6a0a2895f36f24060
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 09:27:16 2013 +0200

Adapt to Test-Simple-0.98_05

 ...-Test-Simple-0.98_04-quotes-default-names.patch |   56 +++
 ...Test-Simple-0.98_05-outputs-subtest-names.patch |  105 
 perl-Test-Dist-VersionSync.spec|9 ++
 3 files changed, 170 insertions(+), 0 deletions(-)
---
diff --git 
a/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_04-quotes-default-names.patch 
b/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_04-quotes-default-names.patch
new file mode 100644
index 000..3ba80d1
--- /dev/null
+++ b/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_04-quotes-default-names.patch
@@ -0,0 +1,56 @@
+From f4778c06c4620d92e50b6635f284323138b7de7a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 09:19:39 +0200
+Subject: [PATCH 2/2] Test-Simple-0.98_04 quotes default names
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+https://github.com/guillaumeaubert/Test-Dist-VersionSync/issues/2
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ t/22-ok_versions-modules_list.t | 5 -
+ t/23-ok_versions-empty_list.t   | 6 +-
+ 2 files changed, 9 insertions(+), 2 deletions(-)
+
+diff --git a/t/22-ok_versions-modules_list.t b/t/22-ok_versions-modules_list.t
+index a2c75d7..5361c94 100644
+--- a/t/22-ok_versions-modules_list.t
 b/t/22-ok_versions-modules_list.t
+@@ -27,7 +27,10 @@ ok(
+ 
+ test_out( '1..3')
+   if $Test::More::VERSION = 1.00505;
+-test_out( 'ok 1 - modules list isa ARRAY' );
++test_out( 'ok 1 - modules list isa ARRAY' )
++if $Test::Simple::VERSION  0.9804;
++test_out( q{ok 1 - 'modules list' isa 'ARRAY'} )
++if $Test::Simple::VERSION = 0.9804;
+ test_out( 'TAP version 13' )
+   if $Test::More::VERSION = 1.005  $Test::More::VERSION  1.00505;
+ test_out( '# Subtest: Retrieve versions for all modules listed.' )
+diff --git a/t/23-ok_versions-empty_list.t b/t/23-ok_versions-empty_list.t
+index 6fe9e64..9623b8b 100644
+--- a/t/23-ok_versions-empty_list.t
 b/t/23-ok_versions-empty_list.t
+@@ -7,11 +7,15 @@ use Test::Builder::Tester;
+ use Test::Dist::VersionSync;
+ use Test::FailWarnings -allow_deps = 1;
+ use Test::More tests = 1;
++require Test::Simple;
+ 
+ 
+ test_out( '1..3')
+   if $Test::More::VERSION = 1.00505;
+-test_out( 'ok 1 - modules list isa ARRAY' );
++test_out( 'ok 1 - modules list isa ARRAY' )
++if $Test::Simple::VERSION  0.9804;
++test_out( q{ok 1 - 'modules list' isa 'ARRAY'} )
++if $Test::Simple::VERSION = 0.9804;
+ test_out( 'ok 2 # skip No module found in the distribution.' );
+ test_out( 'ok 3 # skip No module found in the distribution.' );
+ 
+-- 
+1.8.1.4
+
diff --git 
a/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_05-outputs-subtest-names.patch 
b/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_05-outputs-subtest-names.patch
new file mode 100644
index 000..b55a1d3
--- /dev/null
+++ 
b/Test-Dist-VersionSync-1.1.1-Test-Simple-0.98_05-outputs-subtest-names.patch
@@ -0,0 +1,105 @@
+From b47d8d0923ca739820a4dfa7bb618bedae630818 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 09:06:44 +0200
+Subject: [PATCH 1/2] Test-Simple-0.98_05 outputs subtest names
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+https://github.com/guillaumeaubert/Test-Dist-VersionSync/issues/1
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ t/20-ok_versions-sync.t| 3 +++
+ t/21-ok_versions-desync.t  | 3 +++
+ t/22-ok_versions-modules_list.t| 3 +++
+ t/25-ok_versions-missing_version.t | 3 +++
+ 4 files changed, 12 insertions(+)
+
+diff --git a/t/20-ok_versions-sync.t b/t/20-ok_versions-sync.t
+index 6638410..5b9cff0 100644
+--- a/t/20-ok_versions-sync.t
 b/t/20-ok_versions-sync.t
+@@ -7,6 +7,7 @@ use Test::Builder::Tester;
+ use Test::Dist::VersionSync;
+ use Test::FailWarnings -allow_deps = 1;
+ use Test::More tests = 5;
++require Test::Simple;
+ 
+ 
+ use_ok( 'Cwd' );
+@@ -31,6 +32,8 @@ test_out( 'ok 2 - The MANIFEST file is present at the root 
of the distribution.'
+ test_out( 'ok 3 - Retrieve MANIFEST file.' );
+ test_out( 'TAP version 13' )
+   if $Test::More::VERSION = 1.005  $Test::More::VERSION  1.00505;
++test_out( '# Subtest: Retrieve versions for all modules listed.' )
++if $Test::Simple::VERSION = 0.9805;
+ test_out( '1..4' );
+ test_out( 'ok 1 - use TestModule1;' );
+ test_out( 'ok 2 - Module TestModule1 declares a version.' );
+diff --git a/t/21-ok_versions-desync.t b/t/21-ok_versions-desync.t
+index 183e544..a078f35 100644
+--- a/t/21-ok_versions-desync.t
 b/t/21-ok_versions-desync.t
+@@ -7,6 +7,7 @@ use Test::Builder::Tester;
+ use Test::Dist::VersionSync;
+ use Test::FailWarnings -allow_deps = 1;
+ use Test::More 

[perl-AuthCAS] Define POD encoding

2013-07-24 Thread Petr Pisar
commit 6d722d45cbb23a4b05e0d89d90ff3ecc11feb7e2
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 09:48:10 2013 +0200

Define POD encoding

 AuthCAS-1.6-Define-POD-encoding.patch |   30 ++
 perl-AuthCAS.spec |4 
 2 files changed, 34 insertions(+), 0 deletions(-)
---
diff --git a/AuthCAS-1.6-Define-POD-encoding.patch 
b/AuthCAS-1.6-Define-POD-encoding.patch
new file mode 100644
index 000..8866990
--- /dev/null
+++ b/AuthCAS-1.6-Define-POD-encoding.patch
@@ -0,0 +1,30 @@
+From b866867c72d3e02e1850fec87f109963877121bd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 09:43:57 +0200
+Subject: [PATCH] Define POD encoding
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ lib/AuthCAS.pm | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/lib/AuthCAS.pm b/lib/AuthCAS.pm
+index 234fd6d..135d73f 100644
+--- a/lib/AuthCAS.pm
 b/lib/AuthCAS.pm
+@@ -6,6 +6,8 @@ use vars qw( $VERSION);
+ 
+ $VERSION = '1.6';
+ 
++=encoding utf8
++
+ =head1 NAME
+ 
+ AuthCAS - Client library for JA-SIG CAS 2.0 authentication server
+-- 
+1.8.1.4
+
diff --git a/perl-AuthCAS.spec b/perl-AuthCAS.spec
index bd601ca..ff6c125 100644
--- a/perl-AuthCAS.spec
+++ b/perl-AuthCAS.spec
@@ -6,6 +6,8 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/AuthCAS/
 Source0:
http://search.cpan.org/CPAN/authors/id/O/OS/OSALAUN/AuthCAS-%{version}.tar.gz
+# Define POD encoding, CPAN RT#87241
+Patch0: AuthCAS-1.6-Define-POD-encoding.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(IO::Socket::SSL)
@@ -25,6 +27,7 @@ AuthCAS is a full object-oriented library.
 
 %prep
 %setup -q -n AuthCAS-%{version}
+%patch0 -p1
 iconv -f iso8859-1 -t utf-8 README  README.utf8  \
 touch -r README README.utf8  \
 mv -f README.utf8 README
@@ -62,6 +65,7 @@ rm -rf $RPM_BUILD_ROOT
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.6-3
 - Perl 5.18 rebuild
+- Define POD encoding (CPAN RT#87241)
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.6-2
 - 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-Lingua-Stem] Define POD encoding

2013-07-24 Thread Petr Pisar
commit fc0731a1f24bfbf4b1d93b1650882597a511a767
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 09:59:47 2013 +0200

Define POD encoding

 Lingua-Stem-0.84-Define-POD-encoding.patch |   27 +++
 perl-Lingua-Stem.spec  |4 
 2 files changed, 31 insertions(+), 0 deletions(-)
---
diff --git a/Lingua-Stem-0.84-Define-POD-encoding.patch 
b/Lingua-Stem-0.84-Define-POD-encoding.patch
new file mode 100644
index 000..958608a
--- /dev/null
+++ b/Lingua-Stem-0.84-Define-POD-encoding.patch
@@ -0,0 +1,27 @@
+From b7ba2d5c49a75ce7de80034e9ffe61d07165c339 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 09:57:59 +0200
+Subject: [PATCH] Define POD encoding
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+https://rt.cpan.org/Public/Bug/Display.html?id=87242
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ lib/Lingua/Stem.pod | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lib/Lingua/Stem.pod b/lib/Lingua/Stem.pod
+index 987e802..6ada364 100644
+--- a/lib/Lingua/Stem.pod
 b/lib/Lingua/Stem.pod
+@@ -1,3 +1,4 @@
++=encoding ISO-8859-1
+ 
+ =head1 NAME
+ 
+-- 
+1.8.1.4
+
diff --git a/perl-Lingua-Stem.spec b/perl-Lingua-Stem.spec
index 257e6c3..254fd68 100644
--- a/perl-Lingua-Stem.spec
+++ b/perl-Lingua-Stem.spec
@@ -6,6 +6,8 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Lingua-Stem/
 Source0:
http://www.cpan.org/authors/id/S/SN/SNOWHARE/Lingua-Stem-%{version}.tar.gz
+# Define POD encoding, CPAN RT#87242
+Patch0: Lingua-Stem-0.84-Define-POD-encoding.patch
 BuildArch:  noarch
 BuildRequires:  perl(Lingua::GL::Stemmer)
 BuildRequires:  perl(Lingua::PT::Stemmer)
@@ -34,6 +36,7 @@ stemmed words as appropriate to the selected locale.
 
 %prep
 %setup -q -n Lingua-Stem-%{version}
+%patch0 -p1
 
 %build
 %{__perl} Build.PL installdirs=vendor
@@ -57,6 +60,7 @@ TEST_POD_COVERAGE=1 ./Build test
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.84-9
 - Perl 5.18 rebuild
+- Define POD encoding (CPAN RT#87242)
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.84-8
 - 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-rpm-build-perl] Perl 5.18 compatibility

2013-07-24 Thread Petr Pisar
commit 3657ef0d5274eea306a26af060f0a5d43b2b4ec6
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:14:01 2013 +0200

Perl 5.18 compatibility

 perl-rpm-build-perl.spec   |4 ++
 ...non-deterministic-failures-on-newer-perls.patch |   35 
 2 files changed, 39 insertions(+), 0 deletions(-)
---
diff --git a/perl-rpm-build-perl.spec b/perl-rpm-build-perl.spec
index d729aa5..269776a 100644
--- a/perl-rpm-build-perl.spec
+++ b/perl-rpm-build-perl.spec
@@ -8,6 +8,8 @@ Group:  Development/Libraries
 Summary:Perl compiler back-end to extract Perl dependencies 
 Url:http://search.cpan.org/dist/rpm-build-perl
 Source: 
http://search.cpan.org/CPAN/authors/id/A/AT/ATOURBIN/rpm-build-perl-%{version}.tar.gz
 
+# Perl 5.18 compatibility, CPAN RT#85411
+Patch0: 
rpm-build-perl-0.82-Fix-non-deterministic-failures-on-newer-perls.patch
 BuildRequires:  perl(ExtUtils::MakeMaker) 
 # Run-time
 BuildRequires:  perl(B)
@@ -50,6 +52,7 @@ The provides/requires scripts packaged along with 
perl-rpm-build-perl.
 
 %prep
 %setup -q -n rpm-build-perl-%{version}
+%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -75,6 +78,7 @@ make test
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.82-3
 - Perl 5.18 rebuild
+- Perl 5.18 compatibility (CPAN RT#85411)
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.82-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
diff --git 
a/rpm-build-perl-0.82-Fix-non-deterministic-failures-on-newer-perls.patch 
b/rpm-build-perl-0.82-Fix-non-deterministic-failures-on-newer-perls.patch
new file mode 100644
index 000..21aa35e
--- /dev/null
+++ b/rpm-build-perl-0.82-Fix-non-deterministic-failures-on-newer-perls.patch
@@ -0,0 +1,35 @@
+From 428c3feac1e9c39f966cc66c36cc3881d202177c Mon Sep 17 00:00:00 2001
+From: Niko Tyni nt...@debian.org
+Date: Sat, 18 May 2013 09:41:47 +0300
+Subject: [PATCH] Fix non-deterministic failures on newer perls
+
+The hash randomization changes in the Perl 5.17 series
+made perl.req to occasionally fail to report the dependencies.
+
+Improved diagnostics report
+
+ Use of each() on hash after insertion without resetting hash
+ iterator results in undefined behavior, Perl interpreter: 0x9e7010 at
+ /home/niko/tmp/libb-perlreq-perl-0.82/blib/lib/B/Walker.pm line 122.
+
+so use keys() instead of each(), as suggested by perldiag.pod.
+---
+ lib/B/Walker.pm |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/B/Walker.pm b/lib/B/Walker.pm
+index b71f204..f626043 100644
+--- a/lib/B/Walker.pm
 b/lib/B/Walker.pm
+@@ -119,7 +119,7 @@ sub walk_gv ($) {
+ sub walk_stash ($$);
+ sub walk_stash ($$) { # similar to B::walksymtable
+   my ($symref, $prefix) = @_;
+-  while (my ($sym) = each %$symref) {
++  for my $sym (keys %$symref) {
+   no strict 'refs';
+   my $fullname = *main::. $prefix . $sym;
+   if ($sym =~ /::\z/) {
+-- 
+1.7.10.4
+
--
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-XML-LibXSLT] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit c6f0a3a78078ad89a9f0a0b2048cb850149dbf48
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:51:55 2013 +0200

Perl 5.18 rebuild

 perl-XML-LibXSLT.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-LibXSLT.spec b/perl-XML-LibXSLT.spec
index 9385da3..994c499 100644
--- a/perl-XML-LibXSLT.spec
+++ b/perl-XML-LibXSLT.spec
@@ -1,7 +1,7 @@
 Name:  perl-XML-LibXSLT
 # NOTE: also update perl-XML-LibXML to a compatible version.  See below why.
 Version:   1.80
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   Perl module for interfacing to GNOME's libxslt
 Group: Development/Libraries
 License:   GPL+ or Artistic
@@ -55,6 +55,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.80-2
+- Perl 5.18 rebuild
+
 * Thu Jan 24 2013 Petr Šabata con...@redhat.com - 1.80-1
 - 1.80 bump
 
--
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-CGI-Application-Plugin-DBIProfile] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit fed805993e162a36803e3a729e3f0875840d6d6c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:51:54 2013 +0200

Perl 5.18 rebuild

 perl-CGI-Application-Plugin-DBIProfile.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Application-Plugin-DBIProfile.spec 
b/perl-CGI-Application-Plugin-DBIProfile.spec
index a773e63..6e00ab1 100644
--- a/perl-CGI-Application-Plugin-DBIProfile.spec
+++ b/perl-CGI-Application-Plugin-DBIProfile.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Application-Plugin-DBIProfile
 Version:0.07
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:DBI profiling plugin
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/CGI-Application-Plugin-DBIProfile/
@@ -46,6 +46,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.07-11
+- Perl 5.18 rebuild
+
 * Sun May 19 2013 Emmanuel Seyman emman...@seyman.fr - 0.07-10
 - Remove no-longer-needed macros
 
--
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-MultiValue] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit c9fcdd9126b498665c06903c843eff264332951c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:51:52 2013 +0200

Perl 5.18 rebuild

 perl-Hash-MultiValue.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Hash-MultiValue.spec b/perl-Hash-MultiValue.spec
index 54adbce..a4ec3ab 100644
--- a/perl-Hash-MultiValue.spec
+++ b/perl-Hash-MultiValue.spec
@@ -1,7 +1,7 @@
 Name:   perl-Hash-MultiValue
 Summary:Store multiple values per key
 Version:0.14
-Release:1%{?dist}
+Release:2%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/Hash-MultiValue-%{version}.tar.gz
 
@@ -55,6 +55,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.14-2
+- Perl 5.18 rebuild
+
 * Tue May 28 2013 Robin Lee cheese...@fedoraproject.org - 0.14-1
 - Update to 0.14
 - Use Build.PL
--
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-Eval-Closure] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 8e90da6bc4f77fd1f4983bf53fa0daa6dcf4e61b
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:51:52 2013 +0200

Perl 5.18 rebuild

 perl-Eval-Closure.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Eval-Closure.spec b/perl-Eval-Closure.spec
index a0cfdb6..62761b7 100644
--- a/perl-Eval-Closure.spec
+++ b/perl-Eval-Closure.spec
@@ -1,6 +1,6 @@
 Name:   perl-Eval-Closure
 Version:0.08
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Safely and cleanly create closures via string eval
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.08-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.08-4
 - 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-HTML-FromText] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 0e7cdc55e6ddcf37b891213bb25891340090afb3
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:51:53 2013 +0200

Perl 5.18 rebuild

 perl-HTML-FromText.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-FromText.spec b/perl-HTML-FromText.spec
index 0f6d413..cc1179e 100644
--- a/perl-HTML-FromText.spec
+++ b/perl-HTML-FromText.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-FromText
 Version:2.06
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Convert plain text to HTML
 License:GPL+ or Artistic
 
@@ -55,6 +55,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 2.06-2
+- Perl 5.18 rebuild
+
 * Sun Jul 07 2013 Emmanuel Seyman emman...@seyman.fr - 2.06-1
 - Update to 2.06
 - Drop no-longer-used macros
--
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-HTML-Tree] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e387d0f08602514e9baa2ec423b3781894b3cefb
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 10:58:56 2013 +0200

Perl 5.18 rebuild

 perl-HTML-Tree.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-Tree.spec b/perl-HTML-Tree.spec
index 7d2a3ce..7430fde 100644
--- a/perl-HTML-Tree.spec
+++ b/perl-HTML-Tree.spec
@@ -1,7 +1,7 @@
 Name:   perl-HTML-Tree
 Epoch:  1
 Version:5.03
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:HTML tree handling modules for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -64,6 +64,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/HTML::*3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1:5.03-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:5.03-2
 - 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-DBD-XBase] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 28acfa78122e37710872df0aec28c4483099bab7
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:00:41 2013 +0200

Perl 5.18 rebuild

 perl-DBD-XBase.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-XBase.spec b/perl-DBD-XBase.spec
index 1c3054d..043db97 100644
--- a/perl-DBD-XBase.spec
+++ b/perl-DBD-XBase.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-XBase
 Version:1.03
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Perl module for reading and writing the dbf files
 
 Group:  Development/Libraries
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.03-6
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.03-5
 - 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-ZeroMQ] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 4880dbb6168adfb47943ff06aa64122f548a1a0c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:01:29 2013 +0200

Perl 5.18 rebuild

 perl-ZeroMQ.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-ZeroMQ.spec b/perl-ZeroMQ.spec
index 5f38e89..0b70356 100644
--- a/perl-ZeroMQ.spec
+++ b/perl-ZeroMQ.spec
@@ -1,6 +1,6 @@
 Name:   perl-ZeroMQ
 Version:0.23
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:ZeroMQ2 wrapper for Perl
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.23-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.23-2
 - 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-DBD-MySQL] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 86648fcf8feb4b699f883f5fc58ab2845550f395
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:06:57 2013 +0200

Perl 5.18 rebuild

 perl-DBD-MySQL.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-MySQL.spec b/perl-DBD-MySQL.spec
index a07af38..08fe3d8 100644
--- a/perl-DBD-MySQL.spec
+++ b/perl-DBD-MySQL.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-MySQL
 Version:4.023
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:A MySQL interface for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ find %{buildroot} -type f -name '*.bs' -empty -exec rm -f {} 
';'
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 4.023-3
+- Perl 5.18 rebuild
+
 * Mon Apr 29 2013 Petr Šabata con...@redhat.com - 4.023-2
 - Force MariaDB dependency as a workaround for f19 compose
 
--
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-XML-XPath] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 7733fef597f21182e1e0f78a1fe44d17b140ce1c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:08:48 2013 +0200

Perl 5.18 rebuild

 perl-XML-XPath.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-XPath.spec b/perl-XML-XPath.spec
index 1408764..61cc940 100644
--- a/perl-XML-XPath.spec
+++ b/perl-XML-XPath.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-XPath
 Version:1.13
-Release:22%{?dist}
+Release:23%{?dist}
 
 Summary:XPath parser and evaluator for Perl
 
@@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.13-23
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.13-22
 - 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-ZMQ-LibZMQ2] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit f636c76ea975f6aad7d75e34abe1d6c9cef1350e
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:09:15 2013 +0200

Perl 5.18 rebuild

 perl-ZMQ-LibZMQ2.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-ZMQ-LibZMQ2.spec b/perl-ZMQ-LibZMQ2.spec
index 8439fee..40129b0 100644
--- a/perl-ZMQ-LibZMQ2.spec
+++ b/perl-ZMQ-LibZMQ2.spec
@@ -1,6 +1,6 @@
 Name:   perl-ZMQ-LibZMQ2
 Version:1.07
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl wrapper for the libzmq 2.x library
 
 License:GPL+ or Artistic
@@ -58,6 +58,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.07-2
+- Perl 5.18 rebuild
+
 * Sun Mar  3 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.07-1
 - Update to version 1.07
 
--
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-OAI] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e0b5ca9205cbf114a2cd749ac2507f0ee4e501d0
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:12:47 2013 +0200

Perl 5.18 rebuild

 perl-HTTP-OAI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-OAI.spec b/perl-HTTP-OAI.spec
index 3744c92..6fd08a7 100644
--- a/perl-HTTP-OAI.spec
+++ b/perl-HTTP-OAI.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-OAI
 Version:3.27
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:API for the OAI-PMH
 License:BSD
 Group:  Development/Libraries
@@ -50,6 +50,9 @@ make test
 %{_mandir}/man3/*
 %{_mandir}/man1/*
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 3.27-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.27-4
 - 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-DBD-SQLite] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 706659a7f13368d27d1616bdd193d3491797c537
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:14:38 2013 +0200

Perl 5.18 rebuild

 perl-DBD-SQLite.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-SQLite.spec b/perl-DBD-SQLite.spec
index 9fc2410..e674cc8 100644
--- a/perl-DBD-SQLite.spec
+++ b/perl-DBD-SQLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-SQLite
 Version:1.39
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:SQLite DBI Driver
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -66,6 +66,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.39-2
+- Perl 5.18 rebuild
+
 * Mon Jun 10 2013 Jitka Plesnikova jples...@redhat.com - 1.39-1
 - 1.39 bump
 - Use DESTDIR rather than PERL_INSTALL_ROOT
--
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-HTML-GenToc] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 7a988e3e9db75afa35eabd3d009b5691e0ac3384
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:14:14 2013 +0200

Perl 5.18 rebuild

 perl-HTML-GenToc.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-GenToc.spec b/perl-HTML-GenToc.spec
index 940b9be..55f2ca2 100644
--- a/perl-HTML-GenToc.spec
+++ b/perl-HTML-GenToc.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-GenToc
 Version:3.20
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Generate a Table of Contents for HTML documents
 License:GPLv2+
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 3.20-7
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.20-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-File-ShareDir-PAR] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 9329ef12b95d09dbb33302fd1443eee63274741d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:15:04 2013 +0200

Perl 5.18 rebuild

 perl-File-ShareDir-PAR.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-File-ShareDir-PAR.spec b/perl-File-ShareDir-PAR.spec
index d4573e6..02defc0 100644
--- a/perl-File-ShareDir-PAR.spec
+++ b/perl-File-ShareDir-PAR.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-ShareDir-PAR
 Version:0.06
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:File::ShareDir with PAR support
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.06-11
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.06-10
 - 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-Apache-Session] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 747eb71a761ac5b88f0b06a92c411b55a24e1441
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:15:25 2013 +0200

Perl 5.18 rebuild

 perl-Apache-Session.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Apache-Session.spec b/perl-Apache-Session.spec
index e00c801..aead7d6 100644
--- a/perl-Apache-Session.spec
+++ b/perl-Apache-Session.spec
@@ -1,6 +1,6 @@
 Name:   perl-Apache-Session
 Version:1.89
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Persistence framework for session data
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.89-9
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.89-8
 - 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-Test-Smoke] find-debuginfo.sh pollutes build directory with more files now

2013-07-24 Thread Petr Pisar
commit a2a07c3551cbbede215656b4d28f14040d3f2f8d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:15:58 2013 +0200

find-debuginfo.sh pollutes build directory with more files now

 perl-Test-Smoke.spec |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Smoke.spec b/perl-Test-Smoke.spec
index 3ff72a2..c81949a 100644
--- a/perl-Test-Smoke.spec
+++ b/perl-Test-Smoke.spec
@@ -42,7 +42,7 @@ results into an easy to read report.
 %prep
 %setup -q -n Test-Smoke-%{version}
 # Ignore output files from find-debuginfo.sh to fix the test 00-manifest.t
-echo 'debug.+\.list'  MANIFEST.SKIP
+echo '.+\.list'  MANIFEST.SKIP
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
@@ -79,6 +79,7 @@ make test
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.59-2
 - Perl 5.18 rebuild
+- find-debuginfo.sh pollutes build directory with more files now
 
 * Mon May 06 2013 Jitka Plesnikova jples...@redhat.com - 1.59-1
 - 1.59 bump, bug-fix release
--
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-Authen-CAS-Client] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 37b3c4cd83247e03c5dc95a7fab7df9ced69f806
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:19:48 2013 +0200

Perl 5.18 rebuild

 perl-Authen-CAS-Client.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Authen-CAS-Client.spec b/perl-Authen-CAS-Client.spec
index cab259b..27045db 100644
--- a/perl-Authen-CAS-Client.spec
+++ b/perl-Authen-CAS-Client.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-CAS-Client
 Version:0.06
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Interface for authentication via JA-SIG's Central 
Authentication Service
 License:BSD
 Group:  Development/Libraries
@@ -46,6 +46,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.06-2
+- Perl 5.18 rebuild
+
 * Fri May 31 2013 Nicholas van Oudtshoorn vano...@gmail.com - 0.06-1
 - New upstream release
 
--
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-XML-Simple-DTDReader] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 6255e264533e1e1c8a6f3707215a9c8f96a79f71
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:21:17 2013 +0200

Perl 5.18 rebuild

 perl-XML-Simple-DTDReader.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-Simple-DTDReader.spec b/perl-XML-Simple-DTDReader.spec
index 2917583..fb149a8 100644
--- a/perl-XML-Simple-DTDReader.spec
+++ b/perl-XML-Simple-DTDReader.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-Simple-DTDReader
 Version:0.04
-Release:14%{?dist}
+Release:15%{?dist}
 Summary:Simple XML file reading based on their DTDs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.04-15
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.04-14
 - 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-SQL-Shell] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 1d43e3ef885fa5753256400d902c4bd683e6afc4
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:21:47 2013 +0200

Perl 5.18 rebuild

 perl-SQL-Shell.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-SQL-Shell.spec b/perl-SQL-Shell.spec
index fa1bf77..26b677a 100644
--- a/perl-SQL-Shell.spec
+++ b/perl-SQL-Shell.spec
@@ -1,6 +1,6 @@
 Name:   perl-SQL-Shell 
 Version:1.14 
-Release:13%{?dist}
+Release:14%{?dist}
 # lib/SQL/Shell.pm - GPLv2 (refers to the GPL, bundled COPYING is GPLv2)
 License:GPLv2
 Group:  Development/Libraries
@@ -75,6 +75,9 @@ make test
 %{_mandir}/man1/sqlsh.1.gz
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.14-14
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.14-13
 - 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-XML-DifferenceMarkup] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5b42629beaf68a06ddd13d69d86b5993c71bc5fe
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:22:15 2013 +0200

Perl 5.18 rebuild

 perl-XML-DifferenceMarkup.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-DifferenceMarkup.spec b/perl-XML-DifferenceMarkup.spec
index 91df3f2..0825abb 100644
--- a/perl-XML-DifferenceMarkup.spec
+++ b/perl-XML-DifferenceMarkup.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-DifferenceMarkup
 Version:1.04
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:XML diff and merge
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.04-6
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.04-5
 - 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-XML-Catalog] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5456db13ef0fbf19bf130f8d5ea13991cd2c177d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:25:11 2013 +0200

Perl 5.18 rebuild

 perl-XML-Catalog.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-Catalog.spec b/perl-XML-Catalog.spec
index b75f945..72d5be6 100644
--- a/perl-XML-Catalog.spec
+++ b/perl-XML-Catalog.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-Catalog
 Version:0.02
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Resolve public identifiers and remap system identifiers
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -46,6 +46,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.02-4
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-3
 - 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-Test-Type] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 8fdc2179ef304fcc7fd9a33c327e6165dfbca4e1
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:25:42 2013 +0200

Perl 5.18 rebuild

 perl-Test-Type.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Type.spec b/perl-Test-Type.spec
index 4650dc5..e474eac 100644
--- a/perl-Test-Type.spec
+++ b/perl-Test-Type.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Type
 Version:1.1.2
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Functions to validate data types in test files
 License:GPLv3
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.1.2-2
+- Perl 5.18 rebuild
+
 * Wed May 08 2013 Emmanuel Seyman emman...@seyman.fr - 1.1.2-1
 - Update to 1.1.2
 
--
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-Async-MergePoint] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 3af591c7a4606d1318186040ae19cb72391074ed
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:26:52 2013 +0200

Perl 5.18 rebuild

 perl-Async-MergePoint.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Async-MergePoint.spec b/perl-Async-MergePoint.spec
index 7116ffc..a7ef20b 100644
--- a/perl-Async-MergePoint.spec
+++ b/perl-Async-MergePoint.spec
@@ -1,6 +1,6 @@
 Name:   perl-Async-MergePoint
 Version:0.04
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Resynchronize diverged control flow
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -43,6 +43,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.04-2
+- Perl 5.18 rebuild
+
 * Wed Jun 05 2013 Petr Šabata con...@redhat.com - 0.04-1
 - 0.04 bump
 - Spec cleanup
--
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-CheckDeps] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 77b9b7608c9bb84b5b0a06a77d90bd9fbec8b71a
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:27:52 2013 +0200

Perl 5.18 rebuild

 perl-Test-CheckDeps.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-CheckDeps.spec b/perl-Test-CheckDeps.spec
index e91b266..43b02fd 100644
--- a/perl-Test-CheckDeps.spec
+++ b/perl-Test-CheckDeps.spec
@@ -1,7 +1,7 @@
 Name:  perl-Test-CheckDeps
 Summary:   Check for presence of dependencies
 Version:   0.006
-Release:   1%{?dist}
+Release:   2%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   https://metacpan.org/release/Test-CheckDeps
@@ -48,6 +48,9 @@ RELEASE_TESTING=1 ./Build test
 %{_mandir}/man3/Test::CheckDeps.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.006-2
+- Perl 5.18 rebuild
+
 * Fri Jun 21 2013 Paul Howarth p...@city-fan.org - 0.006-1
 - Update to 0.006
   - Require CPAN::Meta::Check ≥ 0.004
--
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-JSON-Util] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 2e929a02f2d0679077c8e42163e8630ef33a372c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:30:09 2013 +0200

Perl 5.18 rebuild

 perl-JSON-Util.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-JSON-Util.spec b/perl-JSON-Util.spec
index 679709f..dad70ce 100644
--- a/perl-JSON-Util.spec
+++ b/perl-JSON-Util.spec
@@ -1,6 +1,6 @@
 Name:   perl-JSON-Util
 Version:0.05
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Easy and portable encode/decode of JSON
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.05-7
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.05-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-Test-Fixme] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 49d9ee93e5c3f2278e33d84a5c0d5f86c8ca5b86
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:31:55 2013 +0200

Perl 5.18 rebuild

 perl-Test-Fixme.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Fixme.spec b/perl-Test-Fixme.spec
index 3913a64..ebd04ba 100644
--- a/perl-Test-Fixme.spec
+++ b/perl-Test-Fixme.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Fixme
 Version:0.04
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Check code for FIXMEs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.04-7
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.04-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-Net-FTPServer] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit cdb804056c8622cc32c30fc9c49b2b3a95f3e93a
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:32:31 2013 +0200

Perl 5.18 rebuild

 perl-Net-FTPServer.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Net-FTPServer.spec b/perl-Net-FTPServer.spec
index 95b2594..3dd0a0d 100644
--- a/perl-Net-FTPServer.spec
+++ b/perl-Net-FTPServer.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-FTPServer
 Version:1.122
-Release:19%{?dist}
+Release:20%{?dist}
 Summary:Secure, extensible and configurable Perl FTP server
 License:GPLv2+
 Group:  Development/Libraries
@@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_sbindir}/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.122-20
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.122-19
 - 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-XML-Rules] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5ca70d3d6d4f8c79b9254efa5e0bfa25b1e4ac96
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:32:31 2013 +0200

Perl 5.18 rebuild

 perl-XML-Rules.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-Rules.spec b/perl-XML-Rules.spec
index bd2e5ca..8a015ae 100644
--- a/perl-XML-Rules.spec
+++ b/perl-XML-Rules.spec
@@ -1,6 +1,6 @@
 Name:  perl-XML-Rules
 Version:   1.16
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Parse XML and specify what and how to keep/process for 
individual tags
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_bindir}/xml2XMLRules.pl
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.16-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.16-2
 - 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-Boulder] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 2afdf97fcd514a223a2c67eb6ee6bf79bc23301a
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:32:42 2013 +0200

Perl 5.18 rebuild

 perl-Boulder.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Boulder.spec b/perl-Boulder.spec
index 3fee603..b1dc798 100644
--- a/perl-Boulder.spec
+++ b/perl-Boulder.spec
@@ -1,6 +1,6 @@
 Name:   perl-Boulder
 Version:1.30
-Release:17%{?dist}
+Release:18%{?dist}
 Summary:An API for hierarchical tag/value structures
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.30-18
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.30-17
 - 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-Sub-Override] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 567d52a98464c847b631f87599710106116cb140
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:36:57 2013 +0200

Perl 5.18 rebuild

 perl-Sub-Override.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sub-Override.spec b/perl-Sub-Override.spec
index 167432d..5443b61 100644
--- a/perl-Sub-Override.spec
+++ b/perl-Sub-Override.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Override
 Version:0.09
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Perl extension for easily overriding subroutines
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -40,6 +40,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.09-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.09-2
 - 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-experimental] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e5d117560e301b520c418f84e2f933cecf507cf6
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:39:17 2013 +0200

Perl 5.18 rebuild

 perl-experimental.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-experimental.spec b/perl-experimental.spec
index 0fa2246..3743c72 100644
--- a/perl-experimental.spec
+++ b/perl-experimental.spec
@@ -1,6 +1,6 @@
 Name:   perl-experimental
 Version:0.005
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Experimental features made easy
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -47,6 +47,9 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.005-2
+- Perl 5.18 rebuild
+
 * Mon Jun 10 2013 Petr Pisar ppi...@redhat.com - 0.005-1
 - 0.005 bump
 
--
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-POE-Component-SimpleDBI] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit cf876536a09b16fe904fcd4fc0ed2849a1769e66
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:39:05 2013 +0200

Perl 5.18 rebuild

 perl-POE-Component-SimpleDBI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-POE-Component-SimpleDBI.spec 
b/perl-POE-Component-SimpleDBI.spec
index aba2c38..f2008c6 100644
--- a/perl-POE-Component-SimpleDBI.spec
+++ b/perl-POE-Component-SimpleDBI.spec
@@ -1,6 +1,6 @@
 Name:   perl-POE-Component-SimpleDBI
 Version:1.30
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Asynchronous non-blocking DBI calls in POE made simple
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -50,6 +50,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.30-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.30-4
 - 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-ZMQ-LibZMQ3] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5f6668c3a91db02f248f0ee90dde6951aaacb81e
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:39:28 2013 +0200

Perl 5.18 rebuild

 perl-ZMQ-LibZMQ3.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-ZMQ-LibZMQ3.spec b/perl-ZMQ-LibZMQ3.spec
index e0520ef..6edf1f2 100644
--- a/perl-ZMQ-LibZMQ3.spec
+++ b/perl-ZMQ-LibZMQ3.spec
@@ -1,6 +1,6 @@
 Name:   perl-ZMQ-LibZMQ3
 Version:1.13
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl wrapper for the libzmq 3.x library
 
 License:GPL+ or Artistic
@@ -59,6 +59,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.13-2
+- Perl 5.18 rebuild
+
 * Wed Jun 19 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.13-1
 - Update to version 1.13
 
--
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-Frontier-RPC] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 026f3bf2d8e99ebd9eed19c02a0460387804f330
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:41:33 2013 +0200

Perl 5.18 rebuild

 perl-Frontier-RPC.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Frontier-RPC.spec b/perl-Frontier-RPC.spec
index 317a526..dcc9776 100644
--- a/perl-Frontier-RPC.spec
+++ b/perl-Frontier-RPC.spec
@@ -1,7 +1,7 @@
 Summary:A Perl interface for making and serving XML-RPC calls
 Name:   perl-Frontier-RPC
 Version:0.07b4p1
-Release:17%{?dist}
+Release:18%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Frontier-RPC/
@@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.07b4p1-18
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07b4p1-17
 - 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-DBD-SQLite2] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit d0ed16b440503106aa4a929ab036697daa1ae4f8
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:42:02 2013 +0200

Perl 5.18 rebuild

 perl-DBD-SQLite2.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-SQLite2.spec b/perl-DBD-SQLite2.spec
index cd45ae2..9cacd30 100644
--- a/perl-DBD-SQLite2.spec
+++ b/perl-DBD-SQLite2.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-SQLite2
 Version:0.33
-Release:22%{?dist}
+Release:23%{?dist}
 Summary:Self Contained RDBMS in a DBI Driver (sqlite 2.x)
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -55,6 +55,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.33-23
+- Perl 5.18 rebuild
+
 * Fri Mar 01 2013 Ralf Corsépius corse...@fedoraproject.org - 0.33-22
 - Add BR: perl(ExtUtils::MakeMaker) (Fix FTBFS #914266)
 - Modernize spec.
--
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-Implementation] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit c0b65b5b1c805879760a83ef85f116cd310bb37c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:46:01 2013 +0200

Perl 5.18 rebuild

 perl-Module-Implementation.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Module-Implementation.spec b/perl-Module-Implementation.spec
index 46d7c8f..33edec1 100644
--- a/perl-Module-Implementation.spec
+++ b/perl-Module-Implementation.spec
@@ -9,7 +9,7 @@
 
 Name:  perl-Module-Implementation
 Version:   0.07
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   Loads one of several alternate underlying implementations for a 
module
 Group: Development/Libraries
 License:   Artistic 2.0
@@ -111,6 +111,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Module::Implementation.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.07-2
+- Perl 5.18 rebuild
+
 * Mon Jul 15 2013 Paul Howarth p...@city-fan.org - 0.07-1
 - Update to 0.07
   - Require Test::Fatal ≥ 0.006 to avoid test failures (CPAN RT#76809)
--
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-Devel-Refcount] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit d20b6d3516dae8fac674967189ca89af067463c7
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:47:42 2013 +0200

Perl 5.18 rebuild

 perl-Devel-Refcount.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Devel-Refcount.spec b/perl-Devel-Refcount.spec
index 85642a0..fa723cd 100644
--- a/perl-Devel-Refcount.spec
+++ b/perl-Devel-Refcount.spec
@@ -1,6 +1,6 @@
 Name:   perl-Devel-Refcount
 Version:0.10
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Obtain the REFCNT value of a referent
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.10-2
+- Perl 5.18 rebuild
+
 * Wed Jun  5 2013 Robin Lee cheese...@fedoraproject.org - 0.10-1
 - Update to 0.10
 
--
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-Font-TTF] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit b2f6380b1a685774424319a412382b78013b1e63
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:48:46 2013 +0200

Perl 5.18 rebuild

 perl-Font-TTF.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Font-TTF.spec b/perl-Font-TTF.spec
index fda803a..1c9da90 100644
--- a/perl-Font-TTF.spec
+++ b/perl-Font-TTF.spec
@@ -1,6 +1,6 @@
 Name:  perl-Font-TTF
 Version:   1.02
-Release:   3%{?dist}
+Release:   4%{?dist}
 Summary:   Perl library for modifying TTF font files
 Group: Development/Libraries
 License:   Artistic 2.0
@@ -60,6 +60,9 @@ make test
 %exclude %{perl_vendorlib}/Font/TTF/Win32.pm
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.02-4
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.02-3
 - 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-DBD-Mock] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 71ff0fe5961495fbebf572ae0a5346c9f327d512
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:49:43 2013 +0200

Perl 5.18 rebuild

 perl-DBD-Mock.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-Mock.spec b/perl-DBD-Mock.spec
index 07a70a9..2efa1b9 100644
--- a/perl-DBD-Mock.spec
+++ b/perl-DBD-Mock.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-Mock
 Version:1.45
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Mock database driver for testing
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -56,6 +56,9 @@ find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.45-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.45-2
 - 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-POE-Component-DBIAgent] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e73845ad727740f8a097888dfcd9d8063da42914
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:49:56 2013 +0200

Perl 5.18 rebuild

 perl-POE-Component-DBIAgent.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-POE-Component-DBIAgent.spec b/perl-POE-Component-DBIAgent.spec
index d8bc52f..ce027d4 100644
--- a/perl-POE-Component-DBIAgent.spec
+++ b/perl-POE-Component-DBIAgent.spec
@@ -1,6 +1,6 @@
 Name:   perl-POE-Component-DBIAgent
 Version:0.26
-Release:14%{?dist}
+Release:15%{?dist}
 Summary:POE Component for running asynchronous DBI calls
 # see tail of DBIAgent.pm
 License:GPL+ or Artistic
@@ -57,6 +57,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.26-15
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.26-14
 - 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-DBD-Pg] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 29def266effbb9a4ef266f1f35dbc673eb5812cc
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 11:51:22 2013 +0200

Perl 5.18 rebuild

 perl-DBD-Pg.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-Pg.spec b/perl-DBD-Pg.spec
index 00a25ac..885a4c7 100644
--- a/perl-DBD-Pg.spec
+++ b/perl-DBD-Pg.spec
@@ -1,7 +1,7 @@
 Name:   perl-DBD-Pg
 Summary:A PostgreSQL interface for perl
 Version:2.19.3
-Release:3%{?dist}
+Release:4%{?dist}
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/T/TU/TURNSTEP/DBD-Pg-%{version}.tar.gz 
@@ -87,6 +87,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 2.19.3-4
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.19.3-3
 - 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-DBI-Dumper] Perl 5.18 compatibility

2013-07-24 Thread Petr Pisar
commit 4dc5d89cbde536c8bb04667127417b1e5daaf84c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 12:13:44 2013 +0200

Perl 5.18 compatibility

 ...mper-2.01-qw-does-not-produce-parentheses.patch |   31 
 perl-DBI-Dumper.spec   |4 ++
 2 files changed, 35 insertions(+), 0 deletions(-)
---
diff --git a/DBI-Dumper-2.01-qw-does-not-produce-parentheses.patch 
b/DBI-Dumper-2.01-qw-does-not-produce-parentheses.patch
new file mode 100644
index 000..22fe9d9
--- /dev/null
+++ b/DBI-Dumper-2.01-qw-does-not-produce-parentheses.patch
@@ -0,0 +1,31 @@
+From 760445e637138c55ec7027b0b087e72dc5ba1880 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 12:09:22 +0200
+Subject: [PATCH] qw does not produce parentheses
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+https://rt.cpan.org/Public/Bug/Display.html?id=87243
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ lib/DBI/Dumper.pm | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/DBI/Dumper.pm b/lib/DBI/Dumper.pm
+index 3335028..abf7a10 100644
+--- a/lib/DBI/Dumper.pm
 b/lib/DBI/Dumper.pm
+@@ -322,7 +322,7 @@ sub execute {
+   ? $start_line_num + $self-{export} : undef;
+ 
+   # make sure variables are set to something
+-  for my $var qw(left_delim right_delim escape terminator) {
++  for my $var (qw(left_delim right_delim escape terminator)) {
+   $self-{$var} = defined $self-{$var} ? $self-{$var} : '';
+   }
+ 
+-- 
+1.8.1.4
+
diff --git a/perl-DBI-Dumper.spec b/perl-DBI-Dumper.spec
index 3161c3d..1295151 100644
--- a/perl-DBI-Dumper.spec
+++ b/perl-DBI-Dumper.spec
@@ -7,6 +7,8 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/DBI-Dumper/
 Source0:
http://www.cpan.org/authors/id/W/WS/WSMITH/DBI-Dumper-%{version}.tar.gz
+# Perl 5.18 compatibility, CPAN RT#87243
+Patch0: DBI-Dumper-2.01-qw-does-not-produce-parentheses.patch
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 # core
@@ -33,6 +35,7 @@ sql*loader options.
 
 %prep
 %setup -q -n DBI-Dumper-%{version}
+%patch0 -p1
 
 # include some licensing information from the rt.cpan.org bug, as it's
 # not yet included in the package proper
@@ -84,6 +87,7 @@ make test
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 2.01-21
 - Perl 5.18 rebuild
+- Perl 5.18 compatibility (CPAN RT#87243)
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.01-20
 - 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-SQL-Shell] Perl 5.18 compatibility

2013-07-24 Thread Petr Pisar
commit 163b1163b826c36c2cf3779a8185d28c3040fee7
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 12:25:18 2013 +0200

Perl 5.18 compatibility

 ...8-does-add-parentheses-around-qw-operator.patch |   38 
 perl-SQL-Shell.spec|4 ++
 2 files changed, 42 insertions(+), 0 deletions(-)
---
diff --git 
a/SQL-Shell-1.14-Perl-5.18-does-add-parentheses-around-qw-operator.patch 
b/SQL-Shell-1.14-Perl-5.18-does-add-parentheses-around-qw-operator.patch
new file mode 100644
index 000..cc4ca21
--- /dev/null
+++ b/SQL-Shell-1.14-Perl-5.18-does-add-parentheses-around-qw-operator.patch
@@ -0,0 +1,38 @@
+From 755a98485c2e1de3c94b005e8ec09eca013b441e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Wed, 24 Jul 2013 12:23:05 +0200
+Subject: [PATCH] Perl 5.18 does add parentheses around qw operator
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+https://rt.cpan.org/Public/Bug/Display.html?id=87245
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ t/SQL-Shell.t | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/t/SQL-Shell.t b/t/SQL-Shell.t
+index 3f23835..7310e58 100644
+--- a/t/SQL-Shell.t
 b/t/SQL-Shell.t
+@@ -72,7 +72,7 @@ $output = execute($sqlsh, set rubbish on);
+ ASSERT(scalar $output =~ /Unknown parameter 'rubbish' for set command/s, 
trap invalid param);
+ 
+ #Invalid param values
+-for my $param qw(tracing display-mode log-mode escape enter-whitespace width 
longreadlen longtruncok auto-commit multiline) {
++for my $param (qw(tracing display-mode log-mode escape enter-whitespace width 
longreadlen longtruncok auto-commit multiline)) {
+   $output = execute($sqlsh, set $param rubbish);
+   ASSERT(scalar $output =~ /'rubbish' is an invalid value/s, trap 
invalid value for $param);
+ }
+@@ -258,4 +258,4 @@ sub renderer {
+   {   
+   print $fh join($delim, @$row).:;
+   }   
+-}
+\ No newline at end of file
++}
+-- 
+1.8.1.4
+
diff --git a/perl-SQL-Shell.spec b/perl-SQL-Shell.spec
index 26b677a..acc6d4c 100644
--- a/perl-SQL-Shell.spec
+++ b/perl-SQL-Shell.spec
@@ -6,6 +6,8 @@ License:GPLv2
 Group:  Development/Libraries
 Summary:Command interpreter for DBI shells 
 Source: 
http://search.cpan.org/CPAN/authors/id/B/BB/BBC/SQL-Shell-%{version}.tar.gz 
+# Perl 5.18 compatibility, CPAN RT#87245
+Patch0: 
SQL-Shell-1.14-Perl-5.18-does-add-parentheses-around-qw-operator.patch
 Url:http://search.cpan.org/dist/SQL-Shell
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 BuildArch:  noarch
@@ -50,6 +52,7 @@ See the SQL::Shell::Manual manpage for a user guide.
 
 %prep
 %setup -q -n SQL-Shell-%{version}
+%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -77,6 +80,7 @@ make test
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.14-14
 - Perl 5.18 rebuild
+- Perl 5.18 compatibility (CPAN RT#87245)
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.14-13
 - 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

[Bug 870406] CVE-2012-4730 CVE-2012-4732 CVE-2012-4734 CVE-2012-4735 CVE-2012-4884 rt3: Multiple flaws fixed in upstream 3.8.15 version

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=870406

Jan Lieskovsky jlies...@redhat.com changed:

   What|Removed |Added

  Alias||CVE-2012-6578,
   ||CVE-2012-6579,
   ||CVE-2012-6580,
   ||CVE-2012-6581

--- Comment #3 from Jan Lieskovsky jlies...@redhat.com ---
The CVE-2012-4735 identifier has been rejected in favour of: CVE-2012-6578,
CVE-2012-6579, CVE-2012-6580, and CVE-2012-6581:

==
Name: CVE-2012-4735

** REJECT **

DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2012-6578,
CVE-2012-6579, CVE-2012-6580, CVE-2012-6581. Reason: This candidate
is a duplicate of CVE-2012-6578, CVE-2012-6579, CVE-2012-6580, and
CVE-2012-6581. Notes: All CVE users should reference one or more of
CVE-2012-6578, CVE-2012-6579, CVE-2012-6580, and CVE-2012-6581
instead of this candidate. All references and descriptions in this
candidate have been removed to prevent accidental usage.

==

with CVE-2012-6578, CVE-2012-6579, CVE-2012-6580, and CVE-2012-6581 description
being as follows:

==

* CVE-2012-6578:
Best Practical Solutions RT 3.8.x before 3.8.15 and 4.0.x before 4.0.8, when
GnuPG is enabled with a Sign by default queue configuration, uses a queue's
key for signing, which might allow remote attackers to spoof messages by 
leveraging the lack of authentication semantics.

References:
http://lists.bestpractical.com/pipermail/rt-announce/2012-October/000212.html
==

* CVE-2012-6579:
Best Practical Solutions RT 3.8.x before 3.8.15 and 4.0.x before 4.0.8, when
GnuPG is enabled, allows remote attackers to configure encryption or signing
for certain outbound e-mail, and possibly cause a denial of service (loss of
e-mail readability), via an e-mail message to a queue's address.

References:
http://lists.bestpractical.com/pipermail/rt-announce/2012-October/000212.html
==

* CVE-2012-6580:
Best Practical Solutions RT 3.8.x before 3.8.15 and 4.0.x before 4.0.8, when
GnuPG is enabled, does not ensure that the UI labels unencrypted messages as
unencrypted, which might make it easier for remote attackers to spoof details
of a message's origin or interfere with encryption-policy auditing via an
e-mail message to a queue's address.

References:
http://lists.bestpractical.com/pipermail/rt-announce/2012-October/000212.html
==

* CVE-2012-6581:
Best Practical Solutions RT 3.8.x before 3.8.15 and 4.0.x before 4.0.8, when
GnuPG is enabled, allows remote attackers to bypass intended restrictions on
reading keys in the product's keyring, and trigger outbound e-mail messages
signed by an arbitrary stored secret key, by leveraging a UI e-mail signing
privilege.

References:
http://lists.bestpractical.com/pipermail/rt-announce/2012-October/000212.html

-- 
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=h0BltmVPUya=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 981277] Dependency chain brings in X11

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=981277

Paul Howarth p...@city-fan.org changed:

   What|Removed |Added

 CC||p...@city-fan.org

--- Comment #6 from Paul Howarth p...@city-fan.org ---
Curious. A scratch build of my local perl-Net-Server package succeeded:

http://koji.fedoraproject.org/koji/taskinfo?taskID=5650875

I'll see if I can figure out the difference.

-- 
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=4dzoRiy2lKa=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-Net-FTPServer] Specify all dependencies

2013-07-24 Thread Petr Pisar
commit 51dc3bcf4088fba958568afe6b368aaa9615e737
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 13:04:05 2013 +0200

Specify all dependencies

 perl-Net-FTPServer.spec |   55 ++
 1 files changed, 45 insertions(+), 10 deletions(-)
---
diff --git a/perl-Net-FTPServer.spec b/perl-Net-FTPServer.spec
index 3dd0a0d..b4c1af2 100644
--- a/perl-Net-FTPServer.spec
+++ b/perl-Net-FTPServer.spec
@@ -11,24 +11,58 @@ Source0:
http://www.cpan.org/authors/id/R/RW/RWMJ/Net-FTPServer-%{version
 Patch0: Net-FTPServer.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
-BuildRequires:  perl(Archive::Zip)
-BuildRequires:  perl(Authen::PAM)
-BuildRequires:  perl(BSD::Resource)
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  %{_bindir}/iconv
+# Run-time:
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Carp::Heavy)
-BuildRequires:  perl(Compress::Zlib)
+BuildRequires:  perl(Config)
 BuildRequires:  perl(DBI)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(File::Sync)
+BuildRequires:  perl(Errno)
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(FileHandle)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(Getopt::Long)
+BuildRequires:  perl(IO::Dir)
+BuildRequires:  perl(IO::File)
 BuildRequires:  perl(IO::Scalar) = 1.126
-BuildRequires:  /usr/bin/uudecode
-BuildRequires:  /usr/bin/compress
-BuildRequires:  /usr/bin/iconv
+BuildRequires:  perl(IO::Seekable)
+BuildRequires:  perl(IO::Select)
+BuildRequires:  perl(IO::Socket)
+BuildRequires:  perl(IPC::Open2)
+BuildRequires:  perl(Net::FTP)
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(Socket)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Sys::Hostname)
+BuildRequires:  perl(Sys::Syslog)
+BuildRequires:  perl(vars)
+# Optional run-time:
+BuildRequires:  perl(Archive::Zip)
+BuildRequires:  perl(Authen::PAM)
+BuildRequires:  perl(BSD::Resource)
+BuildRequires:  perl(Digest::MD5)
+BuildRequires:  perl(File::Sync)
+# Tests:
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IO::Socket::INET)
+BuildRequires:  perl(Test)
+# Optional tests:
+BuildRequires:  perl(Compress::Zlib)
+BuildRequires:  %{_bindir}/uudecode
+BuildRequires:  %{_bindir}/compress
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+# Optional run-time:
+Requires:   perl(Archive::Zip)
 Requires:   perl(Authen::PAM)
 Requires:   perl(BSD::Resource)
+Requires:   perl(Digest::MD5)
 Requires:   perl(File::Sync)
 Requires:   perl(IO::Scalar) = 1.126
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+# Filter under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(IO::Scalar\\)$
 
 %description
 Net::FTPServer is a secure, extensible and configurable FTP server
@@ -99,6 +133,7 @@ rm -rf $RPM_BUILD_ROOT
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.122-20
 - Perl 5.18 rebuild
+- Specify all dependencies
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.122-19
 - 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-Net-Server] Update to 2.007

2013-07-24 Thread Paul Howarth
commit dfda0c2676f13429f739eb80eec96a8c2445bceb
Author: Paul Howarth p...@city-fan.org
Date:   Wed Jul 24 12:15:40 2013 +0100

Update to 2.007

- New upstream release 2.007
- BR: perl(Test::More) and perl(Time::HiRes)
- Add various other buildreqs for additional test coverage
- Don't use macros for commands
- Don't need to remove empty directories from the buildroot
- Drop %defattr, redundant since rpm 4.4
- Use DESTDIR rather than PERL_INSTALL_ROOT

 .gitignore |3 +-
 Net-Server-2.007-cert-verify.patch |   24 +++
 perl-Net-Server.spec   |   55 +++
 sources|2 +-
 4 files changed, 62 insertions(+), 22 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b414fa7..ef938ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1 @@
-Net-Server-0.97.tar.gz
-/Net-Server-2.006.tar.gz
+/Net-Server-[0-9.]*.tar.gz
diff --git a/Net-Server-2.007-cert-verify.patch 
b/Net-Server-2.007-cert-verify.patch
new file mode 100644
index 000..ca711f2
--- /dev/null
+++ b/Net-Server-2.007-cert-verify.patch
@@ -0,0 +1,24 @@
+Since 1.950, IO::Socket::SSL-SSL_verify_mode default changed
+from SSL_VERIFY_NONE to SSL_VERIFY_PEER, which breaks this test.
+
+IO::Socket::SSL version 1.31 or later is needed for the
+SSL_VERIFY_NONE constant.
+
+--- t/SSL_test.t
 t/SSL_test.t
+@@ -53,6 +53,7 @@
+ 
+ use_ok qw(Net::Server::Proto::SSL) or exit;
+ require Net::Server;
++use IO::Socket::SSL 1.31;
+ @Net::Server::Test::ISA = qw(Net::Server);
+ 
+ sub accept {
+@@ -76,6 +77,7 @@
+ my $remote = IO::Socket::SSL-new(
+ PeerAddr = $env-{'hostname'},
+ PeerPort = $env-{'ports'}-[0],
++SSL_verify_mode = SSL_VERIFY_NONE,
+ ) || die Couldn't open child to sock: $!;
+ 
+ my $line = $remote;
diff --git a/perl-Net-Server.spec b/perl-Net-Server.spec
index f14da9e..455fc4d 100644
--- a/perl-Net-Server.spec
+++ b/perl-Net-Server.spec
@@ -1,20 +1,29 @@
 Name:   perl-Net-Server
-Version:2.006
-Release:3%{?dist}
+Version:2.007
+Release:1%{?dist}
 Summary:Extensible, general Perl server engine
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Net-Server/
 Source0:
http://www.cpan.org/modules/by-module/Net/Net-Server-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: Net-Server-2.007-cert-verify.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Socket)
-Requires:   perl(Socket)
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
-# IO::Multiplex support is optional, but since it's in Fedora and not
-# including it causes build problems in some packages…
-Requires: perl(IO::Multiplex)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Time::HiRes)
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+
+# Also buildreq various optional modules for test suite
+BuildRequires:  perl(IO::Multiplex) = 1.05
+BuildRequires:  perl(IO::Socket::INET6)
+BuildRequires:  perl(IO::Socket::SSL) = 1.31
+BuildRequires:  perl(Net::SSLeay)
+BuildRequires:  perl(Socket6)
+ 
+# IO::Multiplex support is optional, but not including it causes build 
problems in some packages...
+Requires:   perl(IO::Multiplex) = 1.05
 
 %description
 An extensible, class oriented module written in perl and intended to
@@ -23,21 +32,21 @@ be the back end layer of internet protocol servers.
 %prep
 %setup -q -n Net-Server-%{version}
 
+# Don't attempt to verify a test certificate (CPAN RT#86707)
+%patch0
+
+# Do not want to pull in any packaging deps here.
+chmod -c 644 examples/*
+
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
-# Do not want to pull in any packaging deps here.
-chmod 644 examples/*
 
 %install
 rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+%{_fixperms} $RPM_BUILD_ROOT
 
 %check
 make test
@@ -46,7 +55,6 @@ make test
 rm -rf $RPM_BUILD_ROOT
 
 %files
-%defattr(-,root,root,-)
 %doc Changes README examples
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
@@ -54,6 +62,15 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/net-server.1*
 
 %changelog
+* Wed Jul 24 2013 Paul Howarth p...@city-fan.org - 2.007-1
+- Update to 2.007
+- BR: perl(Test::More) and perl(Time::HiRes)
+- Add various other buildreqs for additional test coverage
+- Don't use macros for commands
+- Don't need to remove empty directories from the buildroot

[perl-Boulder] Specify all dependencies

2013-07-24 Thread Petr Pisar
commit 539fb177827590688b9827fde01091c7ebd7fe42
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 13:23:57 2013 +0200

Specify all dependencies

 perl-Boulder.spec |   26 +++---
 1 files changed, 23 insertions(+), 3 deletions(-)
---
diff --git a/perl-Boulder.spec b/perl-Boulder.spec
index b1dc798..578cb45 100644
--- a/perl-Boulder.spec
+++ b/perl-Boulder.spec
@@ -8,8 +8,26 @@ URL:http://search.cpan.org/dist/Boulder/
 Source0:
http://www.cpan.org/modules/by-module/Boulder/Boulder-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
-BuildRequires:  perl(ExtUtils::MakeMaker), perl(XML::Parser)
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl-Pod-Perldoc
+# Run-time:
+# Bio::Seq is optional
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(CGI)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(DB_File)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(IO::Socket)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Symbol)
+BuildRequires:  perl(vars)
+BuildRequires:  perl(XML::Parser)
+# Tests:
+BuildRequires:  perl(lib)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -20,10 +38,11 @@ does provide the advantage of being language independent.
 
 %prep
 %setup -q -n Boulder-%{version}
-
-%build
 #Uses a non-existent module
 rm Boulder/Labbase.pm
+sed -i -e '/^Boulder\/Labbase.pm/d' MANIFEST
+
+%build
 
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
@@ -58,6 +77,7 @@ rm -rf $RPM_BUILD_ROOT
 %changelog
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.30-18
 - Perl 5.18 rebuild
+- Specify all dependencies
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.30-17
 - 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-Net-Server/f19] (2 commits) ...Update to 2.007

2013-07-24 Thread Paul Howarth
Summary of changes:

  62fc66a... Perl 5.18 rebuild (*)
  dfda0c2... Update to 2.007 (*)

(*) 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-Net-Server] Created tag perl-Net-Server-2.007-1.fc20

2013-07-24 Thread Paul Howarth
The lightweight tag 'perl-Net-Server-2.007-1.fc20' was created pointing to:

 dfda0c2... Update to 2.007
--
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-Net-Server] Created tag perl-Net-Server-2.007-1.fc19

2013-07-24 Thread Paul Howarth
The lightweight tag 'perl-Net-Server-2.007-1.fc19' was created pointing to:

 dfda0c2... Update to 2.007
--
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 981277] Dependency chain brings in X11

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=981277

--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-Server-2.007-1.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/perl-Net-Server-2.007-1.fc19

-- 
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=2y4r0rsju4a=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-Bio-SamTools

2013-07-24 Thread buildsys


perl-Bio-SamTools has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
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-07-24 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.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-PDL

2013-07-24 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
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 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

[perl-App-cpanminus] 1.6927 bump

2013-07-24 Thread Jitka Plesnikova
commit b233c939fcd055c58b0b5ad24a7fd6a15179d817
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Jul 24 16:38:48 2013 +0200

1.6927 bump

 .gitignore  |1 +
 perl-App-cpanminus.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4a09545..8aeb964 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,3 +56,4 @@ App-cpanminus-0.9935.tar.gz
 /App-cpanminus-1.6918.tar.gz
 /App-cpanminus-1.6921.tar.gz
 /App-cpanminus-1.6922.tar.gz
+/App-cpanminus-1.6927.tar.gz
diff --git a/perl-App-cpanminus.spec b/perl-App-cpanminus.spec
index f4fa056..a5675e1 100644
--- a/perl-App-cpanminus.spec
+++ b/perl-App-cpanminus.spec
@@ -1,6 +1,6 @@
 Name:   perl-App-cpanminus
-Version:1.6922
-Release:2%{?dist}
+Version:1.6927
+Release:1%{?dist}
 Summary:Get, unpack, build and install CPAN modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -96,6 +96,9 @@ make test
 %{_bindir}/cpanm
 
 %changelog
+* Wed Jul 24 2013 Jitka Plesnikova jples...@redhat.com - 1.6927-1
+- 1.6927 bump
+
 * Thu Jul 18 2013 Petr Pisar ppi...@redhat.com - 1.6922-2
 - Perl 5.18 rebuild
 
diff --git a/sources b/sources
index 18dbba8..e53215b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1087a9ff1cb57e911026c645c7093010  App-cpanminus-1.6922.tar.gz
+bee6cc117d4ff18e1f7373fd7562473c  App-cpanminus-1.6927.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 App-cpanminus-1.6927.tar.gz uploaded to lookaside cache by jplesnik

2013-07-24 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-App-cpanminus:

bee6cc117d4ff18e1f7373fd7562473c  App-cpanminus-1.6927.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 981398] perl-App-cpanminus-1.6927 is available

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=981398

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-App-cpanminus-1.6927-1
   ||.fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-07-24 11:46:37

-- 
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=EncrNHmci2a=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 983001] perl-XML-LibXSLT-1.81 is available

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=983001

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||jples...@redhat.com
   Assignee|mmasl...@redhat.com |jples...@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=zpLPN2TLc8a=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 XML-LibXSLT-1.81.tar.gz uploaded to lookaside cache by jplesnik

2013-07-24 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-XML-LibXSLT:

a721424c905eca40b1b7af9abe32ff76  XML-LibXSLT-1.81.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-XML-LibXSLT] 1.81 bump

2013-07-24 Thread Jitka Plesnikova
commit b23e82c2f12e59f25b0ebf5fcb1da616d58dc157
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Jul 24 18:50:30 2013 +0200

1.81 bump

 .gitignore|1 +
 perl-XML-LibXSLT.spec |   19 +--
 sources   |2 +-
 3 files changed, 19 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index be281e7..c8e399c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@ XML-LibXSLT-1.70.tar.gz
 /XML-LibXSLT-1.78.tar.gz
 /XML-LibXSLT-1.79.tar.gz
 /XML-LibXSLT-1.80.tar.gz
+/XML-LibXSLT-1.81.tar.gz
diff --git a/perl-XML-LibXSLT.spec b/perl-XML-LibXSLT.spec
index 994c499..28b4cb1 100644
--- a/perl-XML-LibXSLT.spec
+++ b/perl-XML-LibXSLT.spec
@@ -1,18 +1,29 @@
 Name:  perl-XML-LibXSLT
 # NOTE: also update perl-XML-LibXML to a compatible version.  See below why.
-Version:   1.80
-Release:   2%{?dist}
+Version:   1.81
+Release:   1%{?dist}
 Summary:   Perl module for interfacing to GNOME's libxslt
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/XML-LibXSLT/
 Source0:   
http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/XML-LibXSLT-%{version}.tar.gz
+BuildRequires: perl
 BuildRequires: perl(Carp)
+BuildRequires: perl(Config)
+BuildRequires: perl(Cwd)
+BuildRequires: perl(Data::Dumper)
+BuildRequires: perl(Devel::Peek)
 BuildRequires: perl(DynaLoader)
 BuildRequires: perl(Encode)
 BuildRequires: perl(Exporter)
 BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(IO::Socket::INET)
+BuildRequires: perl(strict)
+BuildRequires: perl(Test)
 BuildRequires: perl(Test::More)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
 BuildRequires: libxslt-devel = 1.1.28, gdbm-devel, libgcrypt-devel, 
libgpg-error-devel
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 # the package shares code with perl-XML-LibXML, we have to require a 
compatible version
@@ -55,6 +66,10 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Jitka Plesnikova jples...@redhat.com - 1.81-1
+- 1.81 bump
+- Specify all dependencies
+
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.80-2
 - Perl 5.18 rebuild
 
diff --git a/sources b/sources
index 961a619..1e04139 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bd8d0eaeee311a6dc148963a3f7753c6  XML-LibXSLT-1.80.tar.gz
+a721424c905eca40b1b7af9abe32ff76  XML-LibXSLT-1.81.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 758866] CVE-2011-4363 perl-Proc-ProcessTable: unsafe temporary file usage

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=758866

Vincent Danen vda...@redhat.com changed:

   What|Removed |Added

   Fixed In Version||perl-Proc-ProcessTable 0.48

--- Comment #5 from Vincent Danen vda...@redhat.com ---
This looks to be the fix:

https://github.com/jwbargsten/perl-proc-processtable/commit/89f27a6d47df79b8bdb93781ba3247d7a5123165

And is corrected in upstream version 0.48

-- 
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=4cnMzuxakKa=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 758869] perl-Proc-ProcessTable: unsafe temporary file usage [fedora-all]

2013-07-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=758869

--- Comment #5 from Vincent Danen vda...@redhat.com ---
Rebasing to 0.48 will fix this.

-- 
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=8OllL4MSuza=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-Log-TraceMessages] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 20cccf19083dbe57867e80b79e541011c8c8a9f8
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:00:25 2013 +0200

Perl 5.18 rebuild

 perl-Log-TraceMessages.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Log-TraceMessages.spec b/perl-Log-TraceMessages.spec
index 5517975..b8da1a1 100644
--- a/perl-Log-TraceMessages.spec
+++ b/perl-Log-TraceMessages.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-TraceMessages
 Version:1.4
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:Perl extension for trace messages used in debugging
 
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.4-14
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.4-13
 - 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-B-Hooks-EndOfScope] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 319658d1c92c8804cf2fb389c9593afd5992dc69
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:00:25 2013 +0200

Perl 5.18 rebuild

 perl-B-Hooks-EndOfScope.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-B-Hooks-EndOfScope.spec b/perl-B-Hooks-EndOfScope.spec
index 2d07cbd..3624732 100644
--- a/perl-B-Hooks-EndOfScope.spec
+++ b/perl-B-Hooks-EndOfScope.spec
@@ -1,6 +1,6 @@
 Name:  perl-B-Hooks-EndOfScope
 Version:   0.12
-Release:   2%{?dist}
+Release:   3%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 Summary:   Execute code after scope compilation finishes
@@ -73,6 +73,9 @@ make test RELEASE_TESTING=1
 %{_mandir}/man3/B::Hooks::EndOfScope::XS.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.12-3
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.12-2
 - 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-XML-TokeParser] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 1dc770eaa4fd5e397e6176121502a24bf0048f70
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:00:26 2013 +0200

Perl 5.18 rebuild

 perl-XML-TokeParser.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-TokeParser.spec b/perl-XML-TokeParser.spec
index 085d2ce..3de8be1 100644
--- a/perl-XML-TokeParser.spec
+++ b/perl-XML-TokeParser.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-TokeParser
 Version:0.05
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:Simplified interface to XML::Parser
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.05-13
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.05-12
 - 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-CPANPLUS-Shell-Default-Plugins-Diff] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 9fc785c81249a4be267010a2d7b274f6b0dbb2ae
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:00:39 2013 +0200

Perl 5.18 rebuild

 perl-CPANPLUS-Shell-Default-Plugins-Diff.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CPANPLUS-Shell-Default-Plugins-Diff.spec 
b/perl-CPANPLUS-Shell-Default-Plugins-Diff.spec
index 2c27677..34cac1c 100644
--- a/perl-CPANPLUS-Shell-Default-Plugins-Diff.spec
+++ b/perl-CPANPLUS-Shell-Default-Plugins-Diff.spec
@@ -1,6 +1,6 @@
 Name:   perl-CPANPLUS-Shell-Default-Plugins-Diff
 Version:0.01
-Release:14%{?dist}
+Release:15%{?dist}
 Summary:Diff module versions from the CPANPLUS shell
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -54,6 +54,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.01-15
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.01-14
 - 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-ExtUtils-AutoInstall] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 23be94af9b8412fdae4f61bffae6bbe0a59ea852
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:07:35 2013 +0200

Perl 5.18 rebuild

 perl-ExtUtils-AutoInstall.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-ExtUtils-AutoInstall.spec b/perl-ExtUtils-AutoInstall.spec
index 1d8c601..f41e2d6 100644
--- a/perl-ExtUtils-AutoInstall.spec
+++ b/perl-ExtUtils-AutoInstall.spec
@@ -1,6 +1,6 @@
 Name:  perl-ExtUtils-AutoInstall
 Version:   0.63
-Release:   20%{?dist}
+Release:   21%{?dist}
 Summary:   Automatic install of dependencies via CPAN
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -52,6 +52,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.63-21
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.63-20
 - 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-CGI-Application-Plugin-RateLimit] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 86749745605be75257bd79e02cd4dc5d9d225770
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:08:44 2013 +0200

Perl 5.18 rebuild

 perl-CGI-Application-Plugin-RateLimit.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Application-Plugin-RateLimit.spec 
b/perl-CGI-Application-Plugin-RateLimit.spec
index 4b83e02..ec9a0cc 100644
--- a/perl-CGI-Application-Plugin-RateLimit.spec
+++ b/perl-CGI-Application-Plugin-RateLimit.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Application-Plugin-RateLimit
 Version:1.0
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Limits runmode call rate per user
 License:GPL+ or Artistic
 
@@ -53,6 +53,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.0-9
+- Perl 5.18 rebuild
+
 * Sun Feb 24 2013 Emmanuel Seyman emman...@seyman.fr - 1.0-8
 - Remove the Group macro (no longer needed)
 
--
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-WWW-Mechanize] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit d16afde4c0012e60de994603d91bc026fde0d0c0
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:15:00 2013 +0200

Perl 5.18 rebuild

 perl-WWW-Mechanize.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-WWW-Mechanize.spec b/perl-WWW-Mechanize.spec
index 28ab9c0..bbc121d 100644
--- a/perl-WWW-Mechanize.spec
+++ b/perl-WWW-Mechanize.spec
@@ -7,7 +7,7 @@
 
 Name:   perl-WWW-Mechanize
 Version:1.72
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Automates web page form  link interaction
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -108,6 +108,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.72-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.72-4
 - 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-DBIx-DBSchema] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit c6890598048a09af91ab2fe7b6015024063847d8
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:14:44 2013 +0200

Perl 5.18 rebuild

 perl-DBIx-DBSchema.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBIx-DBSchema.spec b/perl-DBIx-DBSchema.spec
index a142342..0bf8335 100644
--- a/perl-DBIx-DBSchema.spec
+++ b/perl-DBIx-DBSchema.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBIx-DBSchema
 Version:0.40
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Database-independent schema objects
 
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.40-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.40-4
 - 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-DBIx-Safe] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e86169718fa6c67a781a742a436392974fb93cb0
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:15:28 2013 +0200

Perl 5.18 rebuild

 perl-DBIx-Safe.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBIx-Safe.spec b/perl-DBIx-Safe.spec
index 8db0455..356d2b3 100644
--- a/perl-DBIx-Safe.spec
+++ b/perl-DBIx-Safe.spec
@@ -1,7 +1,7 @@
 %define realname DBIx-Safe
 Name:   perl-DBIx-Safe
 Version:1.2.5
-Release:17%{?dist}
+Release:18%{?dist}
 Summary:Safer access to your database through a DBI database handle
 License:BSD
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.2.5-18
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.2.5-17
 - 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-CGI-Session] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 3e15b1ad7ad5546fd7f180b174336fefe33240a4
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:16:48 2013 +0200

Perl 5.18 rebuild

 perl-CGI-Session.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Session.spec b/perl-CGI-Session.spec
index 622dd68..f17d791 100644
--- a/perl-CGI-Session.spec
+++ b/perl-CGI-Session.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Session
 Version:4.35
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Persistent session data in CGI applications
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -71,6 +71,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 4.35-16
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 4.35-15
 - 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-Tie-DBI] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 13d3f4009b57eb57fd316045105da7e02157e514
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:08:31 2013 +0200

Perl 5.18 rebuild

 perl-Tie-DBI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Tie-DBI.spec b/perl-Tie-DBI.spec
index e1678d3..bba1b4f 100644
--- a/perl-Tie-DBI.spec
+++ b/perl-Tie-DBI.spec
@@ -1,6 +1,6 @@
 Name:   perl-Tie-DBI
 Version:1.05
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Tie hashes to DBI relational databases
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.05-9
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.05-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 - Specify all dependencies
--
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-Sys-Virt] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 973d578a90adaac2521bb648f6830438e17fdff5
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:21:50 2013 +0200

Perl 5.18 rebuild

 perl-Sys-Virt.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sys-Virt.spec b/perl-Sys-Virt.spec
index 3aea178..e93a9da 100644
--- a/perl-Sys-Virt.spec
+++ b/perl-Sys-Virt.spec
@@ -2,7 +2,7 @@
 
 Name:   perl-Sys-Virt
 Version:1.0.5
-Release:1%{?dist}%{?extra_release}
+Release:2%{?dist}%{?extra_release}
 Summary:Represent and manage a libvirt hypervisor connection
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
@@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.0.5-2
+- Perl 5.18 rebuild
+
 * Tue May 14 2013 Daniel P. Berrange berra...@redhat.com - 1.0.5-1
 - Update to 1.0.5 release
 
--
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-SQL-Statement] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 96713c8fb87c41d5155c5d8bd735f322abbc3a77
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:22:15 2013 +0200

Perl 5.18 rebuild

 perl-SQL-Statement.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-SQL-Statement.spec b/perl-SQL-Statement.spec
index 5737da3..89c0575 100644
--- a/perl-SQL-Statement.spec
+++ b/perl-SQL-Statement.spec
@@ -1,6 +1,6 @@
 Name:   perl-SQL-Statement
 Version:1.405
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:SQL parsing and processing engine
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -89,6 +89,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.405-2
+- Perl 5.18 rebuild
+
 * Thu Jun 20 2013 Petr Šabata con...@redhat.com - 1.405-1
 - 1.405 enhancement bump
 
--
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-XML-TreeBuilder] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit e95c08cff186223c3e8d834a3e5e3b3db1425387
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:22:35 2013 +0200

Perl 5.18 rebuild

 perl-XML-TreeBuilder.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-TreeBuilder.spec b/perl-XML-TreeBuilder.spec
index 033d358..56f841a 100644
--- a/perl-XML-TreeBuilder.spec
+++ b/perl-XML-TreeBuilder.spec
@@ -1,7 +1,7 @@
 Summary:   Parser that builds a tree of XML::Element objects
 Name:  perl-XML-TreeBuilder
 Version:   4.0
-Release:   9%{?dist}
+Release:   10%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/XML-TreeBuilder/
@@ -48,6 +48,9 @@ find $RPM_BUILD_ROOT -name .packlist -exec %{__rm} {} \;
 %{perl_vendorlib}/XML/
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 4.0-10
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 4.0-9
 - 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-CPAN-Mini] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit f7204191f6f228e9de6190d4645ea1e0d3143469
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:22:23 2013 +0200

Perl 5.18 rebuild

 perl-CPAN-Mini.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CPAN-Mini.spec b/perl-CPAN-Mini.spec
index 8723701..80d76e9 100644
--- a/perl-CPAN-Mini.spec
+++ b/perl-CPAN-Mini.spec
@@ -1,7 +1,7 @@
 Name:   perl-CPAN-Mini
 Summary:Create a minimal mirror of CPAN
 Version:1.111013
-Release:1%{?dist}
+Release:2%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/CPAN-Mini-%{version}.tar.gz 
@@ -65,6 +65,9 @@ make test
 %{_mandir}/man[13]/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.111013-2
+- Perl 5.18 rebuild
+
 * Mon Apr 15 2013 Petr Pisar ppi...@redhat.com - 1.111013-1
 - 1.111013 bump
 - Stop packaging internal tests
--
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-Socket-Netlink] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 46d6ca538bb5f4457caf997bb40f7e53976cec0b
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:23:32 2013 +0200

Perl 5.18 rebuild

 perl-Socket-Netlink.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Socket-Netlink.spec b/perl-Socket-Netlink.spec
index 97175f3..d07eaca 100644
--- a/perl-Socket-Netlink.spec
+++ b/perl-Socket-Netlink.spec
@@ -1,6 +1,6 @@
 Name:   perl-Socket-Netlink
 Version:0.04
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Interface to Linux's PF_NETLINK socket family
 
 License:GPL+ or Artistic
@@ -72,6 +72,9 @@ find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null \;
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.04-8
+- Perl 5.18 rebuild
+
 * Thu Mar 21 2013 Mathieu Bridon boche...@fedoraproject.org - 0.04-1
 - New upstream release.
 
--
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-HTML-Element-Extended] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 6011a1a691b1f23d1278f631d5ec8811cfe1de0f
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:23:19 2013 +0200

Perl 5.18 rebuild

 perl-HTML-Element-Extended.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-Element-Extended.spec b/perl-HTML-Element-Extended.spec
index 48b6941..b1055c8 100644
--- a/perl-HTML-Element-Extended.spec
+++ b/perl-HTML-Element-Extended.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-Element-Extended
 Version:1.18
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Various HTML::Element extensions
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/HTML-Element-Extended/
@@ -41,5 +41,8 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.18-2
+- Perl 5.18 rebuild
+
 * Wed Mar 06 2013 Petr Šabata con...@redhat.com - 1.18-1
 - Initial package.
--
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-PDF-Reuse] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 22d912afb1f08f9f6d0eaaee36f57fad18ae1256
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:28:46 2013 +0200

Perl 5.18 rebuild

 perl-PDF-Reuse.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-PDF-Reuse.spec b/perl-PDF-Reuse.spec
index 42df02c..d1965bc 100644
--- a/perl-PDF-Reuse.spec
+++ b/perl-PDF-Reuse.spec
@@ -1,6 +1,6 @@
 Name:   perl-PDF-Reuse 
 Version:0.35 
-Release:11%{?dist}
+Release:12%{?dist}
 # Reuse.pm - GPL+ or Artistic
 License:GPL+ or Artistic 
 Group:  Development/Libraries
@@ -72,6 +72,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.35-12
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.35-11
 - 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-Data-Stag] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit f2772caf0e3a246d90bfa2dae7dddf22c1ffb81a
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:30:49 2013 +0200

Perl 5.18 rebuild

 perl-Data-Stag.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Data-Stag.spec b/perl-Data-Stag.spec
index 77bbaf0..1717691 100644
--- a/perl-Data-Stag.spec
+++ b/perl-Data-Stag.spec
@@ -1,6 +1,6 @@
 Name:   perl-Data-Stag
 Version:0.11
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:Perl package for Structured Tags datastructures
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.11-14
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.11-13
 - 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-Test-Refcount] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit d583ae68f5a73d53fb4a3cbfe6b738420ca4489d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:30:36 2013 +0200

Perl 5.18 rebuild

 perl-Test-Refcount.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Refcount.spec b/perl-Test-Refcount.spec
index f3970f5..3a658e2 100644
--- a/perl-Test-Refcount.spec
+++ b/perl-Test-Refcount.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Refcount
 Version:0.07
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Assert reference counts on objects
 
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ make test
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.07-9
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-8
 - 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-Data-Structure-Util] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit a8f3e0b411e01610130461e1a2e35d2a45315be0
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:30:40 2013 +0200

Perl 5.18 rebuild

 perl-Data-Structure-Util.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Data-Structure-Util.spec b/perl-Data-Structure-Util.spec
index f3ce896..305b25f 100644
--- a/perl-Data-Structure-Util.spec
+++ b/perl-Data-Structure-Util.spec
@@ -1,6 +1,6 @@
 Name:   perl-Data-Structure-Util
 Version:0.15
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:Change nature of data within a structure
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.15-14
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.15-13
 - 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-HTML-TokeParser-Simple] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 267fa74f040efbd078c2b85ce521f96c6eaac02b
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:31:26 2013 +0200

Perl 5.18 rebuild

 perl-HTML-TokeParser-Simple.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-TokeParser-Simple.spec b/perl-HTML-TokeParser-Simple.spec
index 797ca41..06c28fd 100644
--- a/perl-HTML-TokeParser-Simple.spec
+++ b/perl-HTML-TokeParser-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-TokeParser-Simple
 Version:3.15
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:Easy to use HTML::TokeParser interface
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 3.15-13
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.15-12
 - 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-Socket-GetAddrInfo] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5a60d2201a84b95d4d28342c8b954a7033ddfe6c
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:36:04 2013 +0200

Perl 5.18 rebuild

 perl-Socket-GetAddrInfo.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Socket-GetAddrInfo.spec b/perl-Socket-GetAddrInfo.spec
index bb503eb..edcda3a 100644
--- a/perl-Socket-GetAddrInfo.spec
+++ b/perl-Socket-GetAddrInfo.spec
@@ -1,6 +1,6 @@
 Name:   perl-Socket-GetAddrInfo
 Version:0.22
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:RFC 2553's getaddrinfo and getnameinfo functions
 
 License:GPL+ or Artistic
@@ -62,6 +62,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null ';'
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.22-2
+- Perl 5.18 rebuild
+
 * Sun Jun 09 2013 Emmanuel Seyman emman...@seyman.fr - 0.22-1
 - Update to 0.22
 - Switch to Build.PL as a build mechanism
--
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-Apache-DBI] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 4c90844696fba3ce5dc7a4cd4338f1d4352730e5
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:37:01 2013 +0200

Perl 5.18 rebuild

 perl-Apache-DBI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Apache-DBI.spec b/perl-Apache-DBI.spec
index 6f77530..e8e5d9a 100644
--- a/perl-Apache-DBI.spec
+++ b/perl-Apache-DBI.spec
@@ -2,7 +2,7 @@
 
 Name:  perl-Apache-DBI
 Version:   1.12
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   Persistent database connections with Apache/mod_perl
 
 Group: Development/Libraries
@@ -72,6 +72,9 @@ make test
 %{perl_vendorlib}/Apache
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.12-2
+- Perl 5.18 rebuild
+
 * Sat Jun 15 2013 Remi Collet fed...@famillecollet.com 1.12-1
 - update to 1.12
 
--
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-CGI-Application-Plugin-DBH] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 64fb52d1d0193e4cec4f6c91c86e7517a559618d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:36:19 2013 +0200

Perl 5.18 rebuild

 perl-CGI-Application-Plugin-DBH.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Application-Plugin-DBH.spec 
b/perl-CGI-Application-Plugin-DBH.spec
index f49f613..6e1580e 100644
--- a/perl-CGI-Application-Plugin-DBH.spec
+++ b/perl-CGI-Application-Plugin-DBH.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Application-Plugin-DBH
 Version:4.01
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Easy DBI access from CGI::Application
 License:GPL+ or Artistic
 
@@ -51,6 +51,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 4.01-2
+- Perl 5.18 rebuild
+
 * Sun Jan 27 2013 Emmanuel Seyman emman...@seyman.fr - 4.01-1
 - Update to 4.01
 - Switch to Makefile.PL building
--
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-threads-lite] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 028093f9f3683678107a5a2c213fafcd5b73db10
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:37:49 2013 +0200

Perl 5.18 rebuild

 perl-threads-lite.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-threads-lite.spec b/perl-threads-lite.spec
index 73f247d..67d4846 100644
--- a/perl-threads-lite.spec
+++ b/perl-threads-lite.spec
@@ -1,6 +1,6 @@
 Name:   perl-threads-lite
 Version:0.033
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Actor model threading for Perl
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.033-2
+- Perl 5.18 rebuild
+
 * Wed May 29 2013 Petr Pisar ppi...@redhat.com - 0.033-1
 - 0.033 bump
 
--
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-XML-DOM] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 000275440fa2608ce364433f50eb7c0ae27d7b7b
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:38:24 2013 +0200

Perl 5.18 rebuild

 perl-XML-DOM.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-DOM.spec b/perl-XML-DOM.spec
index acfcb59..bd6aea0 100644
--- a/perl-XML-DOM.spec
+++ b/perl-XML-DOM.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-DOM
 Version:1.44
-Release:18%{?dist}
+Release:19%{?dist}
 Summary:DOM extension to XML::Parser
 
 Group:  Development/Libraries
@@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.44-19
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.44-18
 - 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

File MARC-XML-1.0.1.tar.gz uploaded to lookaside cache by dscott

2013-07-24 Thread Dan Scott
A file has been added to the lookaside cache for perl-MARC-XML:

5eb8f773badcee8fad2e49e96dfbe703  MARC-XML-1.0.1.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-CPANPLUS-Shell-Default-Plugins-Changes] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 00d04a6ed90585b02c55656ae612c1aeb050236d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:49:56 2013 +0200

Perl 5.18 rebuild

 perl-CPANPLUS-Shell-Default-Plugins-Changes.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CPANPLUS-Shell-Default-Plugins-Changes.spec 
b/perl-CPANPLUS-Shell-Default-Plugins-Changes.spec
index c5b595c..51f296c 100644
--- a/perl-CPANPLUS-Shell-Default-Plugins-Changes.spec
+++ b/perl-CPANPLUS-Shell-Default-Plugins-Changes.spec
@@ -1,6 +1,6 @@
 Name:   perl-CPANPLUS-Shell-Default-Plugins-Changes 
 Version:0.02 
-Release:12%{?dist}
+Release:13%{?dist}
 # lib/CPANPLUS/Shell/Default/Plugins/Changes.pm - GPL+ or Artistic
 License:GPL+ or Artistic 
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.02-13
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-12
 - 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-Config-Any] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 82d22f67e10b51214c9086a1b45d22e0d4067b3a
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:52:13 2013 +0200

Perl 5.18 rebuild

 perl-Config-Any.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Config-Any.spec b/perl-Config-Any.spec
index c9f9764..45c3d02 100644
--- a/perl-Config-Any.spec
+++ b/perl-Config-Any.spec
@@ -1,7 +1,7 @@
 Name:   perl-Config-Any
 Summary:Load configuration from different file formats, transparently
 Version:0.23
-Release:4%{?dist}
+Release:5%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/B/BR/BRICAS/Config-Any-%{version}.tar.gz 
@@ -72,6 +72,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.23-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.23-4
 - 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-Image-Info] Perl 5.18 rebuild

2013-07-24 Thread Petr Pisar
commit 5dc9fb6a7b3a9ab5ae3652ac2b31deec506a9fc6
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 24 22:52:13 2013 +0200

Perl 5.18 rebuild

 perl-Image-Info.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Image-Info.spec b/perl-Image-Info.spec
index 5fe7086..4adf24d 100644
--- a/perl-Image-Info.spec
+++ b/perl-Image-Info.spec
@@ -1,6 +1,6 @@
 Name:   perl-Image-Info
 Version:1.33
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Image meta information extraction module for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -54,6 +54,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 1.33-3
+- Perl 5.18 rebuild
+
 * Wed Jan 30 2013 Paul Howarth p...@city-fan.org - 1.33-2
 - Don't BR: perl(Image::TIFF); it's provided by this package
 
--
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-MARC-XML] Bump to 1.0.1

2013-07-24 Thread Dan Scott
commit 59a90bdd61cdf2722a67c852f379fca1153d42c1
Author: Dan Scott d...@coffeecode.net
Date:   Wed Jul 24 16:47:02 2013 -0400

Bump to 1.0.1

Signed-off-by: Dan Scott d...@coffeecode.net

 .gitignore |1 +
 perl-MARC-XML.spec |   10 +++---
 sources|2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f68affa..9f477ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /MARC-XML-0.93.tar.gz
+/MARC-XML-1.0.1.tar.gz
diff --git a/perl-MARC-XML.spec b/perl-MARC-XML.spec
index 2f6b938..c230529 100644
--- a/perl-MARC-XML.spec
+++ b/perl-MARC-XML.spec
@@ -1,6 +1,6 @@
 Name:   perl-MARC-XML
-Version:0.93
-Release:3%{?dist}
+Version:1.0.1
+Release:1%{?dist}
 Summary:An extension to MARC::Record that supports an XML 
serialization of MARC
 
 Group:  Development/Libraries
@@ -25,7 +25,7 @@ BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
-BuildRequires:  perl(XML::SAX)
+BuildRequires:  perl(XML::LibXML)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -56,6 +56,10 @@ make test
 %{_bindir}/*
 
 %changelog
+* Wed Jul 24 2013 Dan Scott d...@coffeecode.net - 1.0.1-1
+- Version bump to 1.0.1
+- Performance and memory optimization by DOM processing instead of SAX
+
 * Wed Jul 24 2013 Petr Pisar ppi...@redhat.com - 0.93-3
 - Perl 5.18 rebuild
 
diff --git a/sources b/sources
index 5c342b0..95df316 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3b7b3f188c1434394ee6c8b102d01fdb  MARC-XML-0.93.tar.gz
+5eb8f773badcee8fad2e49e96dfbe703  MARC-XML-1.0.1.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

  1   2   >