[Bug 1048703] New: Module::Pluggable ignores single-letter-named package names

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048703

Bug ID: 1048703
   Summary: Module::Pluggable ignores single-letter-named package
names
   Product: Fedora
   Version: 20
 Component: perl-Module-Pluggable
  Assignee: ppi...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com
   External Bug ID: CPAN 89680



Having two files:

$ cat M.pm 
print join(',', M-plugins), \n;

package M;
use Module::Pluggable search_path = [ 'M' ];

$ cat M/X.pm 
package M::X;
1;

`perl M.pm' should locate M::X plug-in and print the name to standard output
like this:

$ perl -I/home/petr/Module-Pluggable/lib M.pm 
M::X

However it does not.

This issue has been reported to upstream
https://rt.cpan.org/Public/Bug/Display.html?id=89680 and fixed in commit:

commit 7872bc27ac7f828a6b53d00717abdf83f2d1866d
Author: Simon Wistow si...@fastly.com
Date:   Tue Oct 22 09:32:27 2013 -0700

Allow single letter package names

All Fedoras with perl-Module-Pluggable  5.00 are affected.

-- 
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=b6247j23hpa=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-Module-Pluggable/f20] Do not ignore single-letter-named packages

2014-01-06 Thread Petr Pisar
commit 7b53e50e45b9c4e7a298ce844e3e8c8ff969b603
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jan 6 09:05:31 2014 +0100

Do not ignore single-letter-named packages

 ...ble-4.8-Allow-single-letter-package-names.patch |   94 
 perl-Module-Pluggable.spec |9 ++-
 2 files changed, 102 insertions(+), 1 deletions(-)
---
diff --git a/Module-Pluggable-4.8-Allow-single-letter-package-names.patch 
b/Module-Pluggable-4.8-Allow-single-letter-package-names.patch
new file mode 100644
index 000..5cb7615
--- /dev/null
+++ b/Module-Pluggable-4.8-Allow-single-letter-package-names.patch
@@ -0,0 +1,94 @@
+From 7872bc27ac7f828a6b53d00717abdf83f2d1866d Mon Sep 17 00:00:00 2001
+From: Simon Wistow si...@fastly.com
+Date: Tue, 22 Oct 2013 09:32:27 -0700
+Subject: [PATCH] Allow single letter package names
+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/Module/Pluggable/Object.pm |  2 +-
+ t/25single_letter_package.t| 42 ++
+ t/lib/M/X.pm   |  7 +++
+ 3 files changed, 50 insertions(+), 1 deletion(-)
+ create mode 100755 t/25single_letter_package.t
+ create mode 100644 t/lib/M/X.pm
+
+diff --git a/lib/Module/Pluggable/Object.pm b/lib/Module/Pluggable/Object.pm
+index 6f7a051..46240a8 100755
+--- a/lib/Module/Pluggable/Object.pm
 b/lib/Module/Pluggable/Object.pm
+@@ -234,7 +234,7 @@ sub search_paths {
+ }
+ my $plugin = join '::', $searchpath, @dirs, $name;
+ 
+-next unless $plugin =~ m!(?:[a-z\d]+)[a-z\d]!i;
++next unless $plugin =~ m!(?:[a-z\d]+)[a-z\d]*!i;
+ 
+ $self-handle_finding_plugin($plugin, \@plugins)
+ }
+diff --git a/t/25single_letter_package.t b/t/25single_letter_package.t
+new file mode 100755
+index 000..dd55fff
+--- /dev/null
 b/t/25single_letter_package.t
+@@ -0,0 +1,42 @@
++#!perl -w
++
++use strict;
++use FindBin;
++use lib (($FindBin::Bin./lib)=~/^(.*)$/);
++use Test::More tests = 5;
++
++my $foo;
++ok($foo = M-new());
++
++my @plugins;
++my @expected = qw(M::X);
++ok(@plugins = sort $foo-plugins);
++
++
++
++is_deeply(\@plugins, \@expected, is deeply);
++
++@plugins = ();
++
++ok(@plugins = sort M-plugins);
++
++
++
++
++is_deeply(\@plugins, \@expected, is deeply class);
++
++
++
++package M;
++
++use strict;
++use Module::Pluggable search_path = M;
++
++
++sub new {
++my $class = shift;
++return bless {}, $class;
++
++}
++1;
++
+diff --git a/t/lib/M/X.pm b/t/lib/M/X.pm
+new file mode 100644
+index 000..77f8f58
+--- /dev/null
 b/t/lib/M/X.pm
+@@ -0,0 +1,7 @@
++package M::X;
++
++use strict;
++
++sub new { return bless {}, $_[0]; }
++sub frobnitz {}
++1;
+-- 
+1.8.3.1
+
diff --git a/perl-Module-Pluggable.spec b/perl-Module-Pluggable.spec
index c623b95..9cc3b64 100644
--- a/perl-Module-Pluggable.spec
+++ b/perl-Module-Pluggable.spec
@@ -4,12 +4,15 @@ Name:   perl-Module-Pluggable
 Epoch:  1
 # Keep two digit decimal part
 Version:%{cpan_version}0
-Release:291%{?dist}
+Release:292%{?dist}
 Summary:Automatically give your module the ability to have plugins
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Module-Pluggable/
 Source0:
http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-%{cpan_version}.tar.gz
+# Do not ignore single-letter-named packages, bug #1048703, CPAN RT#89680,
+# fixed in 5.0.
+Patch0: Module-Pluggable-4.8-Allow-single-letter-package-names.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(FindBin)
@@ -49,6 +52,7 @@ into class names. Optionally it instantiates those classes 
for you.
 
 %prep
 %setup -q -n Module-Pluggable-%{cpan_version}
+%patch0 -p1
 find -type f -exec chmod -x {} +
 
 %build
@@ -68,6 +72,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Petr Pisar ppi...@redhat.com - 1:4.80-292
+- Do not ignore single-letter-named packages (bug #1048703)
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:4.80-291
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Module-Pluggable/f19] Do not ignore single-letter-named packages

2014-01-06 Thread Petr Pisar
commit ee50dac10f6a320e6f5ad2ee004e45e73d882e98
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jan 6 09:05:31 2014 +0100

Do not ignore single-letter-named packages

 ...ble-4.8-Allow-single-letter-package-names.patch |   94 
 perl-Module-Pluggable.spec |9 ++-
 2 files changed, 102 insertions(+), 1 deletions(-)
---
diff --git a/Module-Pluggable-4.8-Allow-single-letter-package-names.patch 
b/Module-Pluggable-4.8-Allow-single-letter-package-names.patch
new file mode 100644
index 000..5cb7615
--- /dev/null
+++ b/Module-Pluggable-4.8-Allow-single-letter-package-names.patch
@@ -0,0 +1,94 @@
+From 7872bc27ac7f828a6b53d00717abdf83f2d1866d Mon Sep 17 00:00:00 2001
+From: Simon Wistow si...@fastly.com
+Date: Tue, 22 Oct 2013 09:32:27 -0700
+Subject: [PATCH] Allow single letter package names
+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/Module/Pluggable/Object.pm |  2 +-
+ t/25single_letter_package.t| 42 ++
+ t/lib/M/X.pm   |  7 +++
+ 3 files changed, 50 insertions(+), 1 deletion(-)
+ create mode 100755 t/25single_letter_package.t
+ create mode 100644 t/lib/M/X.pm
+
+diff --git a/lib/Module/Pluggable/Object.pm b/lib/Module/Pluggable/Object.pm
+index 6f7a051..46240a8 100755
+--- a/lib/Module/Pluggable/Object.pm
 b/lib/Module/Pluggable/Object.pm
+@@ -234,7 +234,7 @@ sub search_paths {
+ }
+ my $plugin = join '::', $searchpath, @dirs, $name;
+ 
+-next unless $plugin =~ m!(?:[a-z\d]+)[a-z\d]!i;
++next unless $plugin =~ m!(?:[a-z\d]+)[a-z\d]*!i;
+ 
+ $self-handle_finding_plugin($plugin, \@plugins)
+ }
+diff --git a/t/25single_letter_package.t b/t/25single_letter_package.t
+new file mode 100755
+index 000..dd55fff
+--- /dev/null
 b/t/25single_letter_package.t
+@@ -0,0 +1,42 @@
++#!perl -w
++
++use strict;
++use FindBin;
++use lib (($FindBin::Bin./lib)=~/^(.*)$/);
++use Test::More tests = 5;
++
++my $foo;
++ok($foo = M-new());
++
++my @plugins;
++my @expected = qw(M::X);
++ok(@plugins = sort $foo-plugins);
++
++
++
++is_deeply(\@plugins, \@expected, is deeply);
++
++@plugins = ();
++
++ok(@plugins = sort M-plugins);
++
++
++
++
++is_deeply(\@plugins, \@expected, is deeply class);
++
++
++
++package M;
++
++use strict;
++use Module::Pluggable search_path = M;
++
++
++sub new {
++my $class = shift;
++return bless {}, $class;
++
++}
++1;
++
+diff --git a/t/lib/M/X.pm b/t/lib/M/X.pm
+new file mode 100644
+index 000..77f8f58
+--- /dev/null
 b/t/lib/M/X.pm
+@@ -0,0 +1,7 @@
++package M::X;
++
++use strict;
++
++sub new { return bless {}, $_[0]; }
++sub frobnitz {}
++1;
+-- 
+1.8.3.1
+
diff --git a/perl-Module-Pluggable.spec b/perl-Module-Pluggable.spec
index cf31f6b..e09296a 100644
--- a/perl-Module-Pluggable.spec
+++ b/perl-Module-Pluggable.spec
@@ -2,12 +2,15 @@ Name:   perl-Module-Pluggable
 # Epoch to compete with perl.spec
 Epoch:  1
 Version:4.8
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Automatically give your module the ability to have plugins
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Module-Pluggable/
 Source0:
http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-%{version}.tar.gz
+# Do not ignore single-letter-named packages, bug #1048703, CPAN RT#89680,
+# fixed in 5.0.
+Patch0: Module-Pluggable-4.8-Allow-single-letter-package-names.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(FindBin)
@@ -47,6 +50,7 @@ into class names. Optionally it instantiates those classes 
for you.
 
 %prep
 %setup -q -n Module-Pluggable-%{version}
+%patch0 -p1
 find -type f -exec chmod -x {} +
 
 %build
@@ -66,6 +70,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Petr Pisar ppi...@redhat.com - 1:4.8-2
+- Do not ignore single-letter-named packages (bug #1048703)
+
 * Tue May 28 2013 Petr Pisar ppi...@redhat.com - 1:4.8-1
 - 4.8 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

[Bug 1048703] Module::Pluggable ignores single-letter-named package names

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048703



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-Module-Pluggable-4.80-292.fc20 has been submitted as an update for Fedora
20.
https://admin.fedoraproject.org/updates/perl-Module-Pluggable-4.80-292.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=lAMvi07YU0a=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 1048703] Module::Pluggable ignores single-letter-named package names

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048703



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Module-Pluggable-4.8-2.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/perl-Module-Pluggable-4.8-2.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=oMuAKrLjqCa=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 914265] perl-DBD-AnyData: FTBFS in rawhide

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=914265

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

   What|Removed |Added

 Status|CLOSED  |ASSIGNED
 Resolution|CANTFIX |---
   Keywords||Reopened



--- Comment #4 from Petr Pisar ppi...@redhat.com ---
The package has not yet been retired. See the source repository.

-- 
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=IMciKrB9bZa=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 Pod-Perldoc-3.21.tar.gz uploaded to lookaside cache by ppisar

2014-01-06 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Pod-Perldoc:

941a71194782f382d9aedcc181df17a9  Pod-Perldoc-3.21.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-Pod-Perldoc] 3.21 bump

2014-01-06 Thread Petr Pisar
commit a1d0c9e2a80c5d865c5d43afd0a74ed196e3b8c7
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jan 6 10:26:57 2014 +0100

3.21 bump

 .gitignore|1 +
 perl-Pod-Perldoc.spec |   16 ++--
 sources   |2 +-
 3 files changed, 12 insertions(+), 7 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9fda874..ca26843 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
 /Pod-Perldoc-3.19.tar.gz
 /Pod-Perldoc-3.19_01.tar.gz
 /Pod-Perldoc-3.20.tar.gz
+/Pod-Perldoc-3.21.tar.gz
diff --git a/perl-Pod-Perldoc.spec b/perl-Pod-Perldoc.spec
index b47e76f..9d3eb25 100644
--- a/perl-Pod-Perldoc.spec
+++ b/perl-Pod-Perldoc.spec
@@ -1,8 +1,8 @@
-%global cpan_version 3.20
+%global cpan_version 3.21
 Name:   perl-Pod-Perldoc
 # let's overwrite the module from perl.srpm
 Version:%(echo '%{cpan_version}' | sed 's/_/./')
-Release:7%{?dist}
+Release:1%{?dist}
 Summary:Look up Perl documentation in Pod format
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -26,8 +26,10 @@ BuildRequires:  perl(File::Temp) = 0.22
 BuildRequires:  perl(HTTP::Tiny)
 BuildRequires:  perl(IO::Handle)
 BuildRequires:  perl(IO::Select)
-BuildRequires:  perl(lib)
+# IPC::Open3 not used by tests
 BuildRequires:  perl(parent)
+# POD2::Base is optional
+# Pod::Checker is not needed if Pod::Simple::Checker is available
 BuildRequires:  perl(Pod::Man) = 2.18
 BuildRequires:  perl(Pod::Simple::Checker)
 BuildRequires:  perl(Pod::Simple::RTF) = 3.16
@@ -56,7 +58,8 @@ Requires:   perl(File::Temp) = 0.22
 Requires:   perl(HTTP::Tiny)
 Requires:   perl(IO::Handle)
 Requires:   perl(IPC::Open3)
-Requires:   perl(lib)
+# POD2::Base is optional
+# Pod::Checker is not needed if Pod::Simple::Checker is available
 Requires:   perl(Pod::Man) = 2.18
 Requires:   perl(Pod::Simple::Checker)
 Requires:   perl(Pod::Simple::RTF) = 3.16
@@ -85,8 +88,6 @@ make %{?_smp_mflags}
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 %{_fixperms} $RPM_BUILD_ROOT/*
-# Correct perldoc.pod location, bug #1010057, CPAN RT#88898
-mv ${RPM_BUILD_ROOT}%{perl_vendorlib}/{Pod,}/perldoc.pod
 
 %check
 make test
@@ -99,6 +100,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Petr Pisar ppi...@redhat.com - 3.21-1
+- 3.21 bump
+
 * Mon Oct 07 2013 Petr Pisar ppi...@redhat.com - 3.20-7
 - Correct perldoc.pod location (bug #1010057)
 
diff --git a/sources b/sources
index 9ccaaa6..69fc3f0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d915bfad087bf394ddffe9fa53c9b79c  Pod-Perldoc-3.20.tar.gz
+941a71194782f382d9aedcc181df17a9  Pod-Perldoc-3.21.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 Business-ISBN-2.07.tar.gz uploaded to lookaside cache by jplesnik

2014-01-06 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Business-ISBN:

c0049fb576b9fc3b2603bf7e9b3e91af  Business-ISBN-2.07.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-Business-ISBN] 2.07 bump

2014-01-06 Thread Jitka Plesnikova
commit d1da8f8e5bcfd7b805ee9d625a9388235b6f9f20
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Jan 6 10:42:16 2014 +0100

2.07 bump

 .gitignore  |1 +
 perl-Business-ISBN.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index ec731b3..1cda0b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Business-ISBN-2.05.tar.gz
 /Business-ISBN-2.05_03.tar.gz
 /Business-ISBN-2.06.tar.gz
+/Business-ISBN-2.07.tar.gz
diff --git a/perl-Business-ISBN.spec b/perl-Business-ISBN.spec
index cec6de4..affe909 100644
--- a/perl-Business-ISBN.spec
+++ b/perl-Business-ISBN.spec
@@ -1,7 +1,7 @@
 Name:   perl-Business-ISBN
-%global cpan_version 2.06
+%global cpan_version 2.07
 Version:%(echo '%{cpan_version}' | tr '_' '.'})
-Release:4%{?dist}
+Release:1%{?dist}
 Summary:Perl module to work with International Standard Book Numbers
 
 Group:  Development/Libraries
@@ -61,6 +61,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Jan 06 2014 Jitka Plesnikova jples...@redhat.com - 2.07-1
+- 2.07 bump
+
 * Wed Aug 14 2013 Jitka Plesnikova jples...@redhat.com - 2.06-4
 - Perl 5.18 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index 3c94565..86b5877 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7348e6da7cb0f87702bd5c4be89baf2f  Business-ISBN-2.06.tar.gz
+c0049fb576b9fc3b2603bf7e9b3e91af  Business-ISBN-2.07.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 1048452] perl-Business-ISBN-2.07 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048452

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Business-ISBN-2.07-1.f
   ||c21
 Resolution|--- |RAWHIDE
Last Closed||2014-01-06 04:51:36



-- 
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=ihLEsrXRVAa=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 Math-MatrixReal-2.11.tar.gz uploaded to lookaside cache by jplesnik

2014-01-06 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Math-MatrixReal:

da1a814cd6ee5263bf16ceafbcc3f22d  Math-MatrixReal-2.11.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-Math-MatrixReal] 2.11 bump

2014-01-06 Thread Jitka Plesnikova
commit 8aad8ea14c8911d820af98a6a097bc9c007011f0
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Jan 6 11:44:12 2014 +0100

2.11 bump

 .gitignore|1 +
 perl-Math-MatrixReal.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d8d36d6..b480edc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Math-MatrixReal-2.05.tar.gz
 /Math-MatrixReal-2.08.tar.gz
 /Math-MatrixReal-2.09.tar.gz
 /Math-MatrixReal-2.10.tar.gz
+/Math-MatrixReal-2.11.tar.gz
diff --git a/perl-Math-MatrixReal.spec b/perl-Math-MatrixReal.spec
index a79b19c..0852a02 100644
--- a/perl-Math-MatrixReal.spec
+++ b/perl-Math-MatrixReal.spec
@@ -1,5 +1,5 @@
 Name:   perl-Math-MatrixReal
-Version:2.10
+Version:2.11
 Release:1%{?dist}
 Summary:Manipulate matrix of reals
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Jitka Plesnikova jples...@redhat.com - 2.11-1
+- 2.11 bump
+
 * Mon Nov 25 2013 Petr Pisar ppi...@redhat.com - 2.10-1
 - 2.10 bump
 
diff --git a/sources b/sources
index 258e95e..73969f7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8b0a9e1d92cbcf00327bbfeed33df4ce  Math-MatrixReal-2.10.tar.gz
+da1a814cd6ee5263bf16ceafbcc3f22d  Math-MatrixReal-2.11.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 1048454] perl-Math-MatrixReal-2.11 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048454

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

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Math-MatrixReal-2.11-1
   ||.fc21



-- 
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=KnpeCdIFj2a=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-Catalyst-Controller-HTML-FormFu

2014-01-06 Thread buildsys


perl-Catalyst-Controller-HTML-FormFu has broken dependencies in the rawhide 
tree:
On x86_64:
perl-Catalyst-Controller-HTML-FormFu-0.09004-4.fc20.noarch requires 
perl(HTML::FormFu::MultiForm)
On i386:
perl-Catalyst-Controller-HTML-FormFu-0.09004-4.fc20.noarch requires 
perl(HTML::FormFu::MultiForm)
On armhfp:
perl-Catalyst-Controller-HTML-FormFu-0.09004-4.fc20.noarch requires 
perl(HTML::FormFu::MultiForm)
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: mojomojo

2014-01-06 Thread buildsys


mojomojo has broken dependencies in the rawhide tree:
On x86_64:
mojomojo-1.10-1.fc20.noarch requires 
perl(HTML::FormFu::Element::reCAPTCHA)
On i386:
mojomojo-1.10-1.fc20.noarch requires 
perl(HTML::FormFu::Element::reCAPTCHA)
On armhfp:
mojomojo-1.10-1.fc20.noarch requires 
perl(HTML::FormFu::Element::reCAPTCHA)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Language-Expr

2014-01-06 Thread buildsys


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


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

[perl-Math-MatrixReal/f20] 2.11 bump

2014-01-06 Thread Jitka Plesnikova
commit f097e233480cf0206713643e4f84a84802c21896
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Jan 6 12:09:24 2014 +0100

2.11 bump

 .gitignore|1 +
 perl-Math-MatrixReal.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d8d36d6..b480edc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Math-MatrixReal-2.05.tar.gz
 /Math-MatrixReal-2.08.tar.gz
 /Math-MatrixReal-2.09.tar.gz
 /Math-MatrixReal-2.10.tar.gz
+/Math-MatrixReal-2.11.tar.gz
diff --git a/perl-Math-MatrixReal.spec b/perl-Math-MatrixReal.spec
index a79b19c..0852a02 100644
--- a/perl-Math-MatrixReal.spec
+++ b/perl-Math-MatrixReal.spec
@@ -1,5 +1,5 @@
 Name:   perl-Math-MatrixReal
-Version:2.10
+Version:2.11
 Release:1%{?dist}
 Summary:Manipulate matrix of reals
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Jitka Plesnikova jples...@redhat.com - 2.11-1
+- 2.11 bump
+
 * Mon Nov 25 2013 Petr Pisar ppi...@redhat.com - 2.10-1
 - 2.10 bump
 
diff --git a/sources b/sources
index 258e95e..73969f7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8b0a9e1d92cbcf00327bbfeed33df4ce  Math-MatrixReal-2.10.tar.gz
+da1a814cd6ee5263bf16ceafbcc3f22d  Math-MatrixReal-2.11.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 1048802] New: perl-ExtUtils-MakeMaker-6.86 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048802

Bug ID: 1048802
   Summary: perl-ExtUtils-MakeMaker-6.86 is available
   Product: Fedora
   Version: rawhide
 Component: perl-ExtUtils-MakeMaker
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 6.86
Current version/release in Fedora Rawhide: 6.84-1.fc21
URL: http://search.cpan.org/dist/ExtUtils-MakeMaker/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=zFshFweP67a=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-Math-MatrixReal/f19] 2.11 bump

2014-01-06 Thread Jitka Plesnikova
commit 45fdca3918390d1b7963143e51022ae991facbd1
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Jan 6 12:19:03 2014 +0100

2.11 bump

 .gitignore|1 +
 perl-Math-MatrixReal.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d8d36d6..b480edc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Math-MatrixReal-2.05.tar.gz
 /Math-MatrixReal-2.08.tar.gz
 /Math-MatrixReal-2.09.tar.gz
 /Math-MatrixReal-2.10.tar.gz
+/Math-MatrixReal-2.11.tar.gz
diff --git a/perl-Math-MatrixReal.spec b/perl-Math-MatrixReal.spec
index bcf37b0..42520c7 100644
--- a/perl-Math-MatrixReal.spec
+++ b/perl-Math-MatrixReal.spec
@@ -1,5 +1,5 @@
 Name:   perl-Math-MatrixReal
-Version:2.10
+Version:2.11
 Release:1%{?dist}
 Summary:Manipulate matrix of reals
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Jitka Plesnikova jples...@redhat.com - 2.11-1
+- 2.11 bump
+
 * Mon Nov 25 2013 Petr Pisar ppi...@redhat.com - 2.10-1
 - 2.10 bump
 
diff --git a/sources b/sources
index 258e95e..73969f7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8b0a9e1d92cbcf00327bbfeed33df4ce  Math-MatrixReal-2.10.tar.gz
+da1a814cd6ee5263bf16ceafbcc3f22d  Math-MatrixReal-2.11.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 1048454] perl-Math-MatrixReal-2.11 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048454



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-Math-MatrixReal-2.11-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-Math-MatrixReal-2.11-1.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=70vQ6iokZna=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-Mozilla-PublicSuffix] Latest public suffix list from publicsuffix.org

2014-01-06 Thread Yanko Kaneti
commit bf45fedf9273e13c21a13238468f22fa40ef4f6f
Author: Yanko Kaneti yan...@declera.com
Date:   Mon Jan 6 13:21:04 2014 +0200

Latest public suffix list from publicsuffix.org

 effective_tld_names.dat|  562 +---
 perl-Mozilla-PublicSuffix.spec |5 +-
 2 files changed, 477 insertions(+), 90 deletions(-)
---
diff --git a/effective_tld_names.dat b/effective_tld_names.dat
index 13b2da6..843df59 100644
--- a/effective_tld_names.dat
+++ b/effective_tld_names.dat
@@ -244,9 +244,8 @@ tas.edu.au
 vic.edu.au
 wa.edu.au
 act.gov.au
-// Removed at request of shae.done...@services.nsw.gov.au, 2010-03-04
-// nsw.gov.au
-nt.gov.au
+// nsw.gov.au  Bug 547985 - Removed at request of 
shae.done...@services.nsw.gov.au
+// nt.gov.au  Bug 940478 - Removed at request of Greg Connors 
greg.conn...@nt.gov.au
 qld.gov.au
 sa.gov.au
 tas.gov.au
@@ -349,7 +348,7 @@ z.bg
 6.bg
 7.bg
 8.bg
-9.bg   
+9.bg
 
 // bh : http://en.wikipedia.org/wiki/.bh
 bh
@@ -401,7 +400,7 @@ mil.bo
 tv.bo
 
 // br : http://registro.br/dominio/dpn.html
-// Updated by registry fne...@registro.br 2011-03-01
+// Submitted by registry fne...@registro.br 2011-03-01
 br
 adm.br
 adv.br
@@ -787,7 +786,7 @@ org.ee
 fie.ee
 
 // eg : http://en.wikipedia.org/wiki/.eg
-eg  
+eg
 com.eg
 edu.eg
 eun.eg
@@ -886,13 +885,12 @@ pvt.ge
 // gf : http://en.wikipedia.org/wiki/.gf
 gf
 
-// gg : http://www.channelisles.net/applic/avextn.shtml
+// gg : http://www.channelisles.net/register-domains/
+// Confirmed by registry ni...@channelisles.net 2013-11-28
 gg
 co.gg
-org.gg
 net.gg
-sch.gg
-gov.gg
+org.gg
 
 // gh : http://en.wikipedia.org/wiki/.gh
 // see also: http://www.nic.gh/reg_now.php
@@ -1003,7 +1001,7 @@ org.hk
 网絡.hk
 组织.hk
 組織.hk
-組织.hk 
+組织.hk
 
 // hm : http://en.wikipedia.org/wiki/.hm
 hm
@@ -1099,16 +1097,18 @@ gov.ie
 // il : http://en.wikipedia.org/wiki/.il
 *.il
 
-// im : https://www.nic.im/pdfs/imfaqs.pdf
+// im : https://www.nic.im/
+// Submitted by registry i...@nic.im 2013-11-15
 im
+ac.im
 co.im
+com.im
 ltd.co.im
-plc.co.im
 net.im
-gov.im
 org.im
-nic.im
-ac.im
+plc.co.im
+tt.im
+tv.im
 
 // in : http://en.wikipedia.org/wiki/.in
 // see also: http://www.inregistry.in/policies/
@@ -1180,9 +1180,9 @@ int.is
 it
 gov.it
 edu.it
-// list of reserved geo-names : 
+// list of reserved geo-names :
 // 
http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazione-versione-6.0.pdf
-// (There is also a list of reserved geo-names corresponding to Italian 
+// (There is also a list of reserved geo-names corresponding to Italian
 // municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
 // not included here.)
 agrigento.it
@@ -1461,13 +1461,12 @@ vi.it
 viterbo.it
 vt.it
 
-// je : http://www.channelisles.net/applic/avextn.shtml
+// je : http://www.channelisles.net/register-domains/
+// Confirmed by registry ni...@channelisles.net 2013-11-28
 je
 co.je
-org.je
 net.je
-sch.je
-gov.je
+org.je
 
 // jm : http://www.com.jm/register.html
 *.jm
@@ -1488,7 +1487,7 @@ jobs
 
 // jp : http://en.wikipedia.org/wiki/.jp
 // http://jprs.co.jp/en/jpdomain.html
-// Updated by registry i...@jprs.jp 2012-05-28
+// Submitted by registry i...@jprs.jp 2012-05-28
 jp
 // jp organizational type names
 ac.jp
@@ -3562,8 +3561,13 @@ gov.mr
 // ms : http://en.wikipedia.org/wiki/.ms
 ms
 
-// mt : https://www.nic.org.mt/dotmt/
-*.mt
+// mt : https://www.nic.org.mt/go/policy
+// Submitted by registry h...@nic.org.mt 2013-11-19
+mt
+com.mt
+edu.mt
+net.mt
+org.mt
 
 // mu : http://en.wikipedia.org/wiki/.mu
 mu
@@ -4255,7 +4259,7 @@ bv.nl
 // no : http://www.norid.no/regelverk/index.en.html
 // The Norwegian registry has declined to notify us of updates. The web pages
 // referenced below are the official source of the data. There is also an
-// announce mailing list: 
+// announce mailing list:
 // https://postlister.uninett.no/sympa/info/norid-diskusjon
 no
 // Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
@@ -5050,16 +5054,6 @@ museum.om
 net.om
 org.om
 pro.om
-!mediaphone.om
-!nawrastelecom.om
-!nawras.om
-!omanmobile.om
-!omanpost.om
-!omantel.om
-!rakpetroleum.om
-!siemens.om
-!songfest.om
-!statecouncil.om
 
 // org : http://en.wikipedia.org/wiki/.org
 org
@@ -6142,7 +6136,7 @@ k12.de.us
 k12.fl.us
 k12.ga.us
 k12.gu.us
-// k12.hi.us  Hawaii has a state-wide DOE login: bug 614565
+// k12.hi.us  Bug 614565 - Hawaii has a state-wide DOE login
 k12.ia.us
 k12.id.us
 k12.il.us
@@ -6173,7 +6167,7 @@ k12.pa.us
 k12.pr.us
 k12.ri.us
 k12.sc.us
-k12.sd.us
+// k12.sd.us  Bug 934131 - Removed at request of James Booze 
james.bo...@k12.sd.us
 k12.tn.us
 k12.tx.us
 k12.ut.us
@@ -6182,7 +6176,7 @@ k12.vt.us
 k12.va.us
 k12.wa.us
 k12.wi.us
-k12.wv.us
+// k12.wv.us  Bug 947705 - Removed at request of Verne Britton 
ve...@wvnet.edu
 k12.wy.us
 
 cc.ak.us
@@ -6294,12 +6288,12 @@ lib.vt.us
 lib.va.us
 lib.wa.us
 lib.wi.us
-lib.wv.us
+// lib.wv.us  Bug 941670 - Removed at 

[Bug 1048806] New: perl-Module-Pluggable-5.1 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048806

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



Latest upstream release: 5.1
Current version/release in Fedora Rawhide: 4.80-291.fc20
URL: http://search.cpan.org/dist/Module-Pluggable/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=kd1MfRFNbYa=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 1048805] New: perl-Module-Load-0.28 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048805

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



Latest upstream release: 0.28
Current version/release in Fedora Rawhide: 0.24-291.fc20
URL: http://search.cpan.org/dist/Module-Load/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=6EqIP6xSv4a=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 1048808] New: perl-PPIx-Regexp-0.036 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048808

Bug ID: 1048808
   Summary: perl-PPIx-Regexp-0.036 is available
   Product: Fedora
   Version: rawhide
 Component: perl-PPIx-Regexp
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 0.036
Current version/release in Fedora Rawhide: 0.035-1.fc21
URL: http://search.cpan.org/dist/PPIx-Regexp/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=R9GTMZYB0Va=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 1048454] perl-Math-MatrixReal-2.11 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048454



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Math-MatrixReal-2.11-1.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/perl-Math-MatrixReal-2.11-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=wH5MKTPZyTa=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-Math-MatrixReal/f18] 2.11 bump

2014-01-06 Thread Jitka Plesnikova
commit c84eb57f62e8b306d35704430a1803ce5592c739
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Jan 6 12:27:37 2014 +0100

2.11 bump

 .gitignore|1 +
 perl-Math-MatrixReal.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d8d36d6..b480edc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Math-MatrixReal-2.05.tar.gz
 /Math-MatrixReal-2.08.tar.gz
 /Math-MatrixReal-2.09.tar.gz
 /Math-MatrixReal-2.10.tar.gz
+/Math-MatrixReal-2.11.tar.gz
diff --git a/perl-Math-MatrixReal.spec b/perl-Math-MatrixReal.spec
index acdcc67..e97ae56 100644
--- a/perl-Math-MatrixReal.spec
+++ b/perl-Math-MatrixReal.spec
@@ -1,5 +1,5 @@
 Name:   perl-Math-MatrixReal
-Version:2.10
+Version:2.11
 Release:1%{?dist}
 Summary:Manipulate matrix of reals
 License:GPL+ or Artistic
@@ -65,6 +65,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Jitka Plesnikova jples...@redhat.com - 2.11-1
+- 2.11 bump
+
 * Mon Nov 25 2013 Petr Pisar ppi...@redhat.com - 2.10-1
 - 2.10 bump
 
diff --git a/sources b/sources
index 258e95e..73969f7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8b0a9e1d92cbcf00327bbfeed33df4ce  Math-MatrixReal-2.10.tar.gz
+da1a814cd6ee5263bf16ceafbcc3f22d  Math-MatrixReal-2.11.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 1048809] New: perl-Test-Output-1.03 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048809

Bug ID: 1048809
   Summary: perl-Test-Output-1.03 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Test-Output
  Keywords: FutureFeature, Triaged
  Assignee: st...@silug.org
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, st...@silug.org



Latest upstream release: 1.03
Current version/release in Fedora Rawhide: 1.02-1.fc21
URL: http://search.cpan.org/dist/Test-Output/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=sVl96vPofYa=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 1048812] New: perl-version-0.9906 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048812

Bug ID: 1048812
   Summary: perl-version-0.9906 is available
   Product: Fedora
   Version: rawhide
 Component: perl-version
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 0.9906
Current version/release in Fedora Rawhide: 0.99.04-2.fc21
URL: http://search.cpan.org/dist/version/

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

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=jYoJRF7YoPa=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 1048454] perl-Math-MatrixReal-2.11 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048454



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-Math-MatrixReal-2.11-1.fc18 has been submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/perl-Math-MatrixReal-2.11-1.fc18

-- 
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=yxTwuSWz28a=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 Module-Pluggable-5.1.tar.gz uploaded to lookaside cache by ppisar

2014-01-06 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Module-Pluggable:

1b71ed7a67ad8c048d1499540bc892ba  Module-Pluggable-5.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-Module-Pluggable] 5.1 bump

2014-01-06 Thread Petr Pisar
commit 22b461253fa9eebe3b13b8d3d50890b351927643
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jan 6 12:40:11 2014 +0100

5.1 bump

 .gitignore |1 +
 perl-Module-Pluggable.spec |   15 ++-
 sources|2 +-
 3 files changed, 16 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 91f1a4e..8995193 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
 /Module-Pluggable-4.7.tar.gz
 /Module-Pluggable-4.8.tar.gz
 /Module-Pluggable-5.0.tar.gz
+/Module-Pluggable-5.1.tar.gz
diff --git a/perl-Module-Pluggable.spec b/perl-Module-Pluggable.spec
index e6f8aa3..1c02496 100644
--- a/perl-Module-Pluggable.spec
+++ b/perl-Module-Pluggable.spec
@@ -1,4 +1,4 @@
-%global cpan_version 5.0
+%global cpan_version 5.1
 Name:   perl-Module-Pluggable
 # Epoch to compete with perl.spec
 Epoch:  1
@@ -31,6 +31,16 @@ BuildRequires:  perl(vars)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::More) = 0.62
+BuildRequires:  perl(warnings)
+# Optional tests:
+# App::FatPacker not yet packaged
+#%%if !%%{defined perl_bootstrap}
+#BuildRequires:  perl(App::FatPacker) = 0.10.0
+#BuildRequires:  perl(Cwd)
+#BuildRequires:  perl(File::Copy)
+#BuildRequires:  perl(File::Path)
+#BuildRequires:  perl(File::Temp)
+#%%endif
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   perl(File::Spec::Functions) = 3.00
 %if 0%(perl -e 'print $]  5.017')
@@ -67,6 +77,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jan 06 2014 Petr Pisar ppi...@redhat.com - 1:5.10-1
+- 5.1 bump
+
 * Mon Jan 06 2014 Petr Pisar ppi...@redhat.com - 1:5.00-1
 - 5.0 bump
 
diff --git a/sources b/sources
index 5feaff0..636cf1e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-15a539c8d0b5e61d8a475949127fc682  Module-Pluggable-5.0.tar.gz
+1b71ed7a67ad8c048d1499540bc892ba  Module-Pluggable-5.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

File Fennec-2.013.tar.gz uploaded to lookaside cache by pghmcfc

2014-01-06 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Fennec:

8baf56fee86640e7bf48041f4ac898e8  Fennec-2.013.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-Fennec] Update to 2.013

2014-01-06 Thread Paul Howarth
commit ece38db86c181bceef664c0a227178dbe2fc2742
Author: Paul Howarth p...@city-fan.org
Date:   Mon Jan 6 13:13:34 2014 +

Update to 2.013

- New upstream release 2.013
  - Add extra debugging for Dreamhost issue
  - Run 'before_all' after waiting, not before

 perl-Fennec.spec |7 ++-
 sources  |2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/perl-Fennec.spec b/perl-Fennec.spec
index 2fddf4e..d5888ba 100644
--- a/perl-Fennec.spec
+++ b/perl-Fennec.spec
@@ -2,7 +2,7 @@
 # guarded by %{?perl_bootstrap} since it requires perl(Fennec) itself
 
 Name:  perl-Fennec
-Version:   2.012
+Version:   2.013
 Release:   1%{?dist}
 Summary:   A tester's toolbox, and best friend
 License:   GPL+ or Artistic
@@ -99,6 +99,11 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/Test::Workflow::Test.3pm*
 
 %changelog
+* Mon Jan  6 2014 Paul Howarth p...@city-fan.org - 2.013-1
+- Update to 2.013
+  - Add extra debugging for Dreamhost issue
+  - Run 'before_all' after waiting, not before
+
 * Mon Dec  9 2013 Paul Howarth p...@city-fan.org - 2.012-1
 - Update to 2.012
   - Fix around_all
diff --git a/sources b/sources
index 75cfdf1..5a0d609 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-71ecafd843037bc6b48e5b7ba3f84bbc  Fennec-2.012.tar.gz
+8baf56fee86640e7bf48041f4ac898e8  Fennec-2.013.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-Fennec] Created tag perl-Fennec-2.013-1.fc21

2014-01-06 Thread Paul Howarth
The lightweight tag 'perl-Fennec-2.013-1.fc21' was created pointing to:

 ece38db... Update to 2.013
--
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 1048806] perl-Module-Pluggable-5.1 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048806

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

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Module-Pluggable-5.10-
   ||1.fc21
 Resolution|--- |RAWHIDE
Last Closed||2014-01-06 09:37:02



-- 
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=1e8oKSMROPa=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 ExtUtils-MakeMaker-6.86.tar.gz uploaded to lookaside cache by ppisar

2014-01-06 Thread Petr Pisar
A file has been added to the lookaside cache for perl-ExtUtils-MakeMaker:

c26d8a0e0a34b3c4a035808c298da697  ExtUtils-MakeMaker-6.86.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-ExtUtils-MakeMaker] Add rebased patch

2014-01-06 Thread Petr Pisar
commit 2af1f7d0c8ea2d8a312c75f74ec85269f59a4869
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jan 6 16:05:54 2014 +0100

Add rebased patch

 ExtUtils-MakeMaker-6.86-USE_MM_LD_RUN_PATH.patch |  136 ++
 1 files changed, 136 insertions(+), 0 deletions(-)
---
diff --git a/ExtUtils-MakeMaker-6.86-USE_MM_LD_RUN_PATH.patch 
b/ExtUtils-MakeMaker-6.86-USE_MM_LD_RUN_PATH.patch
new file mode 100644
index 000..55283da
--- /dev/null
+++ b/ExtUtils-MakeMaker-6.86-USE_MM_LD_RUN_PATH.patch
@@ -0,0 +1,136 @@
+From 39185284d33a71596ea3196ad1828a3f64e12482 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Thu, 12 Jan 2012 17:05:19 +0100
+Subject: [PATCH 1/2] Do not set RPATH by default
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Former behavior can be forced by setting USE_MM_LD_RUN_PATH
+environment variable to 1.
+
+This is copy from `perl' package.
+See https://bugzilla.redhat.com/show_bug.cgi?id=773622.
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ lib/ExtUtils/Liblist.pm   |  5 
+ lib/ExtUtils/MM_Unix.pm   |  2 +-
+ lib/ExtUtils/MakeMaker.pm | 58 +--
+ 3 files changed, 62 insertions(+), 3 deletions(-)
+
+diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
+index 3ffe3df..e629bf7 100644
+--- a/lib/ExtUtils/Liblist.pm
 b/lib/ExtUtils/Liblist.pm
+@@ -88,6 +88,11 @@ libraries.  LD_RUN_PATH is a colon separated list of the 
directories
+ in LDLOADLIBS. It is passed as an environment variable to the process
+ that links the shared library.
+ 
++Fedora extension: This generation of LD_RUN_PATH is disabled by default.
++To use the generated LD_RUN_PATH for all links, set the USE_MM_LD_RUN_PATH
++MakeMaker object attribute / argument, (or set the $USE_MM_LD_RUN_PATH
++environment variable).
++
+ =head2 BSLOADLIBS
+ 
+ List of those libraries that are needed but can be linked in
+diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
+index 72d04fb..d78e920 100644
+--- a/lib/ExtUtils/MM_Unix.pm
 b/lib/ExtUtils/MM_Unix.pm
+@@ -946,7 +946,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) 
$(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO
+ }
+ 
+ my $ld_run_path_shell = ;
+-if ($self-{LD_RUN_PATH} ne ) {
++if (($self-{LD_RUN_PATH} ne )  ($self-{USE_MM_LD_RUN_PATH})) {
+   $ld_run_path_shell = 'LD_RUN_PATH=$(LD_RUN_PATH) ';
+ }
+ 
+diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
+index d1bcfe0..df69e94 100644
+--- a/lib/ExtUtils/MakeMaker.pm
 b/lib/ExtUtils/MakeMaker.pm
+@@ -282,7 +282,7 @@ sub full_setup {
+ PERL_SRC PERM_DIR PERM_RW PERM_RWX MAGICXS
+ PL_FILES PM PM_FILTER PMLIBDIRS PMLIBPARENTDIRS POLLUTE PPM_INSTALL_EXEC 
PPM_UNINSTALL_EXEC
+ PPM_INSTALL_SCRIPT PPM_UNINSTALL_SCRIPT PREREQ_FATAL PREREQ_PM 
PREREQ_PRINT PRINT_PREREQ
+-SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST VERSION VERSION_FROM XS XSOPT 
XSPROTOARG
++SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST USE_MM_LD_RUN_PATH VERSION 
VERSION_FROM XS XSOPT XSPROTOARG
+ XS_VERSION clean depend dist dynamic_lib linkext macro realclean
+ tool_autosplit
+ 
+@@ -432,7 +432,27 @@ sub new {
+ # PRINT_PREREQ is RedHatism.
+ if (@ARGV =~ /\bPRINT_PREREQ\b/) {
+ $self-_PRINT_PREREQ;
+-   }
++}
++
++# USE_MM_LD_RUN_PATH - another RedHatism to disable automatic RPATH 
generation
++if ( ( ! $self-{USE_MM_LD_RUN_PATH} )
++   ( (@ARGV =~ /\bUSE_MM_LD_RUN_PATH(=([01]))?\b/)
++||( exists( $ENV{USE_MM_LD_RUN_PATH} )
++   ( $ENV{USE_MM_LD_RUN_PATH} =~ /([01])?$/ )
++   )
++)
++   )
++{
++   my $v = $1;
++   if( $v )
++   {
++   $v = ($v=~/=([01])$/)[0];
++   }else
++   {
++   $v = 1;
++   };
++   $self-{USE_MM_LD_RUN_PATH}=$v;
++};
+ 
+ print MakeMaker (v$VERSION)\n if $Verbose;
+ if (-f MANIFEST  ! -f Makefile  ! $ENV{PERL_CORE}){
+@@ -2626,6 +2646,40 @@ precedence.  A typemap in the current directory has 
highest
+ precedence, even if it isn't listed in TYPEMAPS.  The default system
+ typemap has lowest precedence.
+ 
++=item USE_MM_LD_RUN_PATH
++
++boolean
++The Fedora perl MakeMaker distribution differs from the standard
++upstream release in that it disables use of the MakeMaker generated
++LD_RUN_PATH by default, UNLESS this attribute is specified , or the
++USE_MM_LD_RUN_PATH environment variable is set during the MakeMaker run.
++
++The upstream MakeMaker will set the ld(1) environment variable LD_RUN_PATH
++to the concatenation of every -L ld(1) option directory in which a -l ld(1)
++option library is found, which is used as the ld(1) -rpath option if none
++is specified. This means that, if your application builds shared libraries
++and your MakeMaker application links to them, that the absolute paths of the
++libraries in the build tree will be inserted into the RPATH header of all
++MakeMaker 

File MailTools-2.13.tar.gz uploaded to lookaside cache by pghmcfc

2014-01-06 Thread Paul Howarth
A file has been added to the lookaside cache for perl-MailTools:

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

[perl-Test-Output] Update to 1.03

2014-01-06 Thread Paul Howarth
commit 700013512df35489c37652c208eb9d1f6710c4ec
Author: Paul Howarth p...@city-fan.org
Date:   Mon Jan 6 15:48:46 2014 +

Update to 1.03

- New upstream release 1.03
  - Get rid of MYMETA
- Upstream dropped TODO

 perl-Test-Output.spec |   13 -
 sources   |2 +-
 2 files changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/perl-Test-Output.spec b/perl-Test-Output.spec
index 01612ea..b33eaaf 100644
--- a/perl-Test-Output.spec
+++ b/perl-Test-Output.spec
@@ -1,5 +1,5 @@
 Name:   perl-Test-Output
-Version:1.02
+Version:1.03
 Release:1%{?dist}
 Summary:Utilities to test STDOUT and STDERR messages
 License:GPL+ or Artistic
@@ -33,20 +33,23 @@ make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+%{_fixperms} $RPM_BUILD_ROOT
 
 %check
 make test
 
 %files
-%doc Changes LICENSE README TODO
+%doc Changes LICENSE README
 %{perl_vendorlib}/Test/
 %{_mandir}/man3/Test::Output.3pm*
 
 %changelog
+* Mon Jan  6 2014 Paul Howarth p...@city-fan.org - 1.03-1
+- Update to 1.03
+  - Get rid of MYMETA
+- Upstream dropped TODO
+
 * Tue Oct 22 2013 Paul Howarth p...@city-fan.org - 1.02-1
 - Update to 1.02
   - Re-do everything with Capture::Tiny rather than ties
diff --git a/sources b/sources
index e6cfc2e..2b7aea1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d80890160737cdf4c3241d48428d33ab  Test-Output-1.02.tar.gz
+903485edb382f5a18a5029978d1febf6  Test-Output-1.03.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1048809] perl-Test-Output-1.03 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048809

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

   What|Removed |Added

 Status|NEW |CLOSED
 CC||p...@city-fan.org
   Fixed In Version||perl-Test-Output-1.03-1.fc2
   ||1
 Resolution|--- |RAWHIDE
   Assignee|st...@silug.org |p...@city-fan.org
Last Closed||2014-01-06 11:00:16



--- Comment #1 from Paul Howarth p...@city-fan.org ---
Built: perl-Test-Output-1.03-1.fc21

-- 
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=ucN6QSKBcBa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Output] Created tag perl-Test-Output-1.03-1.fc21

2014-01-06 Thread Paul Howarth
The lightweight tag 'perl-Test-Output-1.03-1.fc21' was created pointing to:

 7000135... Update to 1.03
--
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 1044943] perl-Gtk2 GUI programs fails to start when using DBD::Pg

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1044943

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

   What|Removed |Added

 CC||ppi...@redhat.com



--- Comment #3 from Petr Pisar ppi...@redhat.com ---
I did not looked what's the problem, just as a remark, LC_NUMERIC has always
been a problem in perl and especially in recent releases. Now, there is a huge
patch set coming into upstream development tree aiming to solve it
https://www.mail-archive.com/perl5-changes@perl.org/msg37800.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=tSORGrTeiOa=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 1048316] missing dependency

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048316

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

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
Package perl-Mail-Box-2.107-1.el6.1:
* should fix your issue,
* was pushed to the Fedora EPEL 6 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=epel-testing perl-Mail-Box-2.107-1.el6.1'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-EPEL-2014-0059/perl-Mail-Box-2.107-1.el6.1
then log in and leave karma (feedback).

-- 
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=PfwgC82ZXba=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 1049139] New: Please apply upstream case sensitivity patch

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1049139

Bug ID: 1049139
   Summary: Please apply upstream case sensitivity patch
   Product: Fedora
   Version: 19
 Component: perl-Syntax-Highlight-Engine-Kate
  Assignee: jples...@redhat.com
  Reporter: jfe...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
   External Bug ID: CPAN 84982



Created attachment 846451
  -- https://bugzilla.redhat.com/attachment.cgi?id=846451action=edit
case insensitive plugin matching

Description of problem:
Hi, publican needs this patch [1  attached] to satisfy #919474 on Fedora.

1: https://rt.cpan.org/Ticket/Display.html?id=84982

Version-Release number of selected component (if applicable):
0.08-3

How reproducible:
Always

Steps to Reproduce:
1. perl -MSyntax::Highlight::Engine::Kate -e 'my $hl = new
Syntax::Highlight::Engine::Kate(); $hl-languagePlug(xml);'

Actual results:
undefined language: xml at
/usr/share/perl5/vendor_perl/Syntax/Highlight/Engine/Kate.pm line 638.


Expected results:
$ perl -MSyntax::Highlight::Engine::Kate -e 'my $hl = new
Syntax::Highlight::Engine::Kate(); $hl-languagePlug(xml, 1);'
substituting language XML for xml at
/usr/share/perl5/vendor_perl/Syntax/Highlight/Engine/Kate.pm line 626.

Additional info:
The patch has been pulled upstream but there is no date for a new release.

https://github.com/szabgab/Syntax-Highlight-Engine-Kate/pull/7/commits

If you don't supply the second parameter, or set it to 0, the behaviour remains
the same as it currently behaves.

-- 
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=BM9FyBdmT9a=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 1049139] Please apply upstream case sensitivity patch

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1049139



--- Comment #1 from Jeff Fearn jfe...@redhat.com ---
Created attachment 846452
  -- https://bugzilla.redhat.com/attachment.cgi?id=846452action=edit
patch for spec file

-- 
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=9A5GOdrpmxa=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 Module-Load-0.28.tar.gz uploaded to lookaside cache by ppisar

2014-01-06 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Module-Load:

93164909fa15c61d26c03f930ef345e6  Module-Load-0.28.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-Module-Load] 0.28 bump

2014-01-06 Thread Petr Pisar
commit bd426f7a6888e07420eb724e623451efb03afa0d
Author: Petr Písař ppi...@redhat.com
Date:   Tue Jan 7 08:03:16 2014 +0100

0.28 bump

 .gitignore|1 +
 perl-Module-Load.spec |   11 +++
 sources   |2 +-
 3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 464b537..742fc15 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Module-Load-0.12.tar.gz
 /Module-Load-0.24.tar.gz
+/Module-Load-0.28.tar.gz
diff --git a/perl-Module-Load.spec b/perl-Module-Load.spec
index 2c85397..8310961 100644
--- a/perl-Module-Load.spec
+++ b/perl-Module-Load.spec
@@ -1,8 +1,8 @@
 Name:   perl-Module-Load
 # Epoch to compete with perl.spec
 Epoch:  1
-Version:0.24
-Release:291%{?dist}
+Version:0.28
+Release:1%{?dist}
 Summary:Run-time require of both modules and files
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -15,9 +15,9 @@ BuildRequires:  perl(strict)
 # Run-time:
 BuildRequires:  perl(File::Spec)
 # Tests:
-BuildRequires:  perl(lib)
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Test::More) = 0.94
 BuildRequires:  perl(vars)
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
@@ -54,6 +54,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jan 07 2014 Petr Pisar ppi...@redhat.com - 1:0.28-1
+- 0.28 bump
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.24-291
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index 7912fe1..001c9e2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3fb7b6ade15cfeb3379d1a0c06c32e2f  Module-Load-0.24.tar.gz
+93164909fa15c61d26c03f930ef345e6  Module-Load-0.28.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 1048808] perl-PPIx-Regexp-0.036 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048808



--- Comment #1 from Petr Pisar ppi...@redhat.com ---
This is a pure bugfix release suitable for F≥19.

-- 
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=WiR9aDroEpa=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 1048805] perl-Module-Load-0.28 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048805

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

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-Module-Load-0.28-1.fc2
   ||1
 Resolution|--- |RAWHIDE
Last Closed||2014-01-07 02:14:24



-- 
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=Sv4xAil7hKa=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 PPIx-Regexp-0.036.tar.gz uploaded to lookaside cache by ppisar

2014-01-06 Thread Petr Pisar
A file has been added to the lookaside cache for perl-PPIx-Regexp:

a5f778ee5c334f2d41cb944262ef1040  PPIx-Regexp-0.036.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-Syntax-Highlight-Engine-Kate] Apply upstream case sensitivity patch (CPAN RT#84982)

2014-01-06 Thread Jitka Plesnikova
commit 95ba8dd39475023d86672cfee5e7ecd02b6d39af
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Jan 7 08:41:48 2014 +0100

Apply upstream case sensitivity patch (CPAN RT#84982)

 ...ight-Engine-Kate-0.08-RT84982-insensitive.patch |   52 
 perl-Syntax-Highlight-Engine-Kate.spec |   10 +++-
 2 files changed, 60 insertions(+), 2 deletions(-)
---
diff --git a/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch 
b/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
new file mode 100644
index 000..9bfdff7
--- /dev/null
+++ b/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
@@ -0,0 +1,52 @@
+--- Syntax-Highlight-Engine-Kate-0.07/lib/Syntax/Highlight/Engine/Kate.pm  
2012-09-23 20:01:18.0 +1000
 Syntax-Highlight-Engine-Kate-inse/lib/Syntax/Highlight/Engine/Kate.pm  
2013-05-02 11:47:22.117779928 +1000
+@@ -616,11 +616,30 @@
+ }
+ 
+ sub languagePlug {
+-  my ($self, $req) = @_;
++  my ($self, $req, $insensitive) = @_;
++
+   unless (exists($self-{'syntaxes'}-{$req})) {
+-  warn undefined language: $req;
+-  return undef;
++  if (defined($insensitive)  $insensitive) {
++  my $matched = 0;
++  foreach my $key (keys(%{$self-{'syntaxes'}})) {
++  if ($key =~ /^$req$/i) {
++  warn substituting language $key for 
$req;
++  $req = $key;
++  $matched = 1;
++  last;
++  }
++  }
++
++  unless ($matched) {
++  warn undefined language: $req;
++  return undef;
++  }
++  } else {
++  warn undefined language: $req;
++  return undef;
++  }
+   }
++
+   return $self-{'syntaxes'}-{$req};
+ }
+ 
+@@ -804,9 +823,13 @@
+ 
+ returns a list of languages for which plugins have been defined.
+ 
+-=item BlanguagePlug(I$language);
++=item BlanguagePlug(I$language, I?$insensitive?);
++
++Returns the module name of the plugin for B$language.
++
++If B$insensitive is set it will also try to match names ignoring case and 
return the correct module name of the plugin.
+ 
+-returns the module name of the plugin for B$language
++e.g. $highlighter-languagePlug('HtMl', 1); will return 'HTML'.
+ 
+ =item BlanguagePropose(I$filename);
+ 
diff --git a/perl-Syntax-Highlight-Engine-Kate.spec 
b/perl-Syntax-Highlight-Engine-Kate.spec
index b030f39..a471401 100644
--- a/perl-Syntax-Highlight-Engine-Kate.spec
+++ b/perl-Syntax-Highlight-Engine-Kate.spec
@@ -1,11 +1,13 @@
 Name:   perl-Syntax-Highlight-Engine-Kate
 Version:0.08
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Port to Perl of the syntax highlight engine of the Kate text 
editor
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Syntax-Highlight-Engine-Kate/
 Source0:
http://www.cpan.org/authors/id/S/SZ/SZABGAB/Syntax-Highlight-Engine-Kate-%{version}.tar.gz
+# Add support case insensitive names (CPAN RT#84982)
+Patch0: Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(Config)
@@ -44,6 +46,7 @@ engine of the Kate text editor.
 
 %prep
 %setup -q -n Syntax-Highlight-Engine-Kate-%{version}
+%patch0 -p1
 find -type f -exec chmod -c -x {} +
 
 %build
@@ -64,6 +67,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jan 07 2014 Jitka Plesnikova jples...@redhat.com - 0.08-4
+- Apply upstream case sensitivity patch (CPAN RT#84982) - jfe...@redhat.com
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.08-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
@@ -128,7 +134,7 @@ make test
 * Mon May  4 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-3
 - noarch, remove doubled Alerts
 
-* Wed Apr 23 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-2
+* Wed Apr 22 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-2
 - generate again new spec
 
 * Wed Apr 22 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-1
--
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-PPIx-Regexp] 0.036 bump

2014-01-06 Thread Petr Pisar
commit 2623deabe9286158be8fb72d4967301f3eb5af2e
Author: Petr Písař ppi...@redhat.com
Date:   Tue Jan 7 08:41:32 2014 +0100

0.036 bump

 .gitignore|1 +
 perl-PPIx-Regexp.spec |8 ++--
 sources   |2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c67cb3c..5acf429 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,3 +24,4 @@ PPIx-Regexp-0.007.tar.gz
 /PPIx-Regexp-0.033.tar.gz
 /PPIx-Regexp-0.034.tar.gz
 /PPIx-Regexp-0.035.tar.gz
+/PPIx-Regexp-0.036.tar.gz
diff --git a/perl-PPIx-Regexp.spec b/perl-PPIx-Regexp.spec
index 2afc290..d667e5b 100644
--- a/perl-PPIx-Regexp.spec
+++ b/perl-PPIx-Regexp.spec
@@ -1,5 +1,5 @@
 Name:   perl-PPIx-Regexp
-Version:0.035
+Version:0.036
 Release:1%{?dist}
 Summary:Represent a regular expression of some sort
 License:GPL+ or Artistic
@@ -14,7 +14,6 @@ BuildRequires:  perl(lib)
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
-BuildRequires:  perl(YAML)
 # Run-time:
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
@@ -26,7 +25,9 @@ BuildRequires:  perl(Task::Weaken)
 # Optional run-time:
 BuildRequires:  perl(Encode)
 # Tests:
+# Data::Dumper not used
 BuildRequires:  perl(Test::More) = 0.88
+# YAML not used
 # Optional tests:
 BuildRequires:  perl(charnames)
 # Text::CSV is not used
@@ -65,6 +66,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jan 07 2014 Petr Pisar ppi...@redhat.com - 0.036-1
+- 0.036 bump
+
 * Tue Nov 19 2013 Petr Pisar ppi...@redhat.com - 0.035-1
 - 0.035 bump
 
diff --git a/sources b/sources
index 46629f4..1336379 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-f8493e798d053583e3c3ea22653d6fa3  PPIx-Regexp-0.035.tar.gz
+a5f778ee5c334f2d41cb944262ef1040  PPIx-Regexp-0.036.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-Syntax-Highlight-Engine-Kate/f20] Apply upstream case sensitivity patch (CPAN RT#84982)

2014-01-06 Thread Jitka Plesnikova
commit 8879f9a8ab869297b1e425e4e481424ded45c951
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Jan 7 08:54:16 2014 +0100

Apply upstream case sensitivity patch (CPAN RT#84982)

 ...ight-Engine-Kate-0.08-RT84982-insensitive.patch |   52 
 perl-Syntax-Highlight-Engine-Kate.spec |   10 +++-
 2 files changed, 60 insertions(+), 2 deletions(-)
---
diff --git a/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch 
b/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
new file mode 100644
index 000..9bfdff7
--- /dev/null
+++ b/Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
@@ -0,0 +1,52 @@
+--- Syntax-Highlight-Engine-Kate-0.07/lib/Syntax/Highlight/Engine/Kate.pm  
2012-09-23 20:01:18.0 +1000
 Syntax-Highlight-Engine-Kate-inse/lib/Syntax/Highlight/Engine/Kate.pm  
2013-05-02 11:47:22.117779928 +1000
+@@ -616,11 +616,30 @@
+ }
+ 
+ sub languagePlug {
+-  my ($self, $req) = @_;
++  my ($self, $req, $insensitive) = @_;
++
+   unless (exists($self-{'syntaxes'}-{$req})) {
+-  warn undefined language: $req;
+-  return undef;
++  if (defined($insensitive)  $insensitive) {
++  my $matched = 0;
++  foreach my $key (keys(%{$self-{'syntaxes'}})) {
++  if ($key =~ /^$req$/i) {
++  warn substituting language $key for 
$req;
++  $req = $key;
++  $matched = 1;
++  last;
++  }
++  }
++
++  unless ($matched) {
++  warn undefined language: $req;
++  return undef;
++  }
++  } else {
++  warn undefined language: $req;
++  return undef;
++  }
+   }
++
+   return $self-{'syntaxes'}-{$req};
+ }
+ 
+@@ -804,9 +823,13 @@
+ 
+ returns a list of languages for which plugins have been defined.
+ 
+-=item BlanguagePlug(I$language);
++=item BlanguagePlug(I$language, I?$insensitive?);
++
++Returns the module name of the plugin for B$language.
++
++If B$insensitive is set it will also try to match names ignoring case and 
return the correct module name of the plugin.
+ 
+-returns the module name of the plugin for B$language
++e.g. $highlighter-languagePlug('HtMl', 1); will return 'HTML'.
+ 
+ =item BlanguagePropose(I$filename);
+ 
diff --git a/perl-Syntax-Highlight-Engine-Kate.spec 
b/perl-Syntax-Highlight-Engine-Kate.spec
index b030f39..a471401 100644
--- a/perl-Syntax-Highlight-Engine-Kate.spec
+++ b/perl-Syntax-Highlight-Engine-Kate.spec
@@ -1,11 +1,13 @@
 Name:   perl-Syntax-Highlight-Engine-Kate
 Version:0.08
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Port to Perl of the syntax highlight engine of the Kate text 
editor
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Syntax-Highlight-Engine-Kate/
 Source0:
http://www.cpan.org/authors/id/S/SZ/SZABGAB/Syntax-Highlight-Engine-Kate-%{version}.tar.gz
+# Add support case insensitive names (CPAN RT#84982)
+Patch0: Syntax-Highlight-Engine-Kate-0.08-RT84982-insensitive.patch
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(Config)
@@ -44,6 +46,7 @@ engine of the Kate text editor.
 
 %prep
 %setup -q -n Syntax-Highlight-Engine-Kate-%{version}
+%patch0 -p1
 find -type f -exec chmod -c -x {} +
 
 %build
@@ -64,6 +67,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jan 07 2014 Jitka Plesnikova jples...@redhat.com - 0.08-4
+- Apply upstream case sensitivity patch (CPAN RT#84982) - jfe...@redhat.com
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.08-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
@@ -128,7 +134,7 @@ make test
 * Mon May  4 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-3
 - noarch, remove doubled Alerts
 
-* Wed Apr 23 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-2
+* Wed Apr 22 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-2
 - generate again new spec
 
 * Wed Apr 22 2009 Marcela Mašláňová mmasl...@redhat.com 0.04-1
--
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 1048808] perl-PPIx-Regexp-0.036 is available

2014-01-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1048808

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

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-PPIx-Regexp-0.036-1.fc
   ||21



-- 
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=zcnE38aCmqa=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