[Bug 1305061] perl-Encode-2.80 breaks sending email by bugzilla

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1305061



--- Comment #19 from Fedora Update System  ---
bugzilla-5.0.2-3.fc24 has been pushed to the Fedora 24 stable repository. If
problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1305061] perl-Encode-2.80 breaks sending email by bugzilla

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1305061

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||bugzilla-5.0.2-3.fc24
 Resolution|--- |ERRATA
Last Closed|2016-04-08 04:47:56 |2016-05-11 21:32:00



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik pushed to perl-Storable (master). "2.56 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From e640fb4fe5db26ebfdc183df41c9c695bbdb910e Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 17:58:26 +0200
Subject: 2.56 bump in order to dual-live with perl 5.24

---
 Storable-2.53-Upgrade-to-2.56.patch | 99 +
 perl-Storable.spec  | 12 +++--
 2 files changed, 108 insertions(+), 3 deletions(-)
 create mode 100644 Storable-2.53-Upgrade-to-2.56.patch

diff --git a/Storable-2.53-Upgrade-to-2.56.patch 
b/Storable-2.53-Upgrade-to-2.56.patch
new file mode 100644
index 000..5ab0425
--- /dev/null
+++ b/Storable-2.53-Upgrade-to-2.56.patch
@@ -0,0 +1,99 @@
+diff --git a/Storable.pm b/Storable.pm
+index 9d8b621..c8f6db1 100644
+--- a/Storable.pm
 b/Storable.pm
+@@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter);
+ 
+ use vars qw($canonical $forgive_me $VERSION);
+ 
+-$VERSION = '2.53';
++$VERSION = '2.56';
+ 
+ BEGIN {
+ if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {
+@@ -979,43 +979,43 @@ such.
+ 
+ Here are some code samples showing a possible usage of Storable:
+ 
+-  use Storable qw(store retrieve freeze thaw dclone);
++ use Storable qw(store retrieve freeze thaw dclone);
+ 
+-  %color = ('Blue' => 0.1, 'Red' => 0.8, 'Black' => 0, 'White' => 1);
++ %color = ('Blue' => 0.1, 'Red' => 0.8, 'Black' => 0, 'White' => 1);
+ 
+-  store(\%color, 'mycolors') or die "Can't store %a in mycolors!\n";
++ store(\%color, 'mycolors') or die "Can't store %a in mycolors!\n";
+ 
+-  $colref = retrieve('mycolors');
+-  die "Unable to retrieve from mycolors!\n" unless defined $colref;
+-  printf "Blue is still %lf\n", $colref->{'Blue'};
++ $colref = retrieve('mycolors');
++ die "Unable to retrieve from mycolors!\n" unless defined $colref;
++ printf "Blue is still %lf\n", $colref->{'Blue'};
+ 
+-  $colref2 = dclone(\%color);
++ $colref2 = dclone(\%color);
+ 
+-  $str = freeze(\%color);
+-  printf "Serialization of %%color is %d bytes long.\n", length($str);
+-  $colref3 = thaw($str);
++ $str = freeze(\%color);
++ printf "Serialization of %%color is %d bytes long.\n", length($str);
++ $colref3 = thaw($str);
+ 
+ which prints (on my machine):
+ 
+-  Blue is still 0.10
+-  Serialization of %color is 102 bytes long.
++ Blue is still 0.10
++ Serialization of %color is 102 bytes long.
+ 
+ Serialization of CODE references and deserialization in a safe
+ compartment:
+ 
+ =for example begin
+ 
+-  use Storable qw(freeze thaw);
+-  use Safe;
+-  use strict;
+-  my $safe = new Safe;
++ use Storable qw(freeze thaw);
++ use Safe;
++ use strict;
++ my $safe = new Safe;
+ # because of opcodes used in "use strict":
+-  $safe->permit(qw(:default require));
+-  local $Storable::Deparse = 1;
+-  local $Storable::Eval = sub { $safe->reval($_[0]) };
+-  my $serialized = freeze(sub { 42 });
+-  my $code = thaw($serialized);
+-  $code->() == 42;
++ $safe->permit(qw(:default require));
++ local $Storable::Deparse = 1;
++ local $Storable::Eval = sub { $safe->reval($_[0]) };
++ my $serialized = freeze(sub { 42 });
++ my $code = thaw($serialized);
++ $code->() == 42;
+ 
+ =for example end
+ 
+diff --git a/Storable.xs b/Storable.xs
+index e7d0329..83cd001 100644
+--- a/Storable.xs
 b/Storable.xs
+@@ -1667,6 +1667,7 @@ static void free_context(pTHX_ stcxt_t *cxt)
+ 
+   ASSERT(!cxt->s_dirty, ("clean context"));
+   ASSERT(prev, ("not freeing root context"));
++  assert(prev);
+ 
+   SvREFCNT_dec(cxt->my_sv);
+   SET_STCXT(prev);
+@@ -6677,6 +6678,7 @@ SV * obj
+  ALIAS:
+   net_mstore = 1
+  CODE:
++  RETVAL = _sv_undef;
+   if (!do_store(aTHX_ (PerlIO*) 0, obj, 0, ix, ))
+ RETVAL = _sv_undef;
+  OUTPUT:
diff --git a/perl-Storable.spec b/perl-Storable.spec
index 7ba6d91..d8f2af6 100644
--- a/perl-Storable.spec
+++ b/perl-Storable.spec
@@ -2,15 +2,17 @@
 
 Name:   perl-Storable
 Epoch:  1
-Version:2.53
-Release:347%{?dist}
+Version:2.56
+Release:1%{?dist}
 Summary:Persistence for Perl data structures
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Storable/
 Source0:
http://www.cpan.org/authors/id/A/AM/AMS/Storable-%{base_version}.tar.gz
-# Unbundled form perl 5.21.11
+# Unbundled from perl 5.21.11
 Patch0: Storable-2.51-Upgrade-to-2.53.patch
+# Unbundled from perl 5.24.0
+Patch1: Storable-2.53-Upgrade-to-2.56.patch
 BuildRequires:  perl
 BuildRequires:  perl(Config)
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -61,6 +63,7 @@ can be conveniently stored to disk and retrieved at a later 
time.
 %prep
 %setup -q -n Storable-%{base_version}
 %patch0 -p1
+%patch1 -p1
 # Remove bundled modules
 rm -rf t/compat
 sed -i -e '/^t\/compat\//d' MANIFEST
@@ -87,6 +90,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Jitka Plesnikova 

jplesnik pushed to perl-PathTools (master). "3.63 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From cc1c138a44cced0d1d128798944298789130bc04 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 17:48:14 +0200
Subject: 3.63 bump in order to dual-live with perl 5.24

---
 PathTools-3.62-Upgrade-to-3.63.patch | 204 +++
 perl-PathTools.spec  |  15 ++-
 2 files changed, 215 insertions(+), 4 deletions(-)
 create mode 100644 PathTools-3.62-Upgrade-to-3.63.patch

diff --git a/PathTools-3.62-Upgrade-to-3.63.patch 
b/PathTools-3.62-Upgrade-to-3.63.patch
new file mode 100644
index 000..98e1a5f
--- /dev/null
+++ b/PathTools-3.62-Upgrade-to-3.63.patch
@@ -0,0 +1,204 @@
+diff --git a/Cwd.pm b/Cwd.pm
+index 9b5183e..e8b9f19 100644
+--- a/Cwd.pm
 b/Cwd.pm
+@@ -3,7 +3,7 @@ use strict;
+ use Exporter;
+ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ my $xs_version = $VERSION;
+ $VERSION =~ tr/_//d;
+ 
+diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm
+index 2709c39..32b987e 100644
+--- a/lib/File/Spec.pm
 b/lib/File/Spec.pm
+@@ -3,7 +3,7 @@ package File::Spec;
+ use strict;
+ use vars qw(@ISA $VERSION);
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ my %module = (MacOS   => 'Mac',
+diff --git a/lib/File/Spec/AmigaOS.pm b/lib/File/Spec/AmigaOS.pm
+index e6d6f5f2a..7a5889c 100644
+--- a/lib/File/Spec/AmigaOS.pm
 b/lib/File/Spec/AmigaOS.pm
+@@ -4,7 +4,7 @@ use strict;
+ use vars qw(@ISA $VERSION);
+ require File::Spec::Unix;
+ 
+-$VERSION = '3.62';
++$VERSION = '3.64';
+ $VERSION =~ tr/_//d;
+ 
+ @ISA = qw(File::Spec::Unix);
+@@ -15,7 +15,8 @@ File::Spec::AmigaOS - File::Spec for AmigaOS
+ 
+ =head1 SYNOPSIS
+ 
+- require File::Spec::AmigaOS; # Done automatically by File::Spec if needed
++ require File::Spec::AmigaOS; # Done automatically by File::Spec
++  # if needed
+ 
+ =head1 DESCRIPTION
+ 
+diff --git a/lib/File/Spec/Cygwin.pm b/lib/File/Spec/Cygwin.pm
+index 67f056f..2092eb8 100644
+--- a/lib/File/Spec/Cygwin.pm
 b/lib/File/Spec/Cygwin.pm
+@@ -4,7 +4,7 @@ use strict;
+ use vars qw(@ISA $VERSION);
+ require File::Spec::Unix;
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ @ISA = qw(File::Spec::Unix);
+diff --git a/lib/File/Spec/Epoc.pm b/lib/File/Spec/Epoc.pm
+index 17e3f54..22f0192 100644
+--- a/lib/File/Spec/Epoc.pm
 b/lib/File/Spec/Epoc.pm
+@@ -3,7 +3,7 @@ package File::Spec::Epoc;
+ use strict;
+ use vars qw($VERSION @ISA);
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ require File::Spec::Unix;
+diff --git a/lib/File/Spec/Functions.pm b/lib/File/Spec/Functions.pm
+index 470c771..af2c498 100644
+--- a/lib/File/Spec/Functions.pm
 b/lib/File/Spec/Functions.pm
+@@ -5,7 +5,7 @@ use strict;
+ 
+ use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ require Exporter;
+diff --git a/lib/File/Spec/Mac.pm b/lib/File/Spec/Mac.pm
+index 329451f..52c3bfe 100644
+--- a/lib/File/Spec/Mac.pm
 b/lib/File/Spec/Mac.pm
+@@ -4,7 +4,7 @@ use strict;
+ use vars qw(@ISA $VERSION);
+ require File::Spec::Unix;
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ @ISA = qw(File::Spec::Unix);
+diff --git a/lib/File/Spec/OS2.pm b/lib/File/Spec/OS2.pm
+index 55e6d33..804ecdb 100644
+--- a/lib/File/Spec/OS2.pm
 b/lib/File/Spec/OS2.pm
+@@ -4,7 +4,7 @@ use strict;
+ use vars qw(@ISA $VERSION);
+ require File::Spec::Unix;
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ @ISA = qw(File::Spec::Unix);
+diff --git a/lib/File/Spec/Unix.pm b/lib/File/Spec/Unix.pm
+index 586e9b0..3916a11 100644
+--- a/lib/File/Spec/Unix.pm
 b/lib/File/Spec/Unix.pm
+@@ -3,7 +3,7 @@ package File::Spec::Unix;
+ use strict;
+ use vars qw($VERSION);
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ my $xs_version = $VERSION;
+ $VERSION =~ tr/_//d;
+ 
+diff --git a/lib/File/Spec/VMS.pm b/lib/File/Spec/VMS.pm
+index 600c49f..02cc0b0 100644
+--- a/lib/File/Spec/VMS.pm
 b/lib/File/Spec/VMS.pm
+@@ -4,7 +4,7 @@ use strict;
+ use vars qw(@ISA $VERSION);
+ require File::Spec::Unix;
+ 
+-$VERSION = '3.62';
++$VERSION = '3.63';
+ $VERSION =~ tr/_//d;
+ 
+ @ISA = qw(File::Spec::Unix);
+@@ -437,15 +437,13 @@ Attempt to convert an absolute file specification to a 
relative specification.
+ 
+ sub abs2rel {
+ my $self = shift;
+-return vmspath(File::Spec::Unix::abs2rel( $self, @_ ))
+-if ((grep m{/}, @_) && !(grep m{(?_cwd() unless defined $base and length $base;
+ 
+ # If there is no device or directory syntax on $base, make sure it
+ # is treated as a directory.
+-$base = VMS::Filespec::vmspath($base) unless $base =~ m{(?rel2abs($_) }
+ 
+@@ -461,7 +459,7 @@ sub abs2rel {
+ 
+ my ($path_volume, $path_directories, $path_file) = 
$self->splitpath($path);
+ my ($base_volume, $base_directories, $base_file) = 
$self->splitpath($base);
+-return $path 

jplesnik pushed to perl-Module-Metadata (master). "1.000031 bump; Used trial version to compete with Perl 5.24"

2016-05-11 Thread notifications
From a182155b5549734c3f1ac00b23dee2952825cd4e Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 17:24:09 +0200
Subject: 1.31 bump; Used trial version to compete with Perl 5.24

---
 .gitignore|  1 +
 perl-Module-Metadata.spec | 17 +
 sources   |  2 +-
 3 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index 2379c32..1a1c32f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Module-Metadata-[0-9.]*\.tar\.gz
+/Module-Metadata-1.31-TRIAL.tar.gz
diff --git a/perl-Module-Metadata.spec b/perl-Module-Metadata.spec
index c2bd772..8565566 100644
--- a/perl-Module-Metadata.spec
+++ b/perl-Module-Metadata.spec
@@ -1,13 +1,17 @@
 Name:  perl-Module-Metadata
-Version:   1.27
-Release:   4%{?dist}
+Version:   1.31
+Release:   1%{?dist}
 Summary:   Gather package and POD information from perl module files
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Module-Metadata/
-Source0:   
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Metadata-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Metadata-%{version}-TRIAL.tar.gz
 BuildArch: noarch
 # Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: make
 BuildRequires: perl
+BuildRequires: perl-generators
 BuildRequires: perl(ExtUtils::MakeMaker)
 # Module
 BuildRequires: perl(Carp)
@@ -18,9 +22,11 @@ BuildRequires:   perl(strict)
 BuildRequires: perl(version) >= 0.87
 BuildRequires: perl(warnings)
 # Regular test suite
+BuildRequires: perl(base)
 BuildRequires: perl(Config)
 BuildRequires: perl(Cwd)
 BuildRequires: perl(Data::Dumper)
+BuildRequires: perl(Exporter)
 BuildRequires: perl(File::Basename)
 BuildRequires: perl(File::Path)
 BuildRequires: perl(File::Spec)
@@ -55,12 +61,15 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} \;
 make test
 
 %files
-%license LICENSE
+%license LICENCE
 %doc Changes CONTRIBUTING README
 %{perl_vendorlib}/Module/
 %{_mandir}/man3/Module::Metadata.3*
 
 %changelog
+* Wed May 11 2016 Jitka Plesnikova  - 1.31-1
+- 1.31 bump; Used trial version to compete with Perl 5.24
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
1.27-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index 47d1643..7d71fa5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a0bf9b900dfd49c57702de3ee3801d42  Module-Metadata-1.27.tar.gz
+731f815d82dbd364f6e74015ccd6da03  Module-Metadata-1.31-TRIAL.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Module-Metadata.git/commit/?h=master=a182155b5549734c3f1ac00b23dee2952825cd4e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik uploaded Module-Metadata-1.000031-TRIAL.tar.gz for perl-Module-Metadata

2016-05-11 Thread notifications
731f815d82dbd364f6e74015ccd6da03  Module-Metadata-1.31-TRIAL.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Module-Metadata/Module-Metadata-1.31-TRIAL.tar.gz/md5/731f815d82dbd364f6e74015ccd6da03/Module-Metadata-1.31-TRIAL.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

rebus pushed to perl-Number-Bytes-Human (master). "- bump to new version #1335128"

2016-05-11 Thread notifications
From 2b5e08395e828f56acc4cb95a28ae2841c531bd6 Mon Sep 17 00:00:00 2001
From: xambroz 
Date: Wed, 11 May 2016 15:19:17 +
Subject: - bump to new version #1335128

---
 .gitignore   | 3 ++-
 perl-Number-Bytes-Human.spec | 7 +--
 sources  | 2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 66f4d91..64d7e7d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
-Number-Bytes-Human-0.07.tar.gz
+/Number-Bytes-Human-0.07.tar.gz
 /Number-Bytes-Human-0.09.tar.gz
+/Number-Bytes-Human-0.10.tar.gz
diff --git a/perl-Number-Bytes-Human.spec b/perl-Number-Bytes-Human.spec
index f1cee36..680c5ca 100644
--- a/perl-Number-Bytes-Human.spec
+++ b/perl-Number-Bytes-Human.spec
@@ -1,6 +1,6 @@
 Name:   perl-Number-Bytes-Human
-Version:0.09
-Release:8%{?dist}
+Version:0.10
+Release:1%{?dist}
 Summary:Convert byte count to human readable format
 
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Wed May 11 2016 Michal Ambroz  - 0.10-1
+- bump to new version #1335128
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
0.09-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index d5fb08a..753a1a6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-09c021072dc095bfae6895608c999f8b  Number-Bytes-Human-0.09.tar.gz
+732e19370c4f7d07bd6016a6fa7e80f7  Number-Bytes-Human-0.10.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Number-Bytes-Human.git/commit/?h=master=2b5e08395e828f56acc4cb95a28ae2841c531bd6
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

rebus uploaded Number-Bytes-Human-0.10.tar.gz for perl-Number-Bytes-Human

2016-05-11 Thread notifications
732e19370c4f7d07bd6016a6fa7e80f7  Number-Bytes-Human-0.10.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Number-Bytes-Human/Number-Bytes-Human-0.10.tar.gz/md5/732e19370c4f7d07bd6016a6fa7e80f7/Number-Bytes-Human-0.10.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-Test2-Suite (master). "0.000030 bump"

2016-05-11 Thread notifications
From ef2b681cfd1802b278ff6b3faa0e0e2bdf32 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 11 May 2016 16:24:28 +0200
Subject: 0.30 bump

---
 .gitignore|  1 +
 perl-Test2-Suite.spec | 11 ++-
 sources   |  2 +-
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 177fa37..5d0908a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@
 /Test2-Suite-0.27.tar.gz
 /Test2-Suite-0.28.tar.gz
 /Test2-Suite-0.29.tar.gz
+/Test2-Suite-0.30.tar.gz
diff --git a/perl-Test2-Suite.spec b/perl-Test2-Suite.spec
index 8d18b9a..185d631 100644
--- a/perl-Test2-Suite.spec
+++ b/perl-Test2-Suite.spec
@@ -1,5 +1,5 @@
 Name:   perl-Test2-Suite
-Version:0.29
+Version:0.30
 Release:1%{?dist}
 Summary:Set of tools built upon the Test2 framework
 License:GPL+ or Artistic
@@ -23,6 +23,9 @@ BuildRequires:  perl(List::Util)
 BuildRequires:  perl(overload)
 BuildRequires:  perl(Scalar::Util)
 # Test2::API version from Test2 in META
+# The 0.40 was specified in Test2-Suite-0.29 and Test2-Suite-0.30
+# did not change any line of code. No reason for increasing the dependency
+# to 1.302015.
 BuildRequires:  perl(Test2::API) >= 0.40
 BuildRequires:  perl(Test2::Hub::Interceptor)
 BuildRequires:  perl(Test2::Util)
@@ -38,6 +41,9 @@ BuildRequires:  perl(PerlIO)
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 # Test2 not used in any useful way
 # Test2::API version from Test2 in META
+# The 0.40 was specified in Test2-Suite-0.29 and Test2-Suite-0.30
+# did not change any line of code. No reason for increasing the dependency
+# to 1.302015.
 Requires:   perl(Test2::API) >= 0.40
 Requires:   perl(utf8)
 # Term::ReadKey for terminal width
@@ -75,6 +81,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Petr Pisar  - 0.30-1
+- 0.30 bump
+
 * Mon May 02 2016 Petr Pisar  - 0.29-1
 - 0.29 bump
 
diff --git a/sources b/sources
index 0cddad6..12ee452 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-aa2a742a000acc22b8b4605f987bb480  Test2-Suite-0.29.tar.gz
+8e806a3317b5d577e329fea99fed8a32  Test2-Suite-0.30.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test2-Suite.git/commit/?h=master=ef2b681cfd1802b278ff6b3faa0e0e2bdf32
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar uploaded Test2-Suite-0.000030.tar.gz for perl-Test2-Suite

2016-05-11 Thread notifications
8e806a3317b5d577e329fea99fed8a32  Test2-Suite-0.30.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test2-Suite/Test2-Suite-0.30.tar.gz/md5/8e806a3317b5d577e329fea99fed8a32/Test2-Suite-0.30.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik pushed to perl-ExtUtils-ParseXS (master). "3.31 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From 1c210fc694e1223ddffc67dc25d4fde68043a087 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 15:52:21 +0200
Subject: 3.31 bump in order to dual-live with perl 5.24

---
 ExtUtils-ParseXS-3.30-Upgrade-to-3.31.patch | 139 
 perl-ExtUtils-ParseXS.spec  |  15 ++-
 2 files changed, 150 insertions(+), 4 deletions(-)
 create mode 100644 ExtUtils-ParseXS-3.30-Upgrade-to-3.31.patch

diff --git a/ExtUtils-ParseXS-3.30-Upgrade-to-3.31.patch 
b/ExtUtils-ParseXS-3.30-Upgrade-to-3.31.patch
new file mode 100644
index 000..7a0ac48
--- /dev/null
+++ b/ExtUtils-ParseXS-3.30-Upgrade-to-3.31.patch
@@ -0,0 +1,139 @@
+diff --git a/lib/ExtUtils/ParseXS.pm b/lib/ExtUtils/ParseXS.pm
+index f67a82d..32d74e1 100644
+--- a/lib/ExtUtils/ParseXS.pm
 b/lib/ExtUtils/ParseXS.pm
+@@ -11,7 +11,7 @@ use Symbol;
+ 
+ our $VERSION;
+ BEGIN {
+-  $VERSION = '3.30';
++  $VERSION = '3.31';
+ }
+ use ExtUtils::ParseXS::Constants $VERSION;
+ use ExtUtils::ParseXS::CountLines $VERSION;
+@@ -579,7 +579,7 @@ EOF
+   } );
+ }
+ else {
+-  print "\t$class *";
++  print "\t" . map_type($self, "$class *");
+   $self->{var_types}->{"THIS"} = "$class *";
+   $self->generate_init( {
+ type  => "$class *",
+diff --git a/lib/ExtUtils/ParseXS/Constants.pm 
b/lib/ExtUtils/ParseXS/Constants.pm
+index 8856551..2319a24 100644
+--- a/lib/ExtUtils/ParseXS/Constants.pm
 b/lib/ExtUtils/ParseXS/Constants.pm
+@@ -3,7 +3,7 @@ use strict;
+ use warnings;
+ use Symbol;
+ 
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ =head1 NAME
+ 
+diff --git a/lib/ExtUtils/ParseXS/CountLines.pm 
b/lib/ExtUtils/ParseXS/CountLines.pm
+index 2f45292..222a95c 100644
+--- a/lib/ExtUtils/ParseXS/CountLines.pm
 b/lib/ExtUtils/ParseXS/CountLines.pm
+@@ -1,7 +1,7 @@
+ package ExtUtils::ParseXS::CountLines;
+ use strict;
+ 
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ our $SECTION_END_MARKER;
+ 
+diff --git a/lib/ExtUtils/ParseXS/Eval.pm b/lib/ExtUtils/ParseXS/Eval.pm
+index 8c075a3..7315332 100644
+--- a/lib/ExtUtils/ParseXS/Eval.pm
 b/lib/ExtUtils/ParseXS/Eval.pm
+@@ -2,7 +2,7 @@ package ExtUtils::ParseXS::Eval;
+ use strict;
+ use warnings;
+ 
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ =head1 NAME
+ 
+diff --git a/lib/ExtUtils/ParseXS/Utilities.pm 
b/lib/ExtUtils/ParseXS/Utilities.pm
+index 4de9f4e..41a9f6d 100644
+--- a/lib/ExtUtils/ParseXS/Utilities.pm
 b/lib/ExtUtils/ParseXS/Utilities.pm
+@@ -5,7 +5,7 @@ use Exporter;
+ use File::Spec;
+ use ExtUtils::ParseXS::Constants ();
+ 
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ our (@ISA, @EXPORT_OK);
+ @ISA = qw(Exporter);
+diff --git a/lib/ExtUtils/Typemaps.pm b/lib/ExtUtils/Typemaps.pm
+index a16ae06..48d623e 100644
+--- a/lib/ExtUtils/Typemaps.pm
 b/lib/ExtUtils/Typemaps.pm
+@@ -2,7 +2,7 @@ package ExtUtils::Typemaps;
+ use 5.006001;
+ use strict;
+ use warnings;
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ require ExtUtils::ParseXS;
+ require ExtUtils::ParseXS::Constants;
+diff --git a/lib/ExtUtils/Typemaps/Cmd.pm b/lib/ExtUtils/Typemaps/Cmd.pm
+index ccd5efe..ffed504 100644
+--- a/lib/ExtUtils/Typemaps/Cmd.pm
 b/lib/ExtUtils/Typemaps/Cmd.pm
+@@ -2,7 +2,7 @@ package ExtUtils::Typemaps::Cmd;
+ use 5.006001;
+ use strict;
+ use warnings;
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ use ExtUtils::Typemaps;
+ 
+diff --git a/lib/ExtUtils/Typemaps/InputMap.pm 
b/lib/ExtUtils/Typemaps/InputMap.pm
+index 67ea1c2..86c646d 100644
+--- a/lib/ExtUtils/Typemaps/InputMap.pm
 b/lib/ExtUtils/Typemaps/InputMap.pm
+@@ -2,7 +2,7 @@ package ExtUtils::Typemaps::InputMap;
+ use 5.006001;
+ use strict;
+ use warnings;
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ =head1 NAME
+ 
+diff --git a/lib/ExtUtils/Typemaps/OutputMap.pm 
b/lib/ExtUtils/Typemaps/OutputMap.pm
+index 42cbe5c..32cf9f9 100644
+--- a/lib/ExtUtils/Typemaps/OutputMap.pm
 b/lib/ExtUtils/Typemaps/OutputMap.pm
+@@ -2,7 +2,7 @@ package ExtUtils::Typemaps::OutputMap;
+ use 5.006001;
+ use strict;
+ use warnings;
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ =head1 NAME
+ 
+diff --git a/lib/ExtUtils/Typemaps/Type.pm b/lib/ExtUtils/Typemaps/Type.pm
+index 7e0f4ba..abe93cb 100644
+--- a/lib/ExtUtils/Typemaps/Type.pm
 b/lib/ExtUtils/Typemaps/Type.pm
+@@ -4,7 +4,7 @@ use strict;
+ use warnings;
+ require ExtUtils::Typemaps;
+ 
+-our $VERSION = '3.30';
++our $VERSION = '3.31';
+ 
+ =head1 NAME
+ 
diff --git a/perl-ExtUtils-ParseXS.spec b/perl-ExtUtils-ParseXS.spec
index f054030..075211c 100644
--- a/perl-ExtUtils-ParseXS.spec
+++ b/perl-ExtUtils-ParseXS.spec
@@ -1,13 +1,16 @@
+%global base_version 3.30
 Name:   perl-ExtUtils-ParseXS
 # Epoch to compete with perl.spec
 Epoch:  1
-Version:3.30
-Release:3%{?dist}
+Version:3.31
+Release:1%{?dist}
 Summary:Module and a script 

jplesnik pushed to perl-ExtUtils-CBuilder (master). "0.280225 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From 2a6bb70469c4de543508b5b49a2ef50339f56f31 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 15:45:36 +0200
Subject: 0.280225 bump in order to dual-live with perl 5.24

---
 ...ils-CBuilder-0.280224-Upgrade-to-0.280225.patch | 254 +
 perl-ExtUtils-CBuilder.spec|  18 +-
 2 files changed, 267 insertions(+), 5 deletions(-)
 create mode 100644 ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch

diff --git a/ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch 
b/ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch
new file mode 100644
index 000..f4bf4ab
--- /dev/null
+++ b/ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch
@@ -0,0 +1,254 @@
+diff --git a/Changes b/Changes
+index 27f3bc3..aaebade 100644
+--- a/Changes
 b/Changes
+@@ -1,6 +1,12 @@
+ Revision history for Perl extension ExtUtils::CBuilder.
+ 
+-0.282224 - 2015-10-09
++0.280225 - 2016-01-04
++
++  Fixed:
++
++  - New location of libperl on Win32 when building core (RT #126632)
++
++0.280224 - 2015-10-09
+ 
+   Enhncements:
+ 
+diff --git a/Makefile.PL b/Makefile.PL
+index 820b294..44cb33a 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
+   "TEST_REQUIRES" => {
+ "Test::More" => "0.47"
+   },
+-  "VERSION" => "0.280224",
++  "VERSION" => "0.280225",
+   "test" => {
+ "TESTS" => "t/*.t"
+   }
+diff --git a/lib/ExtUtils/CBuilder.pm b/lib/ExtUtils/CBuilder.pm
+index abe976e..6ce0c68 100644
+--- a/lib/ExtUtils/CBuilder.pm
 b/lib/ExtUtils/CBuilder.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder;
+-$ExtUtils::CBuilder::VERSION = '0.280224';
++$ExtUtils::CBuilder::VERSION = '0.280225';
+ use File::Spec ();
+ use File::Path ();
+ use File::Basename ();
+diff --git a/lib/ExtUtils/CBuilder/Base.pm b/lib/ExtUtils/CBuilder/Base.pm
+index eb4c175..60b2f43 100644
+--- a/lib/ExtUtils/CBuilder/Base.pm
 b/lib/ExtUtils/CBuilder/Base.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Base;
+-$ExtUtils::CBuilder::Base::VERSION = '0.280224';
++$ExtUtils::CBuilder::Base::VERSION = '0.280225';
+ use strict;
+ use warnings;
+ use File::Spec;
+diff --git a/lib/ExtUtils/CBuilder/Platform/Unix.pm 
b/lib/ExtUtils/CBuilder/Platform/Unix.pm
+index d6c1768..399e254 100644
+--- a/lib/ExtUtils/CBuilder/Platform/Unix.pm
 b/lib/ExtUtils/CBuilder/Platform/Unix.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Platform::Unix;
+-$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280224';
++$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280225';
+ use warnings;
+ use strict;
+ use ExtUtils::CBuilder::Base;
+diff --git a/lib/ExtUtils/CBuilder/Platform/VMS.pm 
b/lib/ExtUtils/CBuilder/Platform/VMS.pm
+index 194d888..e9d9f6f 100644
+--- a/lib/ExtUtils/CBuilder/Platform/VMS.pm
 b/lib/ExtUtils/CBuilder/Platform/VMS.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Platform::VMS;
+-$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280224';
++$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280225';
+ use warnings;
+ use strict;
+ use ExtUtils::CBuilder::Base;
+diff --git a/lib/ExtUtils/CBuilder/Platform/Windows.pm 
b/lib/ExtUtils/CBuilder/Platform/Windows.pm
+index b95592d..80b8f29 100644
+--- a/lib/ExtUtils/CBuilder/Platform/Windows.pm
 b/lib/ExtUtils/CBuilder/Platform/Windows.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Platform::Windows;
+-$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280224';
++$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280225';
+ use strict;
+ use warnings;
+ 
+@@ -151,7 +151,7 @@ sub link {
+   # if running in perl source tree, look for libs there, not installed
+   my $lddlflags = $cf->{lddlflags};
+   my $perl_src = $self->perl_src();
+-  $lddlflags =~ s/\Q$cf->{archlibexp}\E[\\\/]CORE/$perl_src/ if $perl_src;
++  $lddlflags =~ s/\Q$cf->{archlibexp}\E[\\\/]CORE/$perl_src\/lib\/CORE/ if 
$perl_src;
+ 
+   my %spec = (
+ srcdir=> $to,
+diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm 
b/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
+index cd93b72..513c4ac 100644
+--- a/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
 b/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Platform::Windows::BCC;
+-$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280224';
++$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280225';
+ use strict;
+ use warnings;
+ 
+diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm 
b/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
+index 5f219f2..19851df 100644
+--- a/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
 b/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
+@@ -1,5 +1,5 @@
+ package ExtUtils::CBuilder::Platform::Windows::GCC;
+-$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280224';
++$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280225';
+ use warnings;
+ use strict;
+ 
+diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm 

jplesnik pushed to perl-Data-Dumper (master). "2.160 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From ecb5f56404cd6feb7e641913a7cae5de1b6054b3 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 15:22:00 +0200
Subject: 2.160 bump in order to dual-live with perl 5.24

---
 Data-Dumper-2.158-Upgrade-to-2.160.patch | 929 +++
 perl-Data-Dumper.spec|  12 +-
 2 files changed, 939 insertions(+), 2 deletions(-)
 create mode 100644 Data-Dumper-2.158-Upgrade-to-2.160.patch

diff --git a/Data-Dumper-2.158-Upgrade-to-2.160.patch 
b/Data-Dumper-2.158-Upgrade-to-2.160.patch
new file mode 100644
index 000..45a6e52
--- /dev/null
+++ b/Data-Dumper-2.158-Upgrade-to-2.160.patch
@@ -0,0 +1,929 @@
+diff --git a/Dumper.pm b/Dumper.pm
+index e884298..13be89d 100644
+--- a/Dumper.pm
 b/Dumper.pm
+@@ -10,7 +10,7 @@
+ package Data::Dumper;
+ 
+ BEGIN {
+-$VERSION = '2.158'; # Don't forget to set version and release
++$VERSION = '2.160'; # Don't forget to set version and release
+ }   # date in POD below!
+ 
+ #$| = 1;
+@@ -41,6 +41,7 @@ my $IS_ASCII  = ord 'A' ==  65;
+ 
+ # module vars and their defaults
+ $Indent = 2 unless defined $Indent;
++$Trailingcomma = 0  unless defined $Trailingcomma;
+ $Purity = 0 unless defined $Purity;
+ $Pad= ""unless defined $Pad;
+ $Varname= "VAR" unless defined $Varname;
+@@ -76,6 +77,7 @@ sub new {
+   my($s) = {
+ level  => 0,   # current recursive depth
+ indent => $Indent, # various styles of indenting
++trailingcomma => $Trailingcomma, # whether to add comma after last 
elem
+ pad=> $Pad,# all lines prefixed by this string
+ xpad   => "",  # padding-per-level
+ apad   => "",  # added padding for hash keys n such
+@@ -413,7 +415,9 @@ sub _dump {
+ $out .= $pad . $ipad . '#' . $i
+   if $s->{indent} >= 3;
+ $out .= $pad . $ipad . $s->_dump($v, $sname);
+-$out .= "," if $i++ < $#$val;
++$out .= ","
++if $i++ < $#$val
++|| ($s->{trailingcomma} && $s->{indent} >= 1);
+   }
+   $out .= $pad . ($s->{xpad} x ($s->{level} - 1)) if $i;
+   $out .= ($name =~ /^\@/) ? ')' : ']';
+@@ -473,7 +477,7 @@ sub _dump {
+   if $s->{indent} >= 2;
+   }
+   if (substr($out, -1) eq ',') {
+-chop $out;
++chop $out if !$s->{trailingcomma} || !$s->{indent};
+ $out .= $pad . ($s->{xpad} x ($s->{level} - 1));
+   }
+   $out .= ($name =~ /^\%/) ? ')' : '}';
+@@ -633,6 +637,11 @@ sub Indent {
+   }
+ }
+ 
++sub Trailingcomma {
++  my($s, $v) = @_;
++  defined($v) ? (($s->{trailingcomma} = $v), return $s) : $s->{trailingcomma};
++}
++
+ sub Pair {
+ my($s, $v) = @_;
+ defined($v) ? (($s->{pair} = $v), return $s) : $s->{pair};
+@@ -1032,6 +1041,15 @@ consumes twice the number of lines).  Style 2 is the 
default.
+ 
+ =item *
+ 
++$Data::Dumper::Trailingcomma  I  I<$OBJ>->Trailingcomma(I<[NEWVAL]>)
++
++Controls whether a comma is added after the last element of an array or
++hash. Even when true, no comma is added between the last element of an array
++or hash and a closing bracket when they appear on the same line. The default
++is false.
++
++=item *
++
+ $Data::Dumper::Purity  I  I<$OBJ>->Purity(I<[NEWVAL]>)
+ 
+ Controls the degree to which the output can be Ced to recreate the
+@@ -1454,7 +1472,7 @@ modify it under the same terms as Perl itself.
+ 
+ =head1 VERSION
+ 
+-Version 2.158  (March 13 2015)
++Version 2.160  (January 12 2016)
+ 
+ =head1 SEE ALSO
+ 
+diff --git a/Dumper.xs b/Dumper.xs
+index 97277f4..8220241 100644
+--- a/Dumper.xs
 b/Dumper.xs
+@@ -41,19 +41,40 @@
+   || (((UV) (c)) >= '0' && ((UV) (c)) <= '9'))
+ #endif
+ 
+-static I32 num_q (const char *s, STRLEN slen);
+-static I32 esc_q (char *dest, const char *src, STRLEN slen);
+-static I32 esc_q_utf8 (pTHX_ SV *sv, const char *src, STRLEN slen, I32 
do_utf8, I32 useqq);
++/* This struct contains almost all the user's desired configuration, and it
++ * is treated as constant by the recursive function. This arrangement has
++ * the advantage of needing less memory than passing all of them on the
++ * stack all the time (as was the case in an earlier implementation). */
++typedef struct {
++SV *pad;
++SV *xpad;
++SV *sep;
++SV *pair;
++SV *sortkeys;
++SV *freezer;
++SV *toaster;
++SV *bless;
++IV maxrecurse;
++I32 indent;
++I32 purity;
++I32 deepcopy;
++I32 quotekeys;
++I32 maxdepth;
++I32 useqq;
++int use_sparse_seen_hash;
++int trailingcomma;
++} Style;
++
++static STRLEN num_q (const char *s, STRLEN slen);
++static STRLEN esc_q (char *dest, const char *src, STRLEN slen);
++static STRLEN esc_q_utf8 (pTHX_ SV *sv, const char *src, STRLEN slen, I32 
do_utf8, I32 useqq);
+ static bool globname_needs_quote(const char *s, STRLEN len);
+ static bool 

pghmcfc uploaded Test-Simple-1.302015.tar.gz for perl-Test-Simple

2016-05-11 Thread notifications
131fff20bdafa1013099a961fbd91e87  Test-Simple-1.302015.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-Simple/Test-Simple-1.302015.tar.gz/md5/131fff20bdafa1013099a961fbd91e87/Test-Simple-1.302015.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik pushed to perl-Carp (master). "1.40 bump in order to dual-live with perl 5.24"

2016-05-11 Thread notifications
From e20ec4941912056837d1573bc9096e8c370cc839 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 15:06:28 +0200
Subject: 1.40 bump in order to dual-live with perl 5.24

---
 Carp-1.38-Upgrade-to-1.40.patch | 118 
 perl-Carp.spec  |  12 +++-
 2 files changed, 128 insertions(+), 2 deletions(-)
 create mode 100644 Carp-1.38-Upgrade-to-1.40.patch

diff --git a/Carp-1.38-Upgrade-to-1.40.patch b/Carp-1.38-Upgrade-to-1.40.patch
new file mode 100644
index 000..1ea49a5
--- /dev/null
+++ b/Carp-1.38-Upgrade-to-1.40.patch
@@ -0,0 +1,118 @@
+diff --git a/Changes b/Changes
+index b55b49f..dca6a52 100644
+--- a/Changes
 b/Changes
+@@ -1,4 +1,12 @@
+ 
++version 1.40; 2016-03-10
++  * Get arg_string.t to compile in perl v5.6
++  * Add information for how to contribute to Carp.
++
++version 1.39; 2016-03-06
++  * bugfix: longmess() should return the error in scalar context
++  (CPANRT#107225)
++
+ version 1.38; 2015-11-06
+   * stable release of changes since v1.36
+ 
+diff --git a/lib/Carp.pm b/lib/Carp.pm
+index 9421c74..92f8866 100644
+--- a/lib/Carp.pm
 b/lib/Carp.pm
+@@ -87,7 +87,7 @@ BEGIN {
+ }
+ }
+ 
+-our $VERSION = '1.38';
++our $VERSION = '1.40';
+ $VERSION =~ tr/_//d;
+ 
+ our $MaxEvalLen = 0;
+@@ -445,7 +445,9 @@ sub long_error_loc {
+ }
+ 
+ sub longmess_heavy {
+-return @_ if ref( $_[0] );# don't break references as exceptions
++if ( ref( $_[0] ) ) {   # don't break references as exceptions
++return wantarray ? @_ : $_[0];
++}
+ my $i = long_error_loc();
+ return ret_backtrace( $i, @_ );
+ }
+@@ -906,6 +908,12 @@ call die() or warn(), as appropriate.
+ L,
+ L
+ 
++=head1 CONTRIBUTING
++
++L is maintained by the perl 5 porters as part of the core perl 5
++version control repository. Please see the L perldoc for how to
++submit patches and contribute to it.
++
+ =head1 AUTHOR
+ 
+ The Carp module first appeared in Larry Wall's perl 5.000 distribution.
+diff --git a/lib/Carp/Heavy.pm b/lib/Carp/Heavy.pm
+index 91a42d1..b05d758 100644
+--- a/lib/Carp/Heavy.pm
 b/lib/Carp/Heavy.pm
+@@ -2,7 +2,7 @@ package Carp::Heavy;
+ 
+ use Carp ();
+ 
+-our $VERSION = '1.38';
++our $VERSION = '1.40';
+ $VERSION =~ tr/_//d;
+ 
+ # Carp::Heavy was merged into Carp in version 1.12.  Any mismatched versions
+diff --git a/t/Carp.t b/t/Carp.t
+index a18e3b4..9ecdf88 100644
+--- a/t/Carp.t
 b/t/Carp.t
+@@ -3,7 +3,7 @@ no warnings "once";
+ use Config;
+ 
+ use IPC::Open3 1.0103 qw(open3);
+-use Test::More tests => 65;
++use Test::More tests => 66;
+ 
+ sub runperl {
+ my(%args) = @_;
+@@ -39,6 +39,24 @@ BEGIN {
+   );
+ }
+ 
++package MyClass;
++
++sub new { return bless +{ field => ['value1', 'SecondVal'] }; }
++
++package main;
++
++{
++my $err = Carp::longmess(MyClass->new);
++
++# See:
++# https://rt.cpan.org/Public/Bug/Display.html?id=107225
++is_deeply(
++$err->{field},
++['value1', 'SecondVal',],
++"longmess returns sth meaningful in scalar context when passed a 
ref.",
++);
++}
++
+ {
+ local $SIG{__WARN__} = sub {
+ like $_[0], qr/ok (\d+)\n at.+\b(?i:carp\.t) line \d+\.$/, 'ok 2\n';
+diff --git a/t/arg_string.t b/t/arg_string.t
+index 42b43b1..dbd2e6e 100644
+--- a/t/arg_string.t
 b/t/arg_string.t
+@@ -15,7 +15,7 @@ my $e9 = sprintf "%02x", (($] ge 5.007_003)
+   : ((ord("A") == 193)
+  ? 0x51
+  : 0xE9));
+-my $chr_e9 = chr utf8::unicode_to_native(0xe9);
++my $chr_e9 = chr eval "0x$e9";
+ my $nl_as_hex = sprintf "%x", ord("\n");
+ 
+ like lm(3), qr/main::lm\(3\)/;
diff --git a/perl-Carp.spec b/perl-Carp.spec
index 593613f..4f35a05 100644
--- a/perl-Carp.spec
+++ b/perl-Carp.spec
@@ -2,18 +2,22 @@
 
 Name:   perl-Carp
 # Keep 2-digit precision
-Version:%(echo '%{cpan_version}' | sed 's/\(\...\)\(.\)/\1.\2/')
-Release:2%{?dist}
+#Version:%%(echo '%%{cpan_version}' | sed 's/\(\...\)\(.\)/\1.\2/')
+Version:1.40
+Release:1%{?dist}
 Summary:Alternative warn and die for modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Carp/
 Source0:
http://www.cpan.org/authors/id/R/RJ/RJBS/Carp-%{cpan_version}.tar.gz
+# Unbundled from perl 5.24.0
+Patch0: Carp-1.38-Upgrade-to-1.40.patch
 BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(warnings)
 BuildRequires:  perl(strict)
@@ -44,6 +48,7 @@ but it is a good educated guess.
 
 %prep
 %setup -q -n Carp-%{cpan_version}
+%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -63,6 +68,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Jitka Plesnikova 

upgradepath FAILED for FEDORA-2016-965cb13b1f

2016-05-11 Thread notifications
upgradepath FAILED for FEDORA-2016-965cb13b1f

https://taskotron.fedoraproject.org/artifacts/all/f153e0b4-1776-11e6-b5d7-525400120b80/task_output/FEDORA-2016-965cb13b1f.log
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

upgradepath FAILED for perl-Module-CoreList-1:5.20160507-1.fc23

2016-05-11 Thread notifications
upgradepath FAILED for perl-Module-CoreList-1:5.20160507-1.fc23

https://taskotron.fedoraproject.org/artifacts/all/f153e0b4-1776-11e6-b5d7-525400120b80/task_output/perl-Module-CoreList-1:5.20160507-1.fc23.log
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1335128] perl-Number-Bytes-Human-0.10 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335128



--- Comment #4 from Upstream Release Monitoring 
 ---
rebus's perl-Number-Bytes-Human-0.10-1.fc25 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=761989

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Broken dependencies: perl-Dumbbench

2016-05-11 Thread buildsys


perl-Dumbbench has broken dependencies in the F-24 tree:
On x86_64:
perl-Dumbbench-BoxPlot-0.10-2.fc24.noarch requires perl(SOOT)
On i386:
perl-Dumbbench-BoxPlot-0.10-2.fc24.noarch requires perl(SOOT)
On armhfp:
perl-Dumbbench-BoxPlot-0.10-2.fc24.noarch requires perl(SOOT)
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
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Broken dependencies: polymake

2016-05-11 Thread buildsys


polymake has broken dependencies in the F-24 tree:
On x86_64:
polymake-2.14r1-4.fc24.x86_64 requires perl = 4:5.22.1
On i386:
polymake-2.14r1-4.fc24.i686 requires perl = 4:5.22.1
On armhfp:
polymake-2.14r1-4.fc24.armv7hl requires perl = 4:5.22.1
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
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Re: Test2-based Test-Simple

2016-05-11 Thread Petr Pisar
On Wed, May 11, 2016 at 02:11:09PM +0100, Paul Howarth wrote:
> Upstream has now released a Test2-based version of Test-Simple as a stable
> release, bundling Test2. I have a package update ready to go for Rawhide
> (only) but I'm holding off probably until Monday morning to see if upstream
> invokes a contingency plan (see 
> http://blogs.perl.org/users/chad_exodist_granum/2016/05/test2test-simple-released.html)
> in the event of severe problems with this major refactoring of a module in
> very widespread use.
>
It's a little unfortunate timing. Jitka would like to start upgrading Perl at
the same time. Let's hope it will not break many things (Fedora has only
perl-Test-Able and perl-Test-Able-Runner). I saw p5p discussion about merging
it into the blead to obtain better testing coverage.

> The new package will obsolete/provide the existing perl-Test2 package.
> 
Thanks for the notification. I will retire it after the new perl-Test-Simple
shows its viability.

-- Petr


signature.asc
Description: PGP signature
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Test2-based Test-Simple

2016-05-11 Thread Paul Howarth
Upstream has now released a Test2-based version of Test-Simple as a 
stable release, bundling Test2. I have a package update ready to go for 
Rawhide (only) but I'm holding off probably until Monday morning to see 
if upstream invokes a contingency plan (see 
http://blogs.perl.org/users/chad_exodist_granum/2016/05/test2test-simple-released.html) 
in the event of severe problems with this major refactoring of a module 
in very widespread use.


The new package will obsolete/provide the existing perl-Test2 package.

Transition information can be found at:
https://metacpan.org/pod/release/EXODIST/Test-Simple-1.302015/lib/Test2/Transition.pod

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

[Bug 1335128] perl-Number-Bytes-Human-0.10 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335128



--- Comment #3 from Upstream Release Monitoring 
 ---
Patches were not touched. All were applied properly

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1335128] perl-Number-Bytes-Human-0.10 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335128



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-Number-Bytes-Human-0.09 failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1335128] perl-Number-Bytes-Human-0.10 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335128



--- Comment #2 from Upstream Release Monitoring 
 ---
Created attachment 1156115
  --> https://bugzilla.redhat.com/attachment.cgi?id=1156115=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1335128] New: perl-Number-Bytes-Human-0.10 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1335128

Bug ID: 1335128
   Summary: perl-Number-Bytes-Human-0.10 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Number-Bytes-Human
  Keywords: FutureFeature, Triaged
  Assignee: lys...@gmail.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: lys...@gmail.com, m...@fabian-affolter.ch,
perl-devel@lists.fedoraproject.org, re...@seznam.cz



Latest upstream release: 0.10
Current version/release in rawhide: 0.09-8.fc24
URL: http://search.cpan.org/dist/Number-Bytes-Human/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/7944/

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar changed ppisar's 'watchcommits' permission on perl-MooseX-Types-Structured (epel7) to 'Approved'

2016-05-11 Thread notifications
ppisar changed ppisar's 'watchcommits' permission on 
perl-MooseX-Types-Structured (epel7) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MooseX-Types-Structured/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar changed ppisar's 'watchbugzilla' permission on perl-MooseX-Types-Structured (epel7) to 'Approved'

2016-05-11 Thread notifications
ppisar changed ppisar's 'watchbugzilla' permission on 
perl-MooseX-Types-Structured (epel7) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MooseX-Types-Structured/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar changed ppisar's 'approveacls' permission on perl-MooseX-Types-Structured (epel7) to 'Approved'

2016-05-11 Thread notifications
ppisar changed ppisar's 'approveacls' permission on 
perl-MooseX-Types-Structured (epel7) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MooseX-Types-Structured/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar changed owner of perl-MooseX-Types-Structured (epel7) to 'ppisar'

2016-05-11 Thread notifications
ppisar changed owner of perl-MooseX-Types-Structured (epel7) to 'ppisar'

https://admin.fedoraproject.org/pkgdb/package/perl-MooseX-Types-Structured/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar changed ppisar's 'commit' permission on perl-MooseX-Types-Structured (epel7) to 'Approved'

2016-05-11 Thread notifications
ppisar changed ppisar's 'commit' permission on perl-MooseX-Types-Structured 
(epel7) to 'Approved'

https://admin.fedoraproject.org/pkgdb/package/perl-MooseX-Types-Structured/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-Config-Perl-V (f23). "0.26 bump"

2016-05-11 Thread notifications
From c1dc8994bcee408b3f336442ac7e17d7cdf06ab0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 11 May 2016 10:40:44 +0200
Subject: 0.26 bump

---
 .gitignore  | 1 +
 perl-Config-Perl-V.spec | 8 ++--
 sources | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3fe88b3..0643c21 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Config-Perl-V-0.24.tgz
 /Config-Perl-V-0.25.tgz
+/Config-Perl-V-0.26.tgz
diff --git a/perl-Config-Perl-V.spec b/perl-Config-Perl-V.spec
index 36fe875..d1030f8 100644
--- a/perl-Config-Perl-V.spec
+++ b/perl-Config-Perl-V.spec
@@ -1,5 +1,5 @@
 Name:   perl-Config-Perl-V
-Version:0.25
+Version:0.26
 Release:1%{?dist}
 Summary:Structured data retrieval of perl -V output
 License:GPL+ or Artistic
@@ -13,6 +13,7 @@ BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(strict)
 # Run-time:
@@ -45,7 +46,7 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name .packlist -delete
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
@@ -57,6 +58,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Petr Pisar  - 0.26-1
+- 0.26 bump
+
 * Wed Nov 18 2015 Petr Pisar  - 0.25-1
 - 0.25 bump
 
diff --git a/sources b/sources
index 163261c..e732ae3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d30122ab66576cbc5dd6387688c0714e  Config-Perl-V-0.25.tgz
+cd969bc313abe3b0433d7ebce282b441  Config-Perl-V-0.26.tgz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Config-Perl-V.git/commit/?h=f23=c1dc8994bcee408b3f336442ac7e17d7cdf06ab0
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-Config-Perl-V (f24). "0.26 bump"

2016-05-11 Thread notifications
From 6bc6027caabd6c094edc2e3aa96aa7170c1400b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 11 May 2016 10:40:44 +0200
Subject: 0.26 bump

---
 .gitignore  |  1 +
 perl-Config-Perl-V.spec | 10 +++---
 sources |  2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3fe88b3..0643c21 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Config-Perl-V-0.24.tgz
 /Config-Perl-V-0.25.tgz
+/Config-Perl-V-0.26.tgz
diff --git a/perl-Config-Perl-V.spec b/perl-Config-Perl-V.spec
index 467ff8d..3b5596a 100644
--- a/perl-Config-Perl-V.spec
+++ b/perl-Config-Perl-V.spec
@@ -1,6 +1,6 @@
 Name:   perl-Config-Perl-V
-Version:0.25
-Release:2%{?dist}
+Version:0.26
+Release:1%{?dist}
 Summary:Structured data retrieval of perl -V output
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,6 +13,7 @@ BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(strict)
 # Run-time:
@@ -45,7 +46,7 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name .packlist -delete
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
@@ -57,6 +58,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Petr Pisar  - 0.26-1
+- 0.26 bump
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
0.25-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index 163261c..e732ae3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d30122ab66576cbc5dd6387688c0714e  Config-Perl-V-0.25.tgz
+cd969bc313abe3b0433d7ebce282b441  Config-Perl-V-0.26.tgz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Config-Perl-V.git/commit/?h=f24=6bc6027caabd6c094edc2e3aa96aa7170c1400b5
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar pushed to perl-Config-Perl-V (master). "0.26 bump"

2016-05-11 Thread notifications
From 6bc6027caabd6c094edc2e3aa96aa7170c1400b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 11 May 2016 10:40:44 +0200
Subject: 0.26 bump

---
 .gitignore  |  1 +
 perl-Config-Perl-V.spec | 10 +++---
 sources |  2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3fe88b3..0643c21 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Config-Perl-V-0.24.tgz
 /Config-Perl-V-0.25.tgz
+/Config-Perl-V-0.26.tgz
diff --git a/perl-Config-Perl-V.spec b/perl-Config-Perl-V.spec
index 467ff8d..3b5596a 100644
--- a/perl-Config-Perl-V.spec
+++ b/perl-Config-Perl-V.spec
@@ -1,6 +1,6 @@
 Name:   perl-Config-Perl-V
-Version:0.25
-Release:2%{?dist}
+Version:0.26
+Release:1%{?dist}
 Summary:Structured data retrieval of perl -V output
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,6 +13,7 @@ BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
+BuildRequires:  perl-generators
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(strict)
 # Run-time:
@@ -45,7 +46,7 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name .packlist -delete
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
@@ -57,6 +58,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Petr Pisar  - 0.26-1
+- 0.26 bump
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
0.25-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index 163261c..e732ae3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d30122ab66576cbc5dd6387688c0714e  Config-Perl-V-0.25.tgz
+cd969bc313abe3b0433d7ebce282b441  Config-Perl-V-0.26.tgz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Config-Perl-V.git/commit/?h=master=6bc6027caabd6c094edc2e3aa96aa7170c1400b5
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar uploaded Config-Perl-V-0.26.tgz for perl-Config-Perl-V

2016-05-11 Thread notifications
cd969bc313abe3b0433d7ebce282b441  Config-Perl-V-0.26.tgz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Config-Perl-V/Config-Perl-V-0.26.tgz/md5/cd969bc313abe3b0433d7ebce282b441/Config-Perl-V-0.26.tgz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

xavierb pushed to perl-Log-LogLite (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2016-05-11 Thread notifications
From f5cb35915da2a3e34f022aa4a3b0293a32bcca85 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 7 Jun 2014 01:28:00 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

---
 perl-Log-LogLite.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Log-LogLite.spec b/perl-Log-LogLite.spec
index ce3f28f..a88415c 100644
--- a/perl-Log-LogLite.spec
+++ b/perl-Log-LogLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-LogLite
 Version:0.82
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:Create simple logs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 0.82-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 0.82-13
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-LogLite.git/commit/?h=epel7=f5cb35915da2a3e34f022aa4a3b0293a32bcca85
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

xavierb pushed to perl-Log-LogLite (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild"

2016-05-11 Thread notifications
From 5a657395071ad6c893819ee882cb269009c4121c Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Thu, 4 Feb 2016 14:26:29 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

---
 perl-Log-LogLite.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Log-LogLite.spec b/perl-Log-LogLite.spec
index 2f6b93d..6f6eb52 100644
--- a/perl-Log-LogLite.spec
+++ b/perl-Log-LogLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-LogLite
 Version:0.82
-Release:17%{?dist}
+Release:18%{?dist}
 Summary:Create simple logs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 04 2016 Fedora Release Engineering  - 
0.82-18
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.82-17
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-LogLite.git/commit/?h=epel7=5a657395071ad6c893819ee882cb269009c4121c
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

xavierb pushed to perl-Log-LogLite (epel7). "Perl 5.20 rebuild"

2016-05-11 Thread notifications
From be1dbff0e3b5c77ae1536d0fcca6016ddebeb513 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 27 Aug 2014 18:20:59 +0200
Subject: Perl 5.20 rebuild

---
 perl-Log-LogLite.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Log-LogLite.spec b/perl-Log-LogLite.spec
index a88415c..5b2e265 100644
--- a/perl-Log-LogLite.spec
+++ b/perl-Log-LogLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-LogLite
 Version:0.82
-Release:14%{?dist}
+Release:15%{?dist}
 Summary:Create simple logs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Aug 27 2014 Jitka Plesnikova  - 0.82-15
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 0.82-14
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-LogLite.git/commit/?h=epel7=be1dbff0e3b5c77ae1536d0fcca6016ddebeb513
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

xavierb pushed to perl-Log-LogLite (epel7). "Perl 5.22 rebuild"

2016-05-11 Thread notifications
From 9cacdf382f31713c3d6522b8bfafae5f81447d46 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Thu, 4 Jun 2015 10:19:30 +0200
Subject: Perl 5.22 rebuild

---
 perl-Log-LogLite.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Log-LogLite.spec b/perl-Log-LogLite.spec
index 5b2e265..868b8fe 100644
--- a/perl-Log-LogLite.spec
+++ b/perl-Log-LogLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-LogLite
 Version:0.82
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Create simple logs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 04 2015 Jitka Plesnikova  - 0.82-16
+- Perl 5.22 rebuild
+
 * Wed Aug 27 2014 Jitka Plesnikova  - 0.82-15
 - Perl 5.20 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-LogLite.git/commit/?h=epel7=9cacdf382f31713c3d6522b8bfafae5f81447d46
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

xavierb pushed to perl-Log-LogLite (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2016-05-11 Thread notifications
From b02deb7d74bae7e2dac97d3c92c932f4e563781d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 04:12:31 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

---
 perl-Log-LogLite.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Log-LogLite.spec b/perl-Log-LogLite.spec
index 868b8fe..2f6b93d 100644
--- a/perl-Log-LogLite.spec
+++ b/perl-Log-LogLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-Log-LogLite
 Version:0.82
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Create simple logs
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 0.82-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Thu Jun 04 2015 Jitka Plesnikova  - 0.82-16
 - Perl 5.22 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Log-LogLite.git/commit/?h=epel7=b02deb7d74bae7e2dac97d3c92c932f4e563781d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

ppisar set the monitor flag of perl-Config-Perl-V to nobuild

2016-05-11 Thread notifications
ppisar set the monitor flag of perl-Config-Perl-V to nobuild

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

[Bug 1334966] perl-Config-Perl-V-0.26 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1334966



--- Comment #6 from Fedora Update System  ---
perl-Config-Perl-V-0.26-1.fc23 has been submitted as an update to Fedora 23.
https://bodhi.fedoraproject.org/updates/FEDORA-2016-66151014ba

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1334966] perl-Config-Perl-V-0.26 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1334966



--- Comment #5 from Fedora Update System  ---
perl-Config-Perl-V-0.26-1.fc24 has been submitted as an update to Fedora 24.
https://bodhi.fedoraproject.org/updates/FEDORA-2016-5d2ccf911e

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1334966] perl-Config-Perl-V-0.26 is available

2016-05-11 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1334966

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Config-Perl-V-0.26-1.f
   ||c25



--- Comment #4 from Petr Pisar  ---
Fixes ccflags parsing and supports perl 5.24. Suitable for Fedora ≥ 23.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

jplesnik pushed to perl-Test-Smoke (master). "Filtered JSON from provides"

2016-05-11 Thread notifications
From 5be3c508e2c8a4c107229d97656197ee66bc048c Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 11 May 2016 09:11:33 +0200
Subject: Filtered JSON from provides

---
 perl-Test-Smoke.spec | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/perl-Test-Smoke.spec b/perl-Test-Smoke.spec
index 8213c02..ad54fd4 100644
--- a/perl-Test-Smoke.spec
+++ b/perl-Test-Smoke.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Smoke
 Version:1.70
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl core test smoke suite
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -69,6 +69,7 @@ Requires:   perl(Mail::Sendmail)
 Requires:   perl(File::Spec) >= 0.82
 
 %global __provides_exclude 
%{?__provides_exclude:%__provides_exclude|}perl\\(Mail::Sendmail\\)
+%global __provides_exclude 
%{?__provides_exclude:%__provides_exclude|}perl\\(JSON\\)
 
 %description
 The perl core test smoke suite is a set of scripts and modules that try to run
@@ -120,6 +121,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 11 2016 Jitka Plesnikova  - 1.70-2
+- Filtered JSON from provides
+
 * Mon May 09 2016 Jitka Plesnikova  - 1.70-1
 - 1.70 bump
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Smoke.git/commit/?h=master=5be3c508e2c8a4c107229d97656197ee66bc048c
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org