[Bug 1199972] perl-Gtk3-0.019-1.fc23 FBTFS: Can't use string (320) as an ARRAY ref while strict refs in use at t/overrides.t line 235.

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199972

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

   What|Removed |Added

Summary|perl-Gtk3-0.019-1.fc23  |perl-Gtk3-0.019-1.fc23
   |FBTFS:  |FBTFS: Can't use string
   ||(320) as an ARRAY ref
   ||while strict refs in use
   ||at t/overrides.t line 235.



-- 
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=80lCd4Xqmja=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-DBI] Repackage source tarball to remove non-free DBI/FAQ.pm

2015-03-09 Thread Jitka Plesnikova
commit a664819767bb20ca681904cc14d365900fdf34f5
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Mar 9 13:53:34 2015 +0100

Repackage source tarball to remove non-free DBI/FAQ.pm

 .gitignore|  1 +
 perl-DBI.spec | 13 +++--
 sources   |  2 +-
 strip_FAQ.sh  | 41 +
 4 files changed, 54 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e7b18fb..64b0874 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@ DBI-1.613.tar.gz
 /DBI-1.631.tar.gz
 /DBI-1.632.tar.gz
 /DBI-1.633.tar.gz
+/DBI-1.633_repackaged.tar.gz
diff --git a/perl-DBI.spec b/perl-DBI.spec
index bd72509..7a448cb 100644
--- a/perl-DBI.spec
+++ b/perl-DBI.spec
@@ -10,12 +10,18 @@
 
 Name:   perl-DBI
 Version:1.633
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:A database access API for perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://dbi.perl.org/
-Source0:http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+# The source tarball must be repackaged to remove the DBI/FAQ.pm, since the
+# license is not a FSF free license. 
+# When upgrading, download the new source tarball, and run 
+# ./strip-FAQ.sh version to produce the -repackaged tarball.
+# Source0:
http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+Source0:DBI-%{version}_repackaged.tar.gz
+Source1:strip_FAQ.sh
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Find)
@@ -165,6 +171,9 @@ make test
 %endif
 
 %changelog
+* Mon Mar 09 2015 Jitka Plesnikova jples...@redhat.com - 1.633-2
+- Repackage source tarball to remove non-free DBI/FAQ.pm (bug #1199532)
+
 * Tue Jan 13 2015 Jitka Plesnikova jples...@redhat.com - 1.633-1
 - 1.633 bump
 
diff --git a/sources b/sources
index 480df6b..4b2be8d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b4fe13b9a51c1446c5f3cf93e69a2044  DBI-1.633.tar.gz
+edb8878df0f086d2759ce688a0359164  DBI-1.633_repackaged.tar.gz
diff --git a/strip_FAQ.sh b/strip_FAQ.sh
new file mode 100755
index 000..8d8f138
--- /dev/null
+++ b/strip_FAQ.sh
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+version=$1
+[ -z $version ]  { echo Usage: $0 version; exit 1; }
+
+# files to be removed without the main DBI-version/ prefix
+declare -a REMOVE
+REMOVE[${#REMOVE[*]}]=lib/DBI/FAQ.pm
+
+orig=DBI-${version}
+orig_tgz=${orig}.tar.gz
+repackaged=${orig}_repackaged
+repackaged_tgz=${repackaged}.tar.gz
+
+# pre checks
+[ ! -f ${orig_tgz} ]  { echo ERROR: ${orig_tgz} does not exist; exit 1; }
+[ -f ${repackaged_tgz} ]  { echo ERROR: ${repackaged_tgz} already exist; 
exit 1; }
+
+# repackage
+tdir=`mktemp -d tmpXX`
+pushd ${tdir}
+
+tar -xpzf ../${orig_tgz}
+for file in ${REMOVE[@]}; do
+rm -rf ${orig}/${file}
+done
+tar -cpzf ../${repackaged_tgz} ${orig}
+
+popd
+rm -rf ${tdir}
+
+# post checks
+RET=0
+for file in ${REMOVE[@]}; do
+found=$(tar -ztvf ${repackaged_tgz} | grep ${file})
+[ -n $found ]  { echo ERROR: file ${file} is still in the repackaged 
archive.; RET=1; }
+done
+
+[ $RET == 0 ]  echo Sucessfully repackaged ${orig}: ${repackaged_tgz}
+
+exit $RET
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DBD-Pg] Document licenses

2015-03-09 Thread Petr Pisar
commit 4d67582b19632178ec7647c3c891c4bedef197b9
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 14:46:02 2015 +0100

Document licenses

 perl-DBD-Pg.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/perl-DBD-Pg.spec b/perl-DBD-Pg.spec
index c0dbf56..469c4fe 100644
--- a/perl-DBD-Pg.spec
+++ b/perl-DBD-Pg.spec
@@ -2,6 +2,8 @@ Name:   perl-DBD-Pg
 Summary:A PostgreSQL interface for perl
 Version:3.5.1
 Release:1%{?dist}
+# Pg.pm, README:Points to directory which contains GPLv2+ and Artistic
+# other files:  Same as Perl (GPL+ or Artistic)
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/T/TU/TURNSTEP/DBD-Pg-%{version}.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 DBI-1.631_repackaged.tar.gz uploaded to lookaside cache by jplesnik

2015-03-09 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-DBI:

45c453f9e4d233f1e16f7c9e46f6787f  DBI-1.631_repackaged.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-DBI/f21] Repackage source tarball to remove non-free DBI/FAQ.pm

2015-03-09 Thread Jitka Plesnikova
commit 0047a33f4e9d4ea7b05e564acaa1d04be512e74d
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Mar 9 14:57:01 2015 +0100

Repackage source tarball to remove non-free DBI/FAQ.pm

 .gitignore|  1 +
 perl-DBI.spec | 14 --
 sources   |  2 +-
 strip_FAQ.sh  | 41 +
 4 files changed, 55 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 8f8db17..e44abc2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@ DBI-1.613.tar.gz
 /DBI-1.628.tar.gz
 /DBI-1.630.tar.gz
 /DBI-1.631.tar.gz
+/DBI-1.631_repackaged.tar.gz
diff --git a/perl-DBI.spec b/perl-DBI.spec
index 59bcffb..fa5a779 100644
--- a/perl-DBI.spec
+++ b/perl-DBI.spec
@@ -10,12 +10,19 @@
 
 Name:   perl-DBI
 Version:1.631
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:A database access API for perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://dbi.perl.org/
-Source0:http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+# The source tarball must be repackaged to remove the DBI/FAQ.pm, since the
+# license is not a FSF free license. 
+# When upgrading, download the new source tarball, and run 
+# ./strip-FAQ.sh version to produce the -repackaged tarball.
+# Source0:   http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+Source0:DBI-%{version}_repackaged.tar.gz
+Source1:strip_FAQ.sh
+
 # Add a security warning about use of RPC::PlClient, bug #1030578, CPAN 
RT#90475
 Patch0: DBI-1.630-Security-notice-for-Proxy.patch
 BuildRequires:  perl
@@ -159,6 +166,9 @@ make test
 %endif
 
 %changelog
+* Mon Mar 09 2015 Jitka Plesnikova jples...@redhat.com - 1.631-6
+- Repackage source tarball to remove non-free DBI/FAQ.pm (bug #1199532)
+
 * Sun Aug 17 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.631-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
 
diff --git a/sources b/sources
index ebfbc07..13e9d63 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-444d3c305e86597e11092b517794a840  DBI-1.631.tar.gz
+45c453f9e4d233f1e16f7c9e46f6787f  DBI-1.631_repackaged.tar.gz
diff --git a/strip_FAQ.sh b/strip_FAQ.sh
new file mode 100755
index 000..8d8f138
--- /dev/null
+++ b/strip_FAQ.sh
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+version=$1
+[ -z $version ]  { echo Usage: $0 version; exit 1; }
+
+# files to be removed without the main DBI-version/ prefix
+declare -a REMOVE
+REMOVE[${#REMOVE[*]}]=lib/DBI/FAQ.pm
+
+orig=DBI-${version}
+orig_tgz=${orig}.tar.gz
+repackaged=${orig}_repackaged
+repackaged_tgz=${repackaged}.tar.gz
+
+# pre checks
+[ ! -f ${orig_tgz} ]  { echo ERROR: ${orig_tgz} does not exist; exit 1; }
+[ -f ${repackaged_tgz} ]  { echo ERROR: ${repackaged_tgz} already exist; 
exit 1; }
+
+# repackage
+tdir=`mktemp -d tmpXX`
+pushd ${tdir}
+
+tar -xpzf ../${orig_tgz}
+for file in ${REMOVE[@]}; do
+rm -rf ${orig}/${file}
+done
+tar -cpzf ../${repackaged_tgz} ${orig}
+
+popd
+rm -rf ${tdir}
+
+# post checks
+RET=0
+for file in ${REMOVE[@]}; do
+found=$(tar -ztvf ${repackaged_tgz} | grep ${file})
+[ -n $found ]  { echo ERROR: file ${file} is still in the repackaged 
archive.; RET=1; }
+done
+
+[ $RET == 0 ]  echo Sucessfully repackaged ${orig}: ${repackaged_tgz}
+
+exit $RET
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DBI/f20] Repackage source tarball to remove non-free DBI/FAQ.pm

2015-03-09 Thread Jitka Plesnikova
commit fc5a11c3170fa83705b8a4ee26653a667034604a
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Mar 9 15:19:55 2015 +0100

Repackage source tarball to remove non-free DBI/FAQ.pm

 .gitignore|  1 +
 perl-DBI.spec | 13 +++--
 sources   |  2 +-
 strip_FAQ.sh  | 41 +
 4 files changed, 54 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f660965..cd06c9b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ DBI-1.613.tar.gz
 /DBI-1.627.tar.gz
 /DBI-1.628.tar.gz
 /DBI-1.630.tar.gz
+/DBI-1.630_repackaged.tar.gz
diff --git a/perl-DBI.spec b/perl-DBI.spec
index 4e87dcf..5deb7f2 100644
--- a/perl-DBI.spec
+++ b/perl-DBI.spec
@@ -8,12 +8,18 @@
 
 Name:   perl-DBI
 Version:1.630
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:A database access API for perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://dbi.perl.org/
-Source0:http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+# The source tarball must be repackaged to remove the DBI/FAQ.pm, since the
+# license is not a FSF free license. 
+# When upgrading, download the new source tarball, and run 
+# ./strip-FAQ.sh version to produce the -repackaged tarball.
+# Source0:
http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+Source0:DBI-%{version}_repackaged.tar.gz
+Source1:strip_FAQ.sh
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Find)
@@ -138,6 +144,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Mar 09 2015 Jitka Plesnikova jples...@redhat.com - 1.630-2
+- Repackage source tarball to remove non-free DBI/FAQ.pm (bug #1199532)
+
 * Tue Oct 29 2013 Jitka Plesnikova jples...@redhat.com - 1.630-1
 - 1.630 bump
 
diff --git a/sources b/sources
index 3ecf5de..bf5ad8a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-306020fe7b54a53773f54ad581af8c54  DBI-1.630.tar.gz
+cc1ccae7b79bad622a9c358a6dd4e7fe  DBI-1.630_repackaged.tar.gz
diff --git a/strip_FAQ.sh b/strip_FAQ.sh
new file mode 100755
index 000..8d8f138
--- /dev/null
+++ b/strip_FAQ.sh
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+version=$1
+[ -z $version ]  { echo Usage: $0 version; exit 1; }
+
+# files to be removed without the main DBI-version/ prefix
+declare -a REMOVE
+REMOVE[${#REMOVE[*]}]=lib/DBI/FAQ.pm
+
+orig=DBI-${version}
+orig_tgz=${orig}.tar.gz
+repackaged=${orig}_repackaged
+repackaged_tgz=${repackaged}.tar.gz
+
+# pre checks
+[ ! -f ${orig_tgz} ]  { echo ERROR: ${orig_tgz} does not exist; exit 1; }
+[ -f ${repackaged_tgz} ]  { echo ERROR: ${repackaged_tgz} already exist; 
exit 1; }
+
+# repackage
+tdir=`mktemp -d tmpXX`
+pushd ${tdir}
+
+tar -xpzf ../${orig_tgz}
+for file in ${REMOVE[@]}; do
+rm -rf ${orig}/${file}
+done
+tar -cpzf ../${repackaged_tgz} ${orig}
+
+popd
+rm -rf ${tdir}
+
+# post checks
+RET=0
+for file in ${REMOVE[@]}; do
+found=$(tar -ztvf ${repackaged_tgz} | grep ${file})
+[ -n $found ]  { echo ERROR: file ${file} is still in the repackaged 
archive.; RET=1; }
+done
+
+[ $RET == 0 ]  echo Sucessfully repackaged ${orig}: ${repackaged_tgz}
+
+exit $RET
--
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 1199972] New: perl-Gtk3-0.019-1.fc23 FBTFS:

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199972

Bug ID: 1199972
   Summary: perl-Gtk3-0.019-1.fc23 FBTFS:
   Product: Fedora
   Version: rawhide
 Component: perl-Gtk3
  Assignee: berra...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: berra...@redhat.com,
perl-devel@lists.fedoraproject.org



perl-Gtk3-0.019-1.fc23 fails to build in F23 because a test fails:

t/floating-refs.t .. ok
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
GLib-GObject-WARNING **: The property GtkColorButton:color is deprecated and
shouldn't be used anymore. It will be removed in a future version. at
/usr/lib64/perl5/vendor_perl/Glib/Object/Introspection.pm line 58.
GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings will not
be saved or shared with other applications.
GLib-GObject-WARNING **: The property GtkButton:use-stock is deprecated and
shouldn't be used anymore. It will be removed in a future version. at
/builddir/build/BUILD/Gtk3-0.019/blib/lib/Gtk3.pm line 702.
GLib-GObject-WARNING **: The property GtkSettings:gtk-button-images is
deprecated and shouldn't be used anymore. It will be removed in a future
version. at /builddir/build/BUILD/Gtk3-0.019/blib/lib/Gtk3.pm line 702.
*** menu position callback ignoring error: Can't use string (320) as an ARRAY
ref while strict refs in use at t/overrides.t line 235.
*** menu position callback must return two integers (x, y) or two integers and
a boolean (x, y, push_in) at /builddir/build/BUILD/Gtk3-0.019/blib/lib/Gtk3.pm
line 937.
*** menu position callback ignoring error: Can't use string (320) as an ARRAY
ref while strict refs in use at t/overrides.t line 235.
*** menu position callback must return two integers (x, y) or two integers and
a boolean (x, y, push_in) at /builddir/build/BUILD/Gtk3-0.019/blib/lib/Gtk3.pm
line 937.
Can't find information for method Pixbuf::save at t/overrides.t line 639.
# Looks like you planned 164 tests but ran 144.
# Looks like your test exited with 1 just after 144.
t/overrides.t .. 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 20/164 subtests 
(less 55 skipped subtests: 89 okay)

This happens since upgrading gdk-pixbuf2 from 2.31.2-2.fc23 to 2.31.3-1.fc23.

-- 
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=FsHu8z1Mepa=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 1199543] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199543

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

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|perl-maint-l...@redhat.com  |jples...@redhat.com



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=baYMvTjQNua=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 1199723] perl-Perl-Critic-Pulp-90 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199723

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Perl-Critic-Pulp-90-1.
   ||fc23
 Resolution|--- |RAWHIDE
Last Closed||2015-03-09 07:11:27



--- Comment #3 from Petr Pisar ppi...@redhat.com ---
Again, it recognizes more statements than before, so it will be pushed into F23
only.

-- 
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=7zhE7UdcWDa=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 1199532] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199532



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-DBI-1.633-2.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-DBI-1.633-2.fc22

-- 
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=MLL9b4h7Lqa=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-DBI/f22] Repackage source tarball to remove non-free DBI/FAQ.pm

2015-03-09 Thread Jitka Plesnikova
commit ce238e0b7a0974129640f2e7c1d59a3092b84cd0
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Mar 9 13:53:34 2015 +0100

Repackage source tarball to remove non-free DBI/FAQ.pm

 .gitignore|  1 +
 perl-DBI.spec | 13 +++--
 sources   |  2 +-
 strip_FAQ.sh  | 41 +
 4 files changed, 54 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e7b18fb..64b0874 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@ DBI-1.613.tar.gz
 /DBI-1.631.tar.gz
 /DBI-1.632.tar.gz
 /DBI-1.633.tar.gz
+/DBI-1.633_repackaged.tar.gz
diff --git a/perl-DBI.spec b/perl-DBI.spec
index bd72509..7a448cb 100644
--- a/perl-DBI.spec
+++ b/perl-DBI.spec
@@ -10,12 +10,18 @@
 
 Name:   perl-DBI
 Version:1.633
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:A database access API for perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://dbi.perl.org/
-Source0:http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+# The source tarball must be repackaged to remove the DBI/FAQ.pm, since the
+# license is not a FSF free license. 
+# When upgrading, download the new source tarball, and run 
+# ./strip-FAQ.sh version to produce the -repackaged tarball.
+# Source0:
http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
+Source0:DBI-%{version}_repackaged.tar.gz
+Source1:strip_FAQ.sh
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Find)
@@ -165,6 +171,9 @@ make test
 %endif
 
 %changelog
+* Mon Mar 09 2015 Jitka Plesnikova jples...@redhat.com - 1.633-2
+- Repackage source tarball to remove non-free DBI/FAQ.pm (bug #1199532)
+
 * Tue Jan 13 2015 Jitka Plesnikova jples...@redhat.com - 1.633-1
 - 1.633 bump
 
diff --git a/sources b/sources
index 480df6b..4b2be8d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b4fe13b9a51c1446c5f3cf93e69a2044  DBI-1.633.tar.gz
+edb8878df0f086d2759ce688a0359164  DBI-1.633_repackaged.tar.gz
diff --git a/strip_FAQ.sh b/strip_FAQ.sh
new file mode 100755
index 000..8d8f138
--- /dev/null
+++ b/strip_FAQ.sh
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+version=$1
+[ -z $version ]  { echo Usage: $0 version; exit 1; }
+
+# files to be removed without the main DBI-version/ prefix
+declare -a REMOVE
+REMOVE[${#REMOVE[*]}]=lib/DBI/FAQ.pm
+
+orig=DBI-${version}
+orig_tgz=${orig}.tar.gz
+repackaged=${orig}_repackaged
+repackaged_tgz=${repackaged}.tar.gz
+
+# pre checks
+[ ! -f ${orig_tgz} ]  { echo ERROR: ${orig_tgz} does not exist; exit 1; }
+[ -f ${repackaged_tgz} ]  { echo ERROR: ${repackaged_tgz} already exist; 
exit 1; }
+
+# repackage
+tdir=`mktemp -d tmpXX`
+pushd ${tdir}
+
+tar -xpzf ../${orig_tgz}
+for file in ${REMOVE[@]}; do
+rm -rf ${orig}/${file}
+done
+tar -cpzf ../${repackaged_tgz} ${orig}
+
+popd
+rm -rf ${tdir}
+
+# post checks
+RET=0
+for file in ${REMOVE[@]}; do
+found=$(tar -ztvf ${repackaged_tgz} | grep ${file})
+[ -n $found ]  { echo ERROR: file ${file} is still in the repackaged 
archive.; RET=1; }
+done
+
+[ $RET == 0 ]  echo Sucessfully repackaged ${orig}: ${repackaged_tgz}
+
+exit $RET
--
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: polymake

2015-03-09 Thread buildsys


polymake has broken dependencies in the F-22 tree:
On x86_64:
polymake-2.13-18.git20141013.fc22.x86_64 requires perl = 4:5.20.1
On i386:
polymake-2.13-18.git20141013.fc22.i686 requires perl = 4:5.20.1
On armhfp:
polymake-2.13-18.git20141013.fc22.armv7hl requires perl = 4:5.20.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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1199969] perl-DateTime-Format-DateManip-0.04-17.fc23 FTBFS: Failed test 'Parse Date 'March 23, 2003''

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199969

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

   What|Removed |Added

Summary|perl-DateTime-Format-DateMa |perl-DateTime-Format-DateMa
   |nip-0.04-17.fc23 FTBFS: |nip-0.04-17.fc23 FTBFS:
   ||Failed test 'Parse Date
   ||'March 23, 2003''



-- 
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=7teZlZqEOIa=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 DBI-1.633_repackaged.tar.gz uploaded to lookaside cache by jplesnik

2015-03-09 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-DBI:

edb8878df0f086d2759ce688a0359164  DBI-1.633_repackaged.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 1199969] New: perl-DateTime-Format-DateManip-0.04-17.fc23 FTBFS:

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199969

Bug ID: 1199969
   Summary: perl-DateTime-Format-DateManip-0.04-17.fc23 FTBFS:
   Product: Fedora
   Version: rawhide
 Component: perl-DateTime-Format-DateManip
  Assignee: ppi...@redhat.com
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com,
psab...@redhat.com



perl-DateTime-Format-DateManip-0.04-17.fc23 fails to build in F23 because tests
fail:

Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.pvF7pa
+ umask 022
+ cd /builddir/build/BUILD
+ cd DateTime-Format-DateManip-0.04
+ ./Build test
t/00load.t . ok
WARNING: the TZ Date::Manip config variable is deprecated
 and will be removed in March 2016.  Please use
 the SetDate or ForceDate config variables instead.
Use of uninitialized value $mod in concatenation (.) or string at
/usr/share/perl5/vendor_perl/Date/Manip/TZ.pm line 179.
Use of uninitialized value $mod in concatenation (.) or string at
/usr/share/perl5/vendor_perl/Date/Manip/TZ.pm line 180.
Use of uninitialized value $mod in concatenation (.) or string at
/usr/share/perl5/vendor_perl/Date/Manip/TZ.pm line 181.
ERROR: [config_var] invalid zone in SetDate: 
#   Failed test 'Parse Date 'March 23, 2003''
#   at t/01conversions.t line 67.
#  got: '2003-03-23T00:00:00.0 CET
# '
# expected: '2003-03-23T00:00:00.0 EST
# '
#   Failed test 'Format Date '2003-03-23T00:00:00''
#   at t/01conversions.t line 73.
#  got: '2003032309:00:00'
# expected: '2003032303:00:00'
#   Failed test 'Format Date '2003-03-23T12:00:00''
#   at t/01conversions.t line 73.
#  got: '2003032321:00:00'
# expected: '2003032315:00:00'
# Looks like you failed 3 tests of 6.
t/01conversions.t .. 
Dubious, test returned 3 (wstat 768, 0x300)
Failed 3/6 subtests 
Test Summary Report
---
t/01conversions.t (Wstat: 768 Tests: 6 Failed: 3)
  Failed tests:  1, 3-4
  Non-zero exit status: 3
Files=2, Tests=7,  1 wallclock secs ( 0.02 usr  0.01 sys +  0.59 cusr  0.07
csys =  0.69 CPU)
Result: FAIL

This happens since upgrading perl-Date-Manip from 6.48-1.fc22 to 6.49-1.fc23.

-- 
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=gF0JNZF6Ama=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 1199532] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199532



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-DBI-1.631-6.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-DBI-1.631-6.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=WF8oky45cea=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 1199543] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199543

Kiersten (Kerri) Anderson kande...@redhat.com changed:

   What|Removed |Added

 CC||kande...@redhat.com



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=s8G3DR4Knua=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 DBI-1.630_repackaged.tar.gz uploaded to lookaside cache by jplesnik

2015-03-09 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-DBI:

cc1ccae7b79bad622a9c358a6dd4e7fe  DBI-1.630_repackaged.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 1199532] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199532



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-DBI-1.630-2.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-DBI-1.630-2.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=9pkTF5lmaKa=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 1199543] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199543

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

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||rh-perl520-perl-DBI-1.633-5
   ||.el7
   ||rh-perl520-perl-DBI-1.633-5
   ||.el6



-- 
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=goN9UPdzJKa=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 1200059] New: CVE-2014-9472 rt: denial of service flaw in email gateway

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200059

Bug ID: 1200059
   Summary: CVE-2014-9472 rt: denial of service flaw in email
gateway
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: medium
  Priority: medium
  Assignee: security-response-t...@redhat.com
  Reporter: mpr...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



A denial of service flaw was found in Request Tracker's (RT) email gateway. A
remote attacker could use this flaw to trigger a denial of service (resource
exhaustion) in an RT installation accepting email from untrusted sources.

This flaw is fixed in 4.2.10:

https://bestpractical.com/release-notes/rt/4.2.10

-- 
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=DNPiSXwfKda=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 1200062] New: CVE-2014-9472 rt: denial of service flaw in email gateway [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200062

Bug ID: 1200062
   Summary: CVE-2014-9472 rt: denial of service flaw in email
gateway [fedora-21]
   Product: Fedora
   Version: 21
 Component: rt
  Keywords: Security, SecurityTracking
  Severity: medium
  Priority: medium
  Assignee: rc040...@freenet.de
  Reporter: mpr...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu
Blocks: 1200059 (CVE-2014-9472)




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora.

For comments that are specific to the vulnerability please use bugs filed
against the Security Response product referenced in the Blocks field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

fedora-21 tracking bug for rt: see blocks bug list for full details of the
security issue(s).

This bug is never intended to be made public, please put any public notes
in the blocked bugs.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200059
[Bug 1200059] CVE-2014-9472 rt: denial of service flaw in email gateway
-- 
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=xZVI8zsMhTa=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 1200066] CVE-2015-1165 rt: information disclosure flaw in RSS feed handler [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200066



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1200065,1200066

# Description of your update
notes=Security fix for CVE-2015-1165

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi update submission link instead:

https://admin.fedoraproject.org/updates/new/?type_=securitybugs=1200065,1200066

-- 
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=AnCX3daYdXa=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 1197692] perl-Gnome2-GConf-1.044-21.fc23 FTBFS: blib/arch/auto/Gnome2/GConf/GConf.so: undefined symbol: gconf_engine_key_is_writable

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1197692

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Gnome2-GConf-1.044-22.
   ||fc23
 Resolution|--- |RAWHIDE
Last Closed||2015-03-09 11:45:53



-- 
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=7Vnnx8ywA1a=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 1199543] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199543

Joe Orton jor...@redhat.com changed:

   What|Removed |Added

 CC||jor...@redhat.com



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=JJE7U2Tfoqa=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 1200062] CVE-2014-9472 rt: denial of service flaw in email gateway [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200062



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1200059,1200062

# Description of your update
notes=Security fix for CVE-2014-9472

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi update submission link instead:

https://admin.fedoraproject.org/updates/new/?type_=securitybugs=1200059,1200062

-- 
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=c12g44cj5aa=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 1197692] perl-Gnome2-GConf-1.044-21.fc23 FTBFS: blib/arch/auto/Gnome2/GConf/GConf.so: undefined symbol: gconf_engine_key_is_writable

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1197692



--- Comment #1 from Petr Pisar ppi...@redhat.com ---
I will remove support for the non-existing symbol. I believe the bug was there
for many years but never noticed until F23 enabled hardened build flags with
non-lazy DSO relocations.

-- 
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=0ChnUJCWz2a=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-CGI-Fast] Document license

2015-03-09 Thread Petr Pisar
commit 9e44e8977c61d68b27a538e2f850e81037ac48bf
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 15:53:59 2015 +0100

Document license

 perl-CGI-Fast.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/perl-CGI-Fast.spec b/perl-CGI-Fast.spec
index 9adcb2e..c1b79d8 100644
--- a/perl-CGI-Fast.spec
+++ b/perl-CGI-Fast.spec
@@ -2,6 +2,8 @@ Name:   perl-CGI-Fast
 Version:2.07
 Release:1%{?dist}
 Summary:CGI Interface for Fast CGI
+# lib/CGI/Fast.pm probably qotes piece of Artistic license before declaring
+# as Perl itself https://github.com/leejo/cgi-fast/issues/13
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/CGI-Fast/
--
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 1200065] New: CVE-2015-1165 rt: information disclosure flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200065

Bug ID: 1200065
   Summary: CVE-2015-1165 rt: information disclosure flaw in RSS
feed handler
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: medium
  Priority: medium
  Assignee: security-response-t...@redhat.com
  Reporter: mpr...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



An information disclosure flaw was found in Request Tracker's (RT) processed
RSS feed handler. A remote attacker could use this flaw to disclose RSS feed
URLs, which can potentially contain sensitive ticket data.

This flaw is fixed in 4.2.10:

https://bestpractical.com/release-notes/rt/4.2.10

-- 
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=dSVy5FoXQFa=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 1200066] New: CVE-2015-1165 rt: information disclosure flaw in RSS feed handler [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200066

Bug ID: 1200066
   Summary: CVE-2015-1165 rt: information disclosure flaw in RSS
feed handler [fedora-21]
   Product: Fedora
   Version: 21
 Component: rt
  Keywords: Security, SecurityTracking
  Severity: medium
  Priority: medium
  Assignee: rc040...@freenet.de
  Reporter: mpr...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu
Blocks: 1200065 (CVE-2015-1165)




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora.

For comments that are specific to the vulnerability please use bugs filed
against the Security Response product referenced in the Blocks field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

fedora-21 tracking bug for rt: see blocks bug list for full details of the
security issue(s).

This bug is never intended to be made public, please put any public notes
in the blocked bugs.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200065
[Bug 1200065] CVE-2015-1165 rt: information disclosure flaw in RSS feed
handler
-- 
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=3pFKtA84Yoa=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 1200065] CVE-2015-1165 rt: information disclosure flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200065

Martin Prpic mpr...@redhat.com changed:

   What|Removed |Added

 Depends On||1200066



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Created rt tracking bugs for this issue:

Affects: fedora-21 [bug 1200066]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200066
[Bug 1200066] CVE-2015-1165 rt: information disclosure flaw in RSS feed
handler [fedora-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=d8YJJETzVfa=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 1195803] perl-Parallel-Scoreboard-0.07-1.fc23 FTBFS on bootstrap: reflexive build-time dependency on perl(Parallel::Scoreboard)

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1195803

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Parallel-Scoreboard-0.
   ||07-2.fc23
 Resolution|--- |RAWHIDE
Last Closed||2015-03-09 12:06:46



-- 
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=bleGZHTUWfa=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 1200059] CVE-2014-9472 rt: denial of service flaw in email gateway

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200059

Martin Prpic mpr...@redhat.com changed:

   What|Removed |Added

 Depends On||1200062



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Created rt tracking bugs for this issue:

Affects: fedora-21 [bug 1200062]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200062
[Bug 1200062] CVE-2014-9472 rt: denial of service flaw in email gateway
[fedora-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=YGZXSgqjFma=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 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069

Martin Prpic mpr...@redhat.com changed:

   What|Removed |Added

 Depends On||1200070



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Created rt tracking bugs for this issue:

Affects: fedora-21 [bug 1200070]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200070
[Bug 1200070] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler
[fedora-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=rI16ueyweRa=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 1200070] New: CVE-2015-1464 rt: session hijaking flaw in RSS feed handler [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200070

Bug ID: 1200070
   Summary: CVE-2015-1464 rt: session hijaking flaw in RSS feed
handler [fedora-21]
   Product: Fedora
   Version: 21
 Component: rt
  Keywords: Security, SecurityTracking
  Severity: high
  Priority: high
  Assignee: rc040...@freenet.de
  Reporter: mpr...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu
Blocks: 1200069 (CVE-2015-1464)




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora.

For comments that are specific to the vulnerability please use bugs filed
against the Security Response product referenced in the Blocks field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

fedora-21 tracking bug for rt: see blocks bug list for full details of the
security issue(s).

This bug is never intended to be made public, please put any public notes
in the blocked bugs.

[bug automatically created by: add-tracking-bugs]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1200069
[Bug 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler
-- 
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=mFBlH28AoZa=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 1200070] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler [fedora-21]

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200070



--- Comment #1 from Martin Prpic mpr...@redhat.com ---

Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1200069,1200070

# Description of your update
notes=Security fix for CVE-2015-1464

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi update submission link instead:

https://admin.fedoraproject.org/updates/new/?type_=securitybugs=1200069,1200070

-- 
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=RgpODaKmYxa=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 1200069] New: CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069

Bug ID: 1200069
   Summary: CVE-2015-1464 rt: session hijaking flaw in RSS feed
handler
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: high
  Priority: high
  Assignee: security-response-t...@redhat.com
  Reporter: mpr...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



A session hijaking flaw was found in Request Tracker's (RT) processed RSS feed
handler. A remote attacker could use an RSS feed URL to hijack a session of a
different user.

This flaw is fixed in 4.2.10:

https://bestpractical.com/release-notes/rt/4.2.10

-- 
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=OgkfPMAZCRa=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 1195803] perl-Parallel-Scoreboard-0.07-1.fc23 FTBFS on bootstrap: reflexive build-time dependency on perl(Parallel::Scoreboard)

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1195803

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

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|rc040...@freenet.de |ppi...@redhat.com



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=ufIq5aPpjea=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-Parallel-Scoreboard] Remove reflexive build-time dependency

2015-03-09 Thread Petr Pisar
commit 7f93b0a2a32090db476101c26b2dc24dcc614387
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 16:57:50 2015 +0100

Remove reflexive build-time dependency

 perl-Parallel-Scoreboard.spec | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/perl-Parallel-Scoreboard.spec b/perl-Parallel-Scoreboard.spec
index b533bf7..32e5414 100644
--- a/perl-Parallel-Scoreboard.spec
+++ b/perl-Parallel-Scoreboard.spec
@@ -1,6 +1,6 @@
 Name:   perl-Parallel-Scoreboard
 Version:0.07
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Scoreboard for monitoring status of many processes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -27,7 +27,6 @@ BuildRequires: perl(HTML::Entities)
 BuildRequires: perl(IO::Handle)
 BuildRequires: perl(JSON)
 BuildRequires: perl(POSIX)
-BuildRequires: perl(Parallel::Scoreboard)
 BuildRequires: perl(strict)
 BuildRequires: perl(warnings)
 
@@ -71,6 +70,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 09 2015 Petr Pisar ppi...@redhat.com - 0.07-2
+- Remove reflexive build-time dependency (bug #1195803)
+
 * Mon Feb 02 2015 Ralf Corsépius corse...@fedoraproject.org - 0.07-1
 - Upstream update.
 - Rework BRs.
--
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 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069



--- Comment #2 from Jason Tibbitts ti...@math.uh.edu ---
So, I'm playing with a rebase to 4.2.10 and pretty much none of the patches
apply. I think several of them are upstream so I'll start tracking them down.

But, Ralf, do let me know if you'd rather take care of this yourself. 
Otherwise I'll start committing stuff to rawhide.

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

[rt] Forgot to commit new sources.

2015-03-09 Thread Jason ティビツ
commit 8a4fbac2580455d6f1af5325d5d9bbf2226d0e8a
Author: Jason Tibbitts ti...@math.uh.edu
Date:   Mon Mar 9 19:29:01 2015 -0500

Forgot to commit new sources.

 .gitignore | 1 +
 sources| 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 1d9725a..3ea9f93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /rt-4.2.9.tar.gz
+/rt-4.2.10.tar.gz
diff --git a/sources b/sources
index 908f2dc..fee6b22 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6d577abd9f5c374c18bff3550f3e7226  rt-4.2.9.tar.gz
+077f3ed99d36eb744fe25c2bfd70e996  rt-4.2.10.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 rt-4.2.10.tar.gz uploaded to lookaside cache by tibbs

2015-03-09 Thread Jason ティビツ
A file has been added to the lookaside cache for rt:

077f3ed99d36eb744fe25c2bfd70e996  rt-4.2.10.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

[rt] Update to 4.2.10.

2015-03-09 Thread Jason ティビツ
commit f84f971f8140fca6fb8661ee4e830fb2c07bb159
Author: Jason Tibbitts ti...@math.uh.edu
Date:   Mon Mar 9 19:08:02 2015 -0500

Update to 4.2.10.

 0001-Remove-configure-time-generated-files.patch   | 16719 ---
 ...-usr-bin-perl-instead-of-usr-bin-env-perl.patch |33 -
 0007-Fix-translation.patch |14 +-
 0008-Adjust-path-to-html-autohandler.patch |24 -
 0009-Work-around-testsuite-failure.patch   |47 -
 rt.spec|73 +-
 6 files changed, 62 insertions(+), 16848 deletions(-)
---
diff --git a/0004-Use-usr-bin-perl-instead-of-usr-bin-env-perl.patch 
b/0004-Use-usr-bin-perl-instead-of-usr-bin-env-perl.patch
index abec54f..e6d893b 100644
--- a/0004-Use-usr-bin-perl-instead-of-usr-bin-env-perl.patch
+++ b/0004-Use-usr-bin-perl-instead-of-usr-bin-env-perl.patch
@@ -12,9 +12,6 @@ Subject: [PATCH 4/8] Use /usr/bin/perl instead of 
/usr/bin/env perl.
  devel/tools/rt-attributes-editor | 2 +-
  devel/tools/rt-static-docs   | 2 +-
  devel/tools/tweak-template-locstring | 2 +-
- etc/upgrade/shrink_cgm_table.pl  | 2 +-
- etc/upgrade/shrink_transactions_table.pl | 2 +-
- etc/upgrade/time-worked-history.pl   | 2 +-
  etc/upgrade/upgrade-mysql-schema.pl  | 2 +-
  lib/RT/Interface/Web/QueryBuilder.pm | 1 +
  t/mail/fake-sendmail | 2 +-
@@ -100,36 +97,6 @@ index ca44d39..b31570b 100755
  # BEGIN BPS TAGGED BLOCK {{{
  #
  # COPYRIGHT:
-diff --git a/etc/upgrade/shrink_cgm_table.pl b/etc/upgrade/shrink_cgm_table.pl
-index 7157b20..02f 100644
 a/etc/upgrade/shrink_cgm_table.pl
-+++ b/etc/upgrade/shrink_cgm_table.pl
-@@ -1,4 +1,4 @@
--#!/usr/bin/env perl
-+#!/usr/bin/perl
- # BEGIN BPS TAGGED BLOCK {{{
- #
- # COPYRIGHT:
-diff --git a/etc/upgrade/shrink_transactions_table.pl 
b/etc/upgrade/shrink_transactions_table.pl
-index 0b78f0f..026a863 100644
 a/etc/upgrade/shrink_transactions_table.pl
-+++ b/etc/upgrade/shrink_transactions_table.pl
-@@ -1,4 +1,4 @@
--#!/usr/bin/env perl
-+#!/usr/bin/perl
- # BEGIN BPS TAGGED BLOCK {{{
- #
- # COPYRIGHT:
-diff --git a/etc/upgrade/time-worked-history.pl 
b/etc/upgrade/time-worked-history.pl
-index 46961aa..666498e 100644
 a/etc/upgrade/time-worked-history.pl
-+++ b/etc/upgrade/time-worked-history.pl
-@@ -1,4 +1,4 @@
--#!/usr/bin/env perl
-+#!/usr/bin/perl
- # BEGIN BPS TAGGED BLOCK {{{
- #
- # COPYRIGHT:
 diff --git a/etc/upgrade/upgrade-mysql-schema.pl 
b/etc/upgrade/upgrade-mysql-schema.pl
 index 8d6615d..204676c 100755
 --- a/etc/upgrade/upgrade-mysql-schema.pl
diff --git a/0007-Fix-translation.patch b/0007-Fix-translation.patch
index 7f093b8..790bdca 100644
--- a/0007-Fix-translation.patch
+++ b/0007-Fix-translation.patch
@@ -7,19 +7,15 @@ Subject: [PATCH 7/8] Fix translation.
  share/po/de.po | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/share/po/de.po b/share/po/de.po
-index 0eaf1e7..a952f0a 100644
 a/share/po/de.po
-+++ b/share/po/de.po
-@@ -1002,7 +1002,7 @@ msgstr Alle Tickets
+diff -up ./share/po/de.po.orig ./share/po/de.po
+--- ./share/po/de.po.orig  2015-02-25 15:30:21.0 -0600
 ./share/po/de.po   2015-03-09 13:54:09.094706168 -0500
+@@ -1006,7 +1006,7 @@ msgstr Alle Tickets
  
- #: share/html/User/Prefs.html:171
+ #: share/html/User/Prefs.html:173
  msgid All iCal feeds embed a secret token which authorizes you.  If the URL 
for one of your iCal feeds was exposed to the outside world, you can get a new 
secret, bbreaking all existing iCal feeds/b, below.
 -msgstr Alle iCal-Feeds beinhalten einen geheimen Token durch welchen die 
Authorisierung erfolgt. Falls die URL für einen dieser iCal-Feeds irrtümlich 
nach Extern weitergegeben wurde, können Sie unterhalb einen neuen Token 
erstellen, welcher balle exestierenden iCal-Feeds/b ungültig werden lässt.
 +msgstr Alle iCal-Feeds beinhalten einen geheimen Token durch welchen die 
Authorisierung erfolgt. Falls die URL für einen dieser iCal-Feeds irrtümlich 
nach Extern weitergegeben wurde, können Sie unterhalb einen neuen Token 
erstellen, welcher balle existierenden iCal-Feeds/b ungültig werden lässt.
  
  #: share/html/Admin/Queues/index.html:99
  msgid All queues matching search criteria
--- 
-2.1.0
-
diff --git a/rt.spec b/rt.spec
index 96a88a7..ec5a640 100644
--- a/rt.spec
+++ b/rt.spec
@@ -38,8 +38,8 @@
 %global RT_STATICDIR   %{_datadir}/%{name}/static
 
 Name:  rt
-Version:   4.2.9
-Release:   2%{?dist}
+Version:   4.2.10
+Release:   1%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -55,15 +55,12 @@ Source3:README.fedora.in
 # rt's logrotate configuration
 Source4:   rt.logrotate.in
 
-Patch1: 0001-Remove-configure-time-generated-files.patch
 Patch2: 0002-Add-Fedora-configuration.patch
 Patch3: 0003-Broken-test-dependencies.patch
 Patch4: 0004-Use-usr-bin-perl-instead-of-usr-bin-env-perl.patch
-Patch5:

[perl-Params-Validate/f20] Upstream update.

2015-03-09 Thread corsepiu
commit 368e8cba2415faf5541c79b782c5b5a2d32a5985
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Wed Feb 25 06:27:19 2015 +0100

Upstream update.

- BR: perl(Test::Version).

 .gitignore| 2 +-
 perl-Params-Validate.spec | 9 +++--
 sources   | 2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index ffc9560..fb04c94 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Params-Validate-1.17.tar.gz
+/Params-Validate-1.18.tar.gz
diff --git a/perl-Params-Validate.spec b/perl-Params-Validate.spec
index abe5ecb..92af3de 100644
--- a/perl-Params-Validate.spec
+++ b/perl-Params-Validate.spec
@@ -15,7 +15,7 @@
 
 Summary:   Params-Validate Perl module
 Name:  perl-Params-Validate
-Version:   1.17
+Version:   1.18
 Release:   1%{?dist}
 License:   Artistic 2.0
 Group: Development/Libraries
@@ -41,7 +41,7 @@ BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  perl(Test::More) = 0.96
 BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(Test::Taint) = 0.02
 BuildRequires:  perl(Tie::Array)
@@ -62,6 +62,7 @@ BuildRequires:  perl(Test::Pod::LinkCheck)
 BuildRequires:  perl(Test::Pod::No404s)
 BuildRequires: perl(Test::Spelling)
 BuildRequires:  perl(Test::Synopsis)
+BuildRequires:  perl(Test::Version)
 BuildRequires:  aspell-en
 # Optional:
 BuildRequires:  perl(Test::Portability::Files)
@@ -102,6 +103,10 @@ find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 
2/dev/null ';'
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 24 2015 Ralf Corsépius corse...@fedoraproject.org - 1.18-1
+- Upstream update.
+- BR: perl(Test::Version).
+
 * Sun Feb 01 2015 Ralf Corsépius corse...@fedoraproject.org - 1.17-1
 - Upstream update.
 
diff --git a/sources b/sources
index 8380f0f..73d910f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-783cd47ab1e73ca5ec08a7340d97fb54  Params-Validate-1.17.tar.gz
+2d6c94dd441cd96f98844aa19ebdbcb2  Params-Validate-1.18.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 1196050] perl-Params-Validate-1.18 testsuite failure on f20

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196050



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-Params-Validate-1.18-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-Params-Validate-1.18-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=wAwlMsuXQqa=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 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069



--- Comment #5 from Jason Tibbitts ti...@math.uh.edu ---
Revert if you like.  Big deal.  What you're supposed to think of this is that
hey, he did some work, and that's nice; isn't it great to have a community of
people working on things.  Or, I guess, whatever you like.  It's in git.  You
can roll it back if you like.  I didn't kill your work in the least.  That's
kind of the point of having a proper version control system.  Stash your
changes, commit a revert, pop your stash, bump the release and commit.  Should
take you, what, not even an extra minute?

I didn't change anything in the package that didn't need to be changed to get
things to build, except for the adjusting of the chmod +x list near the end. 
You could perhaps disagree with using a bunch of rm statements to delete files
instead of a patch, because frankly using a patch just means it's one
additional thing you absolutely have to rebase when even one byte of one of
those files changes, but hey, it's up for discussion.  I didn't push anything
anywhere other than rawhide.  Not sure how else you believe collaboration is
supposed to work, honestly.

-- 
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=1SToiEygyIa=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 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069



--- Comment #3 from Ralf Corsepius rc040...@freenet.de ---
(In reply to Jason Tibbitts from comment #2)
 So, I'm playing with a rebase to 4.2.10 and pretty much none of the patches
 apply. I think several of them are upstream so I'll start tracking them down.
 
 But, Ralf, do let me know if you'd rather take care of this yourself. 
Patience, please. I already had an update candidate pending, but as you noticed
rebasing the patches isn't trivial and requires testing.

-- 
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=NlIfxjQGQqa=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 1196916] perl-Net-DNS-0.83 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196916



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-DNS-0.83-1.fc21 has been pushed to the Fedora 21 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=jnrifOuMCca=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 1199532] perl-DBI ships with a module released under Artistic (only) license

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199532

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

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
Package perl-DBI-1.631-6.fc21:
* should fix your issue,
* was pushed to the Fedora 21 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing perl-DBI-1.631-6.fc21'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2015-3552/perl-DBI-1.631-6.fc21
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=91ukBryAvKa=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 1200069] CVE-2015-1464 rt: session hijaking flaw in RSS feed handler

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1200069



--- Comment #4 from Ralf Corsepius rc040...@freenet.de ---
(In reply to Ralf Corsepius from comment #3)
 (In reply to Jason Tibbitts from comment #2)
  So, I'm playing with a rebase to 4.2.10 and pretty much none of the patches
  apply. I think several of them are upstream so I'll start tracking them 
  down.
  
  But, Ralf, do let me know if you'd rather take care of this yourself. 
 Patience, please. I already had an update candidate pending, but as you
 noticed rebasing the patches isn't trivial and requires testing.

Grumble. Tibbs - Would you please take timezones into account before killing my
work?

This CVE churn started at 16-17:00 local time, you sent your notice ~20:00 
and commited your patches ~01:00 local-time. What am I supposed to think of
this?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=X3Vz1IRuOga=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-Text-Quoted/f20] (5 commits) ...Merge cleanup.

2015-03-09 Thread corsepiu
Summary of changes:

  995385d... - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass (*)
  f97e438... Perl 5.20 rebuild (*)
  3f12b67... Upstream update. (*)
  5014787... Merge cleanup. (*)
  e51073c... Merge cleanup.

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

[perl-Text-Quoted/f20: 5/5] Merge cleanup.

2015-03-09 Thread corsepiu
commit e51073cbf10194be6731e43f9a31f4050093bd2d
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 08:54:55 2015 +0100

Merge cleanup.

 perl-Text-Quoted.spec | 3 ---
 1 file changed, 3 deletions(-)
---
diff --git a/perl-Text-Quoted.spec b/perl-Text-Quoted.spec
index 7685515..7d03f4b 100644
--- a/perl-Text-Quoted.spec
+++ b/perl-Text-Quoted.spec
@@ -46,9 +46,6 @@ make test
 - Upstream update.
 - Reflect Source0: having changed.
 
-* Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.08-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.08-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1196444] perl-List-Compare-0.48 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196444



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc22 has been pushed to the Fedora 22 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=sxY6hm3jkAa=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 1194256] perl-Getopt-Long-2.44 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1194256



--- Comment #12 from Fedora Update System upda...@fedoraproject.org ---
perl-Getopt-Long-2.45-1.fc20 has been pushed to the Fedora 20 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=2OcEZ2M8VQa=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 1196763] Review Request: perl-Tie-Cache - LRU Cache in Memory

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196763

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-Tie-Cache-0.21-2.fc22
 Resolution|--- |ERRATA
Last Closed||2015-03-09 04:23:08



--- Comment #19 from Fedora Update System upda...@fedoraproject.org ---
perl-Tie-Cache-0.21-2.fc22 has been pushed to the Fedora 22 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=b6lKKVCfs0a=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 1199491] Incorrect license tag for perl-Exporter-Tiny

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199491

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

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
Package perl-Exporter-Tiny-0.042-2.fc22:
* should fix your issue,
* was pushed to the Fedora 22 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing
perl-Exporter-Tiny-0.042-2.fc22'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2015-3388/perl-Exporter-Tiny-0.042-2.fc22
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=Qa8fO1jNYca=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 1197403] perl-Pod-Usage-1.67 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1197403

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-Pod-Usage-1.67-1.fc23  |perl-Pod-Usage-1.67-1.fc22
 Resolution|--- |ERRATA
Last Closed||2015-03-09 04:25:21



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-Pod-Usage-1.67-1.fc22 has been pushed to the Fedora 22 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=qPKdmHm12na=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 1192380] perl-Pod-Usage-1.65 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1192380

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-Pod-Usage-1.65-1.fc23  |perl-Pod-Usage-1.66-1.fc20
 Resolution|--- |ERRATA
Last Closed||2015-03-09 04:31:33



--- Comment #9 from Fedora Update System upda...@fedoraproject.org ---
perl-Pod-Usage-1.66-1.fc20 has been pushed to the Fedora 20 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=HvqDSSBAUoa=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 1197281] perl-Perl-Critic-1.124 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1197281

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-Perl-Critic-1.125-1.fc
   ||22
 Resolution|--- |ERRATA
Last Closed||2015-03-09 04:31:42



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-Perl-Critic-1.125-1.fc22 has been pushed to the Fedora 22 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=XxiASOcu02a=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 1195096] perl-Pod-Usage-1.66 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1195096

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-Pod-Usage-1.66-1.fc23  |perl-Pod-Usage-1.66-1.fc20
 Resolution|--- |ERRATA
Last Closed||2015-03-09 04:31:32



--- Comment #9 from Fedora Update System upda...@fedoraproject.org ---
perl-Pod-Usage-1.66-1.fc20 has been pushed to the Fedora 20 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=bYHxYmB6j1a=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 Proc-Guard-0.06.tar.gz uploaded to lookaside cache by ppisar

2015-03-09 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Proc-Guard:

44a3eb2bfcc8cce049b975afa546466e  Proc-Guard-0.06.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 1193419] perl-List-Compare-0.45 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1193419



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=7aOz5AiW37a=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 1196444] perl-List-Compare-0.48 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196444



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=icBoZJ6gx4a=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 threads-1.99.tar.gz uploaded to lookaside cache by ppisar

2015-03-09 Thread Petr Pisar
A file has been added to the lookaside cache for perl-threads:

374da38300b7370c07b9762c2401d3a0  threads-1.99.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-threads] 1.99 bump

2015-03-09 Thread Petr Pisar
commit e17f71eb85650cfa8041b351bc8ddba4a3bff7db
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 10:06:56 2015 +0100

1.99 bump

 .gitignore| 1 +
 perl-threads.spec | 9 +
 sources   | 2 +-
 3 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 1a4322e..d7c68ae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 /threads-1.96.tar.gz
 /threads-1.97.tar.gz
 /threads-1.98.tar.gz
+/threads-1.99.tar.gz
diff --git a/perl-threads.spec b/perl-threads.spec
index cda4baf..7c83262 100644
--- a/perl-threads.spec
+++ b/perl-threads.spec
@@ -1,15 +1,13 @@
 Name:   perl-threads
 Epoch:  1
-Version:1.98
+Version:1.99
 Release:1%{?dist}
 Summary:Perl interpreter-based threads
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/threads/
 Source0:
http://search.cpan.org/CPAN/authors/id/J/JD/JDHEDDEN/threads-%{version}.tar.gz
-# threads-1.{97,98} works only with recent perls, bug #1199124
-# https://rt.cpan.org/Public/Bug/Display.html?id=102527
-BuildRequires:  perl = 4:5.20.1
+BuildRequires:  perl
 BuildRequires:  perl(Config)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Spec)
@@ -67,6 +65,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 09 2015 Petr Pisar ppi...@redhat.com - 1:1.99-1
+- 1.99 bump
+
 * Fri Mar 06 2015 Petr Pisar ppi...@redhat.com - 1:1.98-1
 - 1.98 bump
 
diff --git a/sources b/sources
index 52c72d7..52021cd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3eb1691199b7f23506fb7ba86cf22218  threads-1.98.tar.gz
+374da38300b7370c07b9762c2401d3a0  threads-1.99.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-threads/f22] 1.99 bump

2015-03-09 Thread Petr Pisar
Summary of changes:

  e17f71e... 1.99 bump (*)

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

[Bug 1199687] perl-threads-1.99 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199687



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
ppisar's perl-threads-1.99-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=619076

-- 
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=pxyL5hwQy7a=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 1197404] perl-Text-VimColor-0.25 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1197404



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Text-VimColor-0.25-1.fc22 has been pushed to the Fedora 22 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=5xQdHXcOifa=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-Proc-Guard] Import

2015-03-09 Thread Petr Pisar
commit a99dcb4624a84f6560b387a154b430250bf391e6
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 09:40:06 2015 +0100

Import

 .gitignore   |  1 +
 perl-Proc-Guard.spec | 66 
 sources  |  1 +
 3 files changed, 68 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b012e2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Proc-Guard-0.06.tar.gz
diff --git a/perl-Proc-Guard.spec b/perl-Proc-Guard.spec
new file mode 100644
index 000..af061bd
--- /dev/null
+++ b/perl-Proc-Guard.spec
@@ -0,0 +1,66 @@
+Name:   perl-Proc-Guard
+Version:0.06
+Release:1%{?dist}
+Summary:Process runner with RAII pattern
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Proc-Guard/
+Source0:
http://www.cpan.org/authors/id/T/TO/TOKUHIROM/Proc-Guard-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl
+BuildRequires:  perl(inc::Module::Install)
+BuildRequires:  perl(Module::Install::AuthorTests)
+BuildRequires:  perl(Module::Install::Metadata)
+BuildRequires:  perl(Module::Install::ReadmeMarkdownFromPod)
+BuildRequires:  perl(Module::Install::WriteAll)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Class::Accessor::Lite) = 0.05
+BuildRequires:  perl(Exporter) = 5.63
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Tests:
+BuildRequires:  perl(IO::Socket::INET)
+BuildRequires:  perl(Test::More) = 0.94
+BuildRequires:  perl(Test::Requires)
+# Optional tests:
+BuildRequires:  perl(File::Which)
+BuildRequires:  perl(Test::TCP)
+BuildRequires:  perl(Test::SharedFork)
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(Exporter) = 5.63
+
+# Filter under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Exporter\\)$
+
+%description
+Proc::Guard runs process, and destroys it when the perl script exits.
+This is useful for testing code working with server process.
+
+%prep
+%setup -q -n Proc-Guard-%{version}
+# Remove bundled modules, but keep the directory to skip xt tests
+rm -r inc/*
+sed -i -e '/^inc\//d' MANIFEST
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+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/*
+
+%check
+make test
+
+%files
+%doc Changes README.mkdn
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 06 2015 Petr Pisar ppi...@redhat.com 0.06-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..33bf0e6 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+44a3eb2bfcc8cce049b975afa546466e  Proc-Guard-0.06.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-Proc-Guard] IO::Socket::INET is optional because it depends on optional tests

2015-03-09 Thread Petr Pisar
commit a5ad16e8d0c6478b092964f0fb4e6d7bb1a64ff3
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 09:41:09 2015 +0100

IO::Socket::INET is optional because it depends on optional tests

 perl-Proc-Guard.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/perl-Proc-Guard.spec b/perl-Proc-Guard.spec
index af061bd..1349f9e 100644
--- a/perl-Proc-Guard.spec
+++ b/perl-Proc-Guard.spec
@@ -21,11 +21,11 @@ BuildRequires:  perl(POSIX)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Tests:
-BuildRequires:  perl(IO::Socket::INET)
 BuildRequires:  perl(Test::More) = 0.94
 BuildRequires:  perl(Test::Requires)
 # Optional tests:
 BuildRequires:  perl(File::Which)
+BuildRequires:  perl(IO::Socket::INET)
 BuildRequires:  perl(Test::TCP)
 BuildRequires:  perl(Test::SharedFork)
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
--
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 1199687] perl-threads-1.99 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199687

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

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-threads-1.99-1.fc23



-- 
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=XhYf5hrr5pa=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-Text-Quoted/f21] (3 commits) ...Merge cleanup.

2015-03-09 Thread corsepiu
Summary of changes:

  f97e438... Perl 5.20 rebuild (*)
  3f12b67... Upstream update. (*)
  5014787... Merge cleanup.

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

[perl-Text-Quoted/f21: 3/3] Merge cleanup.

2015-03-09 Thread corsepiu
commit 5014787e267f35b1cda800b650437d510dee
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 08:52:55 2015 +0100

Merge cleanup.

 perl-Text-Quoted.spec | 3 ---
 1 file changed, 3 deletions(-)
---
diff --git a/perl-Text-Quoted.spec b/perl-Text-Quoted.spec
index 8133a95..7685515 100644
--- a/perl-Text-Quoted.spec
+++ b/perl-Text-Quoted.spec
@@ -46,9 +46,6 @@ make test
 - Upstream update.
 - Reflect Source0: having changed.
 
-* Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 2.08-5
-- Perl 5.20 rebuild
-
 * Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.08-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1199338] perl-threads-1.98 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199338

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

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
Package perl-threads-1.98-1.fc22:
* should fix your issue,
* was pushed to the Fedora 22 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing perl-threads-1.98-1.fc22'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2015-3348/perl-threads-1.98-1.fc22
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=BYUmxai9mQa=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 1196916] perl-Net-DNS-0.83 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1196916



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-DNS-0.83-1.fc22 has been pushed to the Fedora 22 stable repository. 
If problems still persist, please make note of it in this bug report.

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

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1195991



--- Comment #10 from Fedora Update System upda...@fedoraproject.org ---
perl-Tangerine-0.13-1.fc22 has been pushed to the Fedora 22 stable repository. 
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=7YIqskSK1ua=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 1194265] perl-List-Compare-0.46 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1194265



--- Comment #8 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Z1bKPdQTZBa=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 1192377] perl-List-Compare-0.43 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1192377



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=PKrybdL6JQa=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 1195094] perl-List-Compare-0.47 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1195094



--- Comment #5 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=NwgySjcTECa=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 1190421] perl-List-Compare-0.40 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190421



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-List-Compare-0.48-1.fc21 has been pushed to the Fedora 21 stable
repository.  If problems still persist, please make note of it in this bug
report.

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

[fusioninventory-agent/f20] (5 commits) ...new sources

2015-03-09 Thread jehane
Summary of changes:

  15aae5f... building as noarch (*)
  7d1aff0... forgot mail adress (*)
  c12955a... re-enabling arch and excluding debug (*)
  56a0d5a... update to 2.3.16 (*)
  75a659f... new sources (*)

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

[Bug 1199124] perl-threads-1.97 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199124



--- Comment #7 from Fedora Update System upda...@fedoraproject.org ---
perl-threads-1.99-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-threads-1.99-1.fc22

-- 
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=14oY7GCp0ua=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 1199687] perl-threads-1.99 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199687



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-threads-1.99-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-threads-1.99-1.fc22

-- 
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=2r60ORpxRBa=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-Data-ICal] Upstream update.

2015-03-09 Thread corsepiu
commit 2df002b2665cf6a972abac4cbab1e5b5e463ae7b
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 07:30:04 2015 +0100

Upstream update.

 .gitignore  | 2 +-
 perl-Data-ICal.spec | 7 +--
 sources | 2 +-
 3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a40d091..f6385d0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Data-ICal-0.21.tar.gz
+/Data-ICal-0.22.tar.gz
diff --git a/perl-Data-ICal.spec b/perl-Data-ICal.spec
index f2684d4..26c3101 100644
--- a/perl-Data-ICal.spec
+++ b/perl-Data-ICal.spec
@@ -1,6 +1,6 @@
 Name:   perl-Data-ICal
-Version:0.21
-Release:5%{?dist}
+Version:0.22
+Release:1%{?dist}
 Summary:Generates iCalendar (RFC 2445) calendar files
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 09 2015 Ralf Corsépius corse...@fedoraproject.org - 0.22-1
+- Upstream update.
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.21-5
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 0469f68..b9e3f5e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6b5a8286d906264d82a372e33594c5d0  Data-ICal-0.21.tar.gz
+7ba398c22481d8de8e2bb317173b3483  Data-ICal-0.22.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 Data-ICal-0.22.tar.gz uploaded to lookaside cache by corsepiu

2015-03-09 Thread corsepiu
A file has been added to the lookaside cache for perl-Data-ICal:

7ba398c22481d8de8e2bb317173b3483  Data-ICal-0.22.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-Data-ICal/f22] Upstream update.

2015-03-09 Thread corsepiu
Summary of changes:

  2df002b... Upstream update. (*)

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

[perl-Data-ICal/f21] (3 commits) ...Merge cleanup.

2015-03-09 Thread corsepiu
Summary of changes:

  27c3d43... Perl 5.20 rebuild (*)
  2df002b... Upstream update. (*)
  4bbd966... Merge cleanup.

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

[perl-Data-ICal/f21: 3/3] Merge cleanup.

2015-03-09 Thread corsepiu
commit 4bbd9660789e8bee771178fdcd0bb8fd1cb43c25
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 07:49:02 2015 +0100

Merge cleanup.

 perl-Data-ICal.spec | 3 ---
 1 file changed, 3 deletions(-)
---
diff --git a/perl-Data-ICal.spec b/perl-Data-ICal.spec
index 26c3101..5c889dd 100644
--- a/perl-Data-ICal.spec
+++ b/perl-Data-ICal.spec
@@ -61,9 +61,6 @@ make test
 * Mon Mar 09 2015 Ralf Corsépius corse...@fedoraproject.org - 0.22-1
 - Upstream update.
 
-* Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 0.21-5
-- Perl 5.20 rebuild
-
 * Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.21-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Text-Quoted-2.09.tar.gz uploaded to lookaside cache by corsepiu

2015-03-09 Thread corsepiu
A file has been added to the lookaside cache for perl-Text-Quoted:

50bdf7f4c88ad790738ec85ddc0845eb  Text-Quoted-2.09.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-Data-ICal/f20: 5/5] Merge cleanup.

2015-03-09 Thread corsepiu
commit adcccf3cfbc72ac7f8421ce29259b464d93793d3
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 07:55:13 2015 +0100

Merge cleanup.

 perl-Data-ICal.spec | 3 ---
 1 file changed, 3 deletions(-)
---
diff --git a/perl-Data-ICal.spec b/perl-Data-ICal.spec
index 5c889dd..7f11a17 100644
--- a/perl-Data-ICal.spec
+++ b/perl-Data-ICal.spec
@@ -61,9 +61,6 @@ make test
 * Mon Mar 09 2015 Ralf Corsépius corse...@fedoraproject.org - 0.22-1
 - Upstream update.
 
-* Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.21-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.21-3
 - 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-Data-ICal/f20] (5 commits) ...Merge cleanup.

2015-03-09 Thread corsepiu
Summary of changes:

  ddbebe1... - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass (*)
  27c3d43... Perl 5.20 rebuild (*)
  2df002b... Upstream update. (*)
  4bbd966... Merge cleanup. (*)
  adcccf3... Merge cleanup.

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

[perl-Text-Quoted] Upstream update.

2015-03-09 Thread corsepiu
commit 3f12b67f9b9c6c56594720a1ddc10798bcbe576c
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Mon Mar 9 08:45:58 2015 +0100

Upstream update.

- Reflect Source0: having changed.

 .gitignore|  2 +-
 perl-Text-Quoted.spec | 10 +++---
 sources   |  2 +-
 3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3178ed1..56e2822 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Text-Quoted-2.08.tar.gz
+/Text-Quoted-2.09.tar.gz
diff --git a/perl-Text-Quoted.spec b/perl-Text-Quoted.spec
index bc7b00c..8133a95 100644
--- a/perl-Text-Quoted.spec
+++ b/perl-Text-Quoted.spec
@@ -1,11 +1,11 @@
 Name:  perl-Text-Quoted
-Version:   2.08
-Release:   5%{?dist}
+Version:   2.09
+Release:   1%{?dist}
 Summary:   Extract the structure of a quoted mail message
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/Text-Quoted/
-Source0:
http://www.cpan.org/authors/id/T/TS/TSIBLEY/Text-Quoted-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/A/AL/ALEXMV/Text-Quoted-%{version}.tar.gz
 
 BuildArch: noarch
 
@@ -42,6 +42,10 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 09 2015 Ralf Corsépius corse...@fedoraproject.org - 2.09-1
+- Upstream update.
+- Reflect Source0: having changed.
+
 * Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 2.08-5
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 5f0d567..625aed6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2ddedd6541460a32223cf91c7e16fcb7  Text-Quoted-2.08.tar.gz
+50bdf7f4c88ad790738ec85ddc0845eb  Text-Quoted-2.09.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-Text-Quoted/f22] Upstream update.

2015-03-09 Thread corsepiu
Summary of changes:

  3f12b67... Upstream update. (*)

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

File Perl-Critic-Pulp-90.tar.gz uploaded to lookaside cache by ppisar

2015-03-09 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Perl-Critic-Pulp:

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

[perl-Perl-Critic-Pulp] 90 version bump

2015-03-09 Thread Petr Pisar
commit 95508c65d7db9440bfbddd8dcc4a277281a86a58
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 9 10:58:20 2015 +0100

90 version bump

 .gitignore | 1 +
 perl-Perl-Critic-Pulp.spec | 8 ++--
 sources| 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index fd6bf87..c836e54 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,4 @@
 /Perl-Critic-Pulp-87.tar.gz
 /Perl-Critic-Pulp-88.tar.gz
 /Perl-Critic-Pulp-89.tar.gz
+/Perl-Critic-Pulp-90.tar.gz
diff --git a/perl-Perl-Critic-Pulp.spec b/perl-Perl-Critic-Pulp.spec
index 9a0ee32..b77d295 100644
--- a/perl-Perl-Critic-Pulp.spec
+++ b/perl-Perl-Critic-Pulp.spec
@@ -1,5 +1,5 @@
 Name:   perl-Perl-Critic-Pulp
-Version:89
+Version:90
 Release:1%{?dist}
 Summary:Some add-on perlcritic policies
 License:GPLv3+
@@ -93,11 +93,15 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm 
-f {} \;
 make test
 
 %files
-%doc Changes COPYING README
+%license COPYING
+%doc Changes README
 %{perl_privlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 09 2015 Petr Pisar ppi...@redhat.com - 90-1
+- 90 version bump
+
 * Mon Jan 05 2015 Petr Pisar ppi...@redhat.com - 89-1
 - 89 version bump
 
diff --git a/sources b/sources
index 78f07ee..954abe3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-790e293867f7b75537c4255f6d9bc78b  Perl-Critic-Pulp-89.tar.gz
+cf8b45ee2803e90092dd666396ef7c99  Perl-Critic-Pulp-90.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 1199338] perl-threads-1.98 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199338



--- Comment #6 from Fedora Update System upda...@fedoraproject.org ---
perl-threads-1.99-1.fc22 has been submitted as an update for Fedora 22.
https://admin.fedoraproject.org/updates/perl-threads-1.99-1.fc22

-- 
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=Ur1UuwQ6Spa=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 1199723] perl-Perl-Critic-Pulp-90 is available

2015-03-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1199723



--- Comment #2 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
ppisar's perl-Perl-Critic-Pulp-90-1.fc23 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=619084

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