[perl-OpenFrame] Apply patch from pre-previous commit.

2011-07-25 Thread Marcela Mašláňová
commit 52d76378d88ab1dc793e33ad872f5cba75135446
Author: Marcela Mašláňová 
Date:   Mon Jul 25 09:52:49 2011 +0200

Apply patch from pre-previous commit.

 ...Adapt-CGI-Cookie-construction-to-CGI-3.51.patch |   30 
 1 files changed, 30 insertions(+), 0 deletions(-)
---
diff --git 
a/perl-OpenFrame-3.05-Adapt-CGI-Cookie-construction-to-CGI-3.51.patch 
b/perl-OpenFrame-3.05-Adapt-CGI-Cookie-construction-to-CGI-3.51.patch
new file mode 100644
index 000..5fd8a80
--- /dev/null
+++ b/perl-OpenFrame-3.05-Adapt-CGI-Cookie-construction-to-CGI-3.51.patch
@@ -0,0 +1,30 @@
+From f6fea01379c50fa7d6dc1d981e3f7e11f9c19bd6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Fri, 24 Jun 2011 15:22:19 +0200
+Subject: [PATCH] Adapt CGI::Cookie construction to CGI 3.51 (RT#69077)
+
+---
+ lib/OpenFrame/Cookies.pm |7 ---
+ 1 files changed, 4 insertions(+), 3 deletions(-)
+
+diff --git a/lib/OpenFrame/Cookies.pm b/lib/OpenFrame/Cookies.pm
+index 7ee5379..7293a10 100644
+--- a/lib/OpenFrame/Cookies.pm
 b/lib/OpenFrame/Cookies.pm
+@@ -43,9 +43,10 @@ sub set {
+ ## right, we have a key value pair that we need to turn
+ ## into an OpenFrame::Cookie object
+ 
+-my $cookie = OpenFrame::Cookie->new();
+-$cookie->name( $key );
+-$cookie->value( [ $val ] );
++my $cookie = OpenFrame::Cookie->new(
++-name => $key,
++-value => [ $val ]
++);
+ 
+ ## call this method again with the cookie as the parameter
+ $self->set( $cookie );
+-- 
+1.7.5.4
+
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Gtk2-Ex-Carp] add new filter

2011-07-25 Thread Marcela Mašláňová
commit c9e6af7c600ac6b7adf2f70a6cec11e5ccf5360d
Author: Marcela Mašláňová 
Date:   Mon Jul 25 11:03:13 2011 +0200

add new filter

 perl-Gtk2-Ex-Carp.spec |8 ++--
 1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/perl-Gtk2-Ex-Carp.spec b/perl-Gtk2-Ex-Carp.spec
index f712e9a..97d2447 100644
--- a/perl-Gtk2-Ex-Carp.spec
+++ b/perl-Gtk2-Ex-Carp.spec
@@ -1,6 +1,6 @@
 Name:   perl-Gtk2-Ex-Carp
 Version:0.01
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:GTK+ friendly die() and warn() functions
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -18,10 +18,11 @@ die() and warn() functions, and two which allow for 
extended error
 reporting. When called, these functions display a user-friendly message
 dialog window.
 
-%{?filter_setup:
+%{?perl_default_filter
 %filter_from_requires /perl(Gtk2::Dialog)/d
 %{?perl_default_filter}
 }
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(Gtk2::Dialog\\)
 
 %prep
 %setup -q -n Gtk2-Ex-Carp-%{version}
@@ -54,6 +55,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 25 2011 Marcela Mašláňová  - 0.01-13
+- add new filter
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 0.01-12
 - Perl mass rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-DBD-CSV] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 78c2e7a67bcdd064f416aecaeb085818425f845a
Author: Petr Pisar 
Date:   Mon Jul 25 11:10:17 2011 +0200

RPM 4.9 dependency filtering added

 perl-DBD-CSV.spec |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBD-CSV.spec b/perl-DBD-CSV.spec
index 5ed88d3..4ca855b 100644
--- a/perl-DBD-CSV.spec
+++ b/perl-DBD-CSV.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBD-CSV
 Version:0.31
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:DBI driver for CSV files
 
 Group:  Development/Libraries
@@ -25,9 +25,13 @@ Requires:   perl(SQL::Statement) >= 1.31
 # Requires >= 0.71, but 0.73 is recommended
 Requires:   perl(Text::CSV_XS) >= 0.71
 
+# RPM 4.8 style
 %filter_from_requires /^perl(DBD::File)$/d
 %filter_from_requires /^perl(Text::CSV_XS)$/d
 %filter_setup
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(DBD::File\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(Text::CSV_XS\\)$
 
 %description
 The DBD::CSV module is yet another driver for the DBI (Database
@@ -73,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.31-5
+- RPM 4.9 dependency filtering added
+
 * Tue Jul 19 2011 Petr Sabata  - 0.31-4
 - Perl 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-HTTP-Cookies] add new filter

2011-07-25 Thread Marcela Mašláňová
commit 111d436e4b94b5cee391b64a8875f79e56d8c157
Author: Marcela Mašláňová 
Date:   Mon Jul 25 11:14:03 2011 +0200

add new filter

 perl-HTTP-Cookies.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-Cookies.spec b/perl-HTTP-Cookies.spec
index 0b1ea95..9c9b978 100644
--- a/perl-HTTP-Cookies.spec
+++ b/perl-HTTP-Cookies.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Cookies
 Version:6.00
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:HTTP cookie jars
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -28,6 +28,8 @@ Conflicts:  perl-libwww-perl < 6
 # function do not need it. This keep the module, but remove dependency.
 %filter_from_requires /^perl(Win32)/d
 %filter_setup
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(Win32|HTTP::Date|HTTP::Headers::Util\\)$
+
 
 %description
 This class is for objects that represent a "cookie jar" -- that is, a
@@ -57,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 25 2011 Marcela Mašláňová  - 6.00-3
+- add new filter
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 6.00-2
 - Perl 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-Devel-Caller] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Sabata
commit 18c2b80686fdfe615681f2e9657dd0d88d16b44f
Author: Petr Pisar 
Date:   Mon Jul 25 11:27:37 2011 +0200

RPM 4.9 dependency filtering added

 perl-Devel-Caller.spec |   10 --
 1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/perl-Devel-Caller.spec b/perl-Devel-Caller.spec
index 3478963..e382f30 100644
--- a/perl-Devel-Caller.spec
+++ b/perl-Devel-Caller.spec
@@ -1,6 +1,6 @@
 Name:   perl-Devel-Caller
 Version:2.05
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Meatier versions of caller
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,10 +13,13 @@ BuildRequires:  perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Don't provide Caller.so or perl(DB)
+# RPM 4.8 style
 %{?filter_setup:
 %filter_from_provides /^perl(DB)/d
-%?perl_default_filter
 }
+# RPM 4.9 style
+%global __provides_exclude 
%{?__provides_exclude:__provides_exclude|}^perl\\(DB\\)
+%{?perl_default_filter}
 
 %description
 Devel::Caller - Meatier versions of caller.
@@ -53,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/Devel::Caller.3pm*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 2.05-6
+- RPM 4.9 dependency filtering added
+
 * Sun Jun 19 2011 Marcela Mašláňová  - 2.05-5
 - Perl 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-Devel-CheckOS] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 4c06c8c0e8aefa64a26612f8a26754f44dfae04a
Author: Petr Pisar 
Date:   Mon Jul 25 11:32:17 2011 +0200

RPM 4.9 dependency filtering added

 perl-Devel-CheckOS.spec |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/perl-Devel-CheckOS.spec b/perl-Devel-CheckOS.spec
index 73fe64c..c02b9fa 100644
--- a/perl-Devel-CheckOS.spec
+++ b/perl-Devel-CheckOS.spec
@@ -1,6 +1,6 @@
 Name:   perl-Devel-CheckOS
 Version:1.64
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Check what OS we're running on
 License:GPLv2 or Artistic
 Group:  Development/Libraries
@@ -21,8 +21,12 @@ Requires:   perl(File::Find::Rule) >= 0.28
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Remove unversioned requires
+# RPM 4.8 style
 %filter_from_requires /perl(Data::Compare)$/d /perl(File::Find::Rule)$/d
 %filter_setup
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}perl\\(Data::Compare\\)$
+%global __requires_exclude %__requires_exclude|perl\\(File::Find::Rule\\)$
 
 %description
 Devel::CheckOS provides a more friendly interface to $^O, and also lets you
@@ -62,6 +66,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 1.64-4
+- RPM 4.9 dependency filtering added
+
 * Thu Jul 21 2011 Petr Sabata  - 1.64-3
 - Perl mass rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-ExtUtils-XSpp] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 3b0a3b6a40bb63b584b0f12a428774d51b9b013c
Author: Petr Pisar 
Date:   Mon Jul 25 11:37:46 2011 +0200

RPM 4.9 dependency filtering added

 perl-ExtUtils-XSpp.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/perl-ExtUtils-XSpp.spec b/perl-ExtUtils-XSpp.spec
index 156f893..b80f390 100644
--- a/perl-ExtUtils-XSpp.spec
+++ b/perl-ExtUtils-XSpp.spec
@@ -1,7 +1,7 @@
 Name:   perl-ExtUtils-XSpp
 # Use four digits since 0.1601
 Version:0.1602
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:C++ variant of Perl's XS language
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,8 +13,11 @@ BuildRequires:  perl(Test::Base)
 BuildRequires:  perl(Test::Differences)
 BuildRequires:  perl(ExtUtils::ParseXS) >= 0.2202
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+# RPM 4.8 style
 %filter_from_requires /ExtUtils::XSpp::Lexer/d
 %filter_setup
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}ExtUtils::XSpp::Lexer
 
 %description
 ExtUtils::XSpp handles the XS++ language, used to create an extension interface
@@ -43,6 +46,9 @@ find $RPM_BUILD_ROOT -depth -type d -empty -exec rmdir {} \;
 %{_mandir}/man?/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.1602-3
+- RPM 4.9 dependency filtering added
+
 * Wed Jun 29 2011 Marcela Mašláňová  - 0.1602-2
 - Perl 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 Module-ScanDeps-1.04.tar.gz uploaded to lookaside cache by psabata

2011-07-25 Thread Petr Sabata
A file has been added to the lookaside cache for perl-Module-ScanDeps:

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


[perl-Module-ScanDeps] 1.04 bump

2011-07-25 Thread Petr Sabata
commit f1bb430c2a80b121843394f7fb0a65fe62614a4b
Author: Petr Sabata 
Date:   Mon Jul 25 11:50:09 2011 +0200

1.04 bump

 .gitignore|1 +
 perl-Module-ScanDeps.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d502336..ad4438b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Module-ScanDeps-0.97.tar.gz
 /Module-ScanDeps-0.98.tar.gz
 /Module-ScanDeps-1.02.tar.gz
+/Module-ScanDeps-1.04.tar.gz
diff --git a/perl-Module-ScanDeps.spec b/perl-Module-ScanDeps.spec
index 6cd57f4..eca517e 100644
--- a/perl-Module-ScanDeps.spec
+++ b/perl-Module-ScanDeps.spec
@@ -1,7 +1,7 @@
 Name:   perl-Module-ScanDeps
 Summary:Recursively scan Perl code for dependencies
-Version:1.02
-Release:2%{?dist}
+Version:1.04
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/Module-ScanDeps-%{version}.tar.gz
 
@@ -74,6 +74,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Sabata  - 1.04-1
+- 1.04 bump
+
 * Wed Jul 20 2011 Petr Sabata  - 1.02-2
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 28f49a2..03e0e34 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d58a02176fb81015dd2ce42b6320fb28  Module-ScanDeps-1.02.tar.gz
+d631b193dcf0b175f2fab9ff67d72bdb  Module-ScanDeps-1.04.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[Bug 724927] perl-Module-ScanDeps-1.04 is available

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


https://bugzilla.redhat.com/show_bug.cgi?id=724927

Petr Sabata  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Module-ScanDeps-1.04-1
   ||.fc16

--- Comment #2 from Petr Sabata  2011-07-25 05:51:34 EDT ---
Updated in dist-f16-perl.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Gtk2-Ex-Carp] fix filter - thanks to Paul Howarth

2011-07-25 Thread Marcela Mašláňová
commit b97d6505a872226600982ae6ef97c14e85ebeaa0
Author: Marcela Mašláňová 
Date:   Mon Jul 25 12:10:27 2011 +0200

fix filter - thanks to Paul Howarth

 perl-Gtk2-Ex-Carp.spec |8 
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/perl-Gtk2-Ex-Carp.spec b/perl-Gtk2-Ex-Carp.spec
index 97d2447..34a5f28 100644
--- a/perl-Gtk2-Ex-Carp.spec
+++ b/perl-Gtk2-Ex-Carp.spec
@@ -1,6 +1,6 @@
 Name:   perl-Gtk2-Ex-Carp
 Version:0.01
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:GTK+ friendly die() and warn() functions
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -18,7 +18,7 @@ die() and warn() functions, and two which allow for extended 
error
 reporting. When called, these functions display a user-friendly message
 dialog window.
 
-%{?perl_default_filter
+%{?perl_default_filter:
 %filter_from_requires /perl(Gtk2::Dialog)/d
 %{?perl_default_filter}
 }
@@ -55,8 +55,8 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
-* Mon Jun 25 2011 Marcela Mašláňová  - 0.01-13
-- add new filter
+* Mon Jun 25 2011 Marcela Mašláňová  - 0.01-14
+- add new filter, fix filter - thanks to Paul Howarth
 
 * Tue Jun 21 2011 Marcela Mašláňová  - 0.01-12
 - Perl 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-HTTP-Daemon] add new filter

2011-07-25 Thread Marcela Mašláňová
commit f057eecbd02b12036a3d63ff36e4f2902256a03b
Author: Marcela Mašláňová 
Date:   Mon Jul 25 12:24:23 2011 +0200

add new filter

 perl-HTTP-Daemon.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-Daemon.spec b/perl-HTTP-Daemon.spec
index 29a0081..47eae08 100644
--- a/perl-HTTP-Daemon.spec
+++ b/perl-HTTP-Daemon.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Daemon
 Version:6.00
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Simple HTTP server class
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -39,6 +39,8 @@ Conflicts:  perl-libwww-perl < 6
 %filter_from_requires /^perl(LWP::MediaTypes)\s*$/d;
 %filter_setup
 
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(HTTP::(Date|Request|Response|Status)|LWP::MediaTypes\\)$
+
 %description
 Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a
 socket for incoming requests. The HTTP::Daemon is a subclass of
@@ -67,6 +69,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 25 2011 Marcela Mašláňová  - 6.00-3
+- add new filter
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 6.00-2
 - Perl 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-HTTP-Message] add new filter

2011-07-25 Thread Marcela Mašláňová
commit 9497e7256c9e213c36ea85acb401af3f6d8c0670
Author: Marcela Mašláňová 
Date:   Mon Jul 25 12:30:29 2011 +0200

add new filter

 perl-HTTP-Message.spec |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-Message.spec b/perl-HTTP-Message.spec
index 2d647a8..72c68df 100644
--- a/perl-HTTP-Message.spec
+++ b/perl-HTTP-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Message
 Version:6.02
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:HTTP style message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -54,6 +54,10 @@ Conflicts:  perl-libwww-perl < 6
 %filter_from_provides /^perl(HTTP::Headers)\s*$/d
 %filter_setup
 
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(HTTP::Date|URI\\)$
+%global __provides_exclude 
%{?__provides_exclude:%__provides_exclude|}perl\\(HTTP::Headers\\)$
+
+
 %description
 The HTTP-Message distribution contains classes useful for representing the
 messages passed in HTTP style communication.  These are classes representing
@@ -82,6 +86,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 25 2011 Marcela Mašláňová  - 6.02-3
+- add new filter
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 6.02-2
 - Perl 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-HTTP-Negotiate] add new filter

2011-07-25 Thread Marcela Mašláňová
commit 626778960e1d7c1a1e6f159cadf5af0918196670
Author: Marcela Mašláňová 
Date:   Mon Jul 25 12:32:38 2011 +0200

add new filter

 perl-HTTP-Negotiate.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-Negotiate.spec b/perl-HTTP-Negotiate.spec
index b595309..2e8cab2 100644
--- a/perl-HTTP-Negotiate.spec
+++ b/perl-HTTP-Negotiate.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Negotiate
 Version:6.00
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Choose a variant to serve
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -21,6 +21,8 @@ Conflicts:  perl-libwww-perl < 6
 %filter_from_requires /^perl(HTTP::Headers)\s*$/d
 %filter_setup
 
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(HTTP::Headers\\)$
+
 %description
 This module provides a complete implementation of the HTTP content
 negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter
@@ -51,6 +53,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 25 2011 Marcela Mašláňová  - 6.00-3
+- add new filter
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 6.00-2
 - Perl mass rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-File-Listing] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 2fb9c294d0a1391a4288732e0d62f2abb8686311
Author: Petr Pisar 
Date:   Mon Jul 25 12:36:58 2011 +0200

RPM 4.9 dependency filtering added

 perl-File-Listing.spec |   10 +-
 1 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/perl-File-Listing.spec b/perl-File-Listing.spec
index 27dc66b..beea46c 100644
--- a/perl-File-Listing.spec
+++ b/perl-File-Listing.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-Listing
 Version:6.02
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Parse directory listing
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -24,6 +24,11 @@ Conflicts:  perl-libwww-perl < 6
 # Do not provide private modules
 %filter_from_provides /^perl(File::Listing::/d
 %filter_setup
+# RPM 4.9 style
+# Remove underspecified dependencies
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(HTTP::Date\\)\s*$
+# Do not provide private modules
+%global __provides_exclude 
%{?__provides_exclude:__provides_exclude|}^perl\\(File::Listing::
 
 %description
 This module exports a single function called parse_dir(), which can be used
@@ -52,6 +57,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 6.02-3
+- RPM 4.9 dependency filtering added
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 6.02-2
 - Perl 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 725376] New: perl-Language-Functional-0.05 is available

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Language-Functional-0.05 is available

https://bugzilla.redhat.com/show_bug.cgi?id=725376

   Summary: perl-Language-Functional-0.05 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Language-Functional
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---


Latest upstream release: 0.05
Current version in Fedora Rawhide: 0.04
URL: http://search.cpan.org/dist/Language-Functional/

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

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

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-File-PathList] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 99bc6cfc19f5be2674f306a71b60aaab2f38c185
Author: Petr Pisar 
Date:   Mon Jul 25 12:43:55 2011 +0200

RPM 4.9 dependency filtering added

 perl-File-PathList.spec |   10 +-
 1 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/perl-File-PathList.spec b/perl-File-PathList.spec
index 2518cf1..075b18e 100644
--- a/perl-File-PathList.spec
+++ b/perl-File-PathList.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-PathList
 Version:1.04
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Find a file within a set of paths (like @INC or Java 
classpaths)
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -19,9 +19,14 @@ Requires:   perl(File::Spec) >= 0.80
 Requires:   perl(Params::Util) >= 0.24
 
 # Remove underspecified dependencies
+# RPM 4.8 style:
 %filter_from_requires /^perl(File::Spec)\s*$/d
 %filter_from_requires /^perl(Params::Util)\s*$/d
 %filter_setup
+# RPM 4.9 style:
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(File::Spec\\)\\s*$
+%global __requires_exclude %__requires_exclude|^perl\\(Params::Util\\)\\s*$
+
 
 %description
 Many systems that map generic relative paths to absolute paths do so with a
@@ -54,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 1.04-3
+- RPM 4.9 dependency filtering added
+
 * Tue Jun 21 2011 Marcela Mašláňová  - 1.04-2
 - Perl 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 725375] New: perl-Inline-Files-0.68 is available

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Inline-Files-0.68 is available

https://bugzilla.redhat.com/show_bug.cgi?id=725375

   Summary: perl-Inline-Files-0.68 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Inline-Files
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com, mmasl...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---


Latest upstream release: 0.68
Current version in Fedora Rawhide: 0.67
URL: http://search.cpan.org/dist/Inline-Files/

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

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

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


File Inline-Files-0.68.tar.gz uploaded to lookaside cache by psabata

2011-07-25 Thread Petr Sabata
A file has been added to the lookaside cache for perl-Inline-Files:

f20f920979fdfd1799410a75104ffa3e  Inline-Files-0.68.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-Inline-Files] 0.68 bump

2011-07-25 Thread Petr Sabata
commit 3fe93c287b2802670e70cf4dd4d91f94cd699454
Author: Petr Sabata 
Date:   Mon Jul 25 12:49:37 2011 +0200

0.68 bump

 .gitignore |1 +
 perl-Inline-Files.spec |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c54f53b..7e02caa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Inline-Files-0.63.tar.gz
 /Inline-Files-0.64.tar.gz
 /Inline-Files-0.65.tar.gz
 /Inline-Files-0.67.tar.gz
+/Inline-Files-0.68.tar.gz
diff --git a/perl-Inline-Files.spec b/perl-Inline-Files.spec
index 42e17b2..07a39f9 100644
--- a/perl-Inline-Files.spec
+++ b/perl-Inline-Files.spec
@@ -1,6 +1,6 @@
 Name:   perl-Inline-Files
-Version:0.67
-Release:2%{?dist}
+Version:0.68
+Release:1%{?dist}
 Summary:Allows for multiple inline files in a single perl file
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -47,6 +47,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Jul 25 2011 Petr Sabata  - 0.68-1
+- 0.68 bump
+
 * Mon Jul 18 2011 Petr Sabata  - 0.67-2
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 0cd5dbd..1f6c050 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-938c737763522461bcb810cd9bd2a592  Inline-Files-0.67.tar.gz
+f20f920979fdfd1799410a75104ffa3e  Inline-Files-0.68.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-File-ShareDir-PAR] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit f313a5ad6d27b021e503905a649f45bf962c9577
Author: Petr Pisar 
Date:   Mon Jul 25 12:48:10 2011 +0200

RPM 4.9 dependency filtering added

 perl-File-ShareDir-PAR.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/perl-File-ShareDir-PAR.spec b/perl-File-ShareDir-PAR.spec
index a79d081..7f432f6 100644
--- a/perl-File-ShareDir-PAR.spec
+++ b/perl-File-ShareDir-PAR.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-ShareDir-PAR
 Version:0.06
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:File::ShareDir with PAR support
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -17,8 +17,11 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 Requires:   perl(File::ShareDir) >= 1.02
 Requires:   perl(PAR) >= 0.989
 
+# RPM 4.8 style:
 %filter_from_requires /perl(File::ShareDir)$/d
 %filter_setup
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}perl\\(File::ShareDir\\)$
 
 %description
 File::ShareDir::PAR provides the same functionality as File::ShareDir but
@@ -56,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.06-6
+- RPM 4.9 dependency filtering added
+
 * Tue Jul 19 2011 Petr Sabata  - 0.06-5
 - Perl 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 725375] perl-Inline-Files-0.68 is available

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


https://bugzilla.redhat.com/show_bug.cgi?id=725375

Petr Sabata  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||psab...@redhat.com
 AssignedTo|mmasl...@redhat.com |psab...@redhat.com

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[Bug 725375] perl-Inline-Files-0.68 is available

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


https://bugzilla.redhat.com/show_bug.cgi?id=725375

Petr Sabata  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Inline-Files-0.68-1.fc
   ||16

--- Comment #1 from Petr Sabata  2011-07-25 06:55:38 EDT ---
Updated in dist-f16-perl

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Re: Packages affected by RPM 4.9 filtering [was: News from rebuild]

2011-07-25 Thread Petr Pisar
On Fri, Jul 22, 2011 at 03:56:22PM +0200, Petr Pisar wrote:
> On Thu, Jul 21, 2011 at 11:08:40AM +0200, Petr Pisar wrote:
> > List of perl packages whose spec file contains `filter_setup' string
> > follows. These packages can be affected by transition to RPM 4.9 dependency
> > filtering. We advise to migrate the filters after merging perl-5.14 into
> > rawhide to get proper results. Also we advise to run rpmdiff on old and new
> > package to check your spec file changes takes effect. Please note the list
> > was generated from older git repositories mirror, so it does not reflect
> > current state exactly.
> > 
> > -- Petr
> > 
> > ikiwiki
> > lcgdm
> > libdigidocpp
> > mhonarc
> > mod_perl
> > perl-Ace
> > perl-AnyEvent
> > perl-Apache-DBI-Cache
> > perl-AppConfig
> > perl-App-cpanminus
> > perl-autobox
> > perl-Bio-Graphics
> > perl-bioperl
> > perl-Catalyst-Controller-FormBuilder
> > perl-CGI
> > perl-CHI
> > perl-Class-Prototyped
> > perl-Class-XSAccessor
> > perl-Contextual-Return
> > perl-Crypt-SSLeay
> > perl-Data-TreeDumper-Renderer-GTK
> > perl-DateTime
> 
> So far, I checked and updated all this packages.
> 
> Followings are not checked.
> 
> > perl-DateTime-Format-Mail
> > perl-DateTime-Precise
> > perl-DateTime-Set
> > perl-DBD-CSV
> > perl-DBI-Dumper
> > perl-DBIx-Class-Cursor-Cached
> > perl-DBIx-ContextualFetch
> > perl-Devel-Caller
> > perl-Devel-CheckOS
> > perl-ExtUtils-XSpp
> > perl-File-ChangeNotify
> > perl-File-FnMatch
> > perl-File-Listing
> > perl-File-PathList
> > perl-File-ShareDir-PAR

All up-to perl-File-ShareDir-PAR checked.

> > perl-Goo-Canvas
> > perl-Gtk2-Ex-Carp
> > perl-HTTP-Cookies
> > perl-HTTP-Daemon
> > perl-HTTP-Message
> > perl-HTTP-Negotiate
> > perl-Kwiki
> > perl-Kwiki-NewPage
> > perl-Kwiki-Raw
> > perl-Kwiki-RecentChanges
> > perl-Kwiki-Revisions
> > perl-Kwiki-Search
> > perl-Kwiki-UserName
> > perl-Kwiki-UserPreferences
> > perl-Kwiki-Users-Remote
> > perl-Language-Functional
> > perl-libwww-perl
> > perl-LWP-Protocol-https
> > perl-Math-Random-MT-Auto
> > perl-Math-Symbolic
> > perl-Memoize-ExpireLRU
> > perl-Module-Mask
> > perl-MogileFS-Utils
> > perl-MooseX-CascadeClearing
> > perl-MooseX-Types-DateTimeX
> > perl-NetAddr-IP
> > perl-Padre
> > perl-PathTools
> > perl-PDL
> > perl-Perl-Critic-Deprecated
> > perl-Perl-Critic-More
> > perl-Perl-Critic-Pulp
> > perl-Perl-Critic-Swift
> > perl-Perlilog
> > perl-Perl-Metrics-Simple
> > perl-POE-Filter-HTTP-Parser
> > perl-PPI
> > perl-PPI-PowerToys
> > perl-PPIx-EditorTools
> > perl-PPIx-Regexp
> > perl-Pugs-Compiler-Rule
> > perl-SOAP-Lite
> > perl-Spoon
> > perl-Spreadsheet-WriteExcel
> > perl-Statistics-Basic
> > perl-STD
> > perl-Template-Toolkit
> > perl-Test-DistManifest
> > perl-Test-Perl-Critic-Progressive
> > perl-Test-Smoke
> > perl-Text-Aligner
> > perl-Text-Table
> > perl-Unicode-String
> > perl-version
> > perl-WWW-Curl
> > perl-WWW-RobotRules
> > perl-Wx
> > perl-XML-Parser
> > perl-XML-Twig
> > perl-YUM-RepoQuery
> > redland-bindings
> > rt3
> 
> -- Petr



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



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

Re: News from rebuild

2011-07-25 Thread Petr Sabata
On Fri, Jul 22, 2011 at 07:57:08PM +0200, Petr Sabata wrote:
> Good news, everyone.
> 
> The rebuild is almost over now.  1863 packages have been successfully rebuilt 
> in
> dist-f16-perl.  Still, there are twelve more that should be fixed by Monday:
> 
> fusioninventory-agent
> golly
> perl-Git-CPAN-Patch
> perl-HTML-FormFu-Model-DBIC
> perl-MongoDB
> perl-NOCpulse-Debug
> perl-NOCpulse-Gritch
> perl-NOCpulse-Object
> perl-OpenFrame
> perl-Perlbal-XS-HTTPHeaders
> perl-Pugs-Compiler-Rule
> perl-threads-tbb
> 
> Feel free to help with that, in addition with the already mentioned filters
> migration.
> 
> Let's hope it'll go much smoother with 5.16 next year.

Just a quick update:

golly (#717675)
perl-MongoDB (RT #68652)
perl-NOCpulse-Debug (#716369)
perl-NOCpulse-Gritch (#716369)
perl-NOCpulse-Object (#716369)
perl-Perlbal-XS-HTTPHeaders
perl-Pugs-Compiler-Rule
perl-threads-tbb

-- 
# Petr Sabata


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

Re: Packages affected by RPM 4.9 filtering [was: News from rebuild]

2011-07-25 Thread Petr Pisar
On Mon, Jul 25, 2011 at 01:03:28PM +0200, Petr Pisar wrote:
> On Fri, Jul 22, 2011 at 03:56:22PM +0200, Petr Pisar wrote:
> > On Thu, Jul 21, 2011 at 11:08:40AM +0200, Petr Pisar wrote:
> > > List of perl packages whose spec file contains `filter_setup' string
> > > follows. These packages can be affected by transition to RPM 4.9 
> > > dependency
> > > filtering. We advise to migrate the filters after merging perl-5.14 into
> > > rawhide to get proper results. Also we advise to run rpmdiff on old and 
> > > new
> > > package to check your spec file changes takes effect. Please note the list
> > > was generated from older git repositories mirror, so it does not reflect
> > > current state exactly.
> > > 
> > > -- Petr
> > > 
> > > ikiwiki
> > > lcgdm
> > > libdigidocpp
> > > mhonarc
> > > mod_perl
> > > perl-Ace
> > > perl-AnyEvent
> > > perl-Apache-DBI-Cache
> > > perl-AppConfig
> > > perl-App-cpanminus
> > > perl-autobox
> > > perl-Bio-Graphics
> > > perl-bioperl
> > > perl-Catalyst-Controller-FormBuilder
> > > perl-CGI
> > > perl-CHI
> > > perl-Class-Prototyped
> > > perl-Class-XSAccessor
> > > perl-Contextual-Return
> > > perl-Crypt-SSLeay
> > > perl-Data-TreeDumper-Renderer-GTK
> > > perl-DateTime
> > 
> > So far, I checked and updated all this packages.
> > 
> > Followings are not checked.
> > 
> > > perl-DateTime-Format-Mail
> > > perl-DateTime-Precise
> > > perl-DateTime-Set
> > > perl-DBD-CSV
> > > perl-DBI-Dumper
> > > perl-DBIx-Class-Cursor-Cached
> > > perl-DBIx-ContextualFetch
> > > perl-Devel-Caller
> > > perl-Devel-CheckOS
> > > perl-ExtUtils-XSpp
> > > perl-File-ChangeNotify
> > > perl-File-FnMatch
> > > perl-File-Listing
> > > perl-File-PathList
> > > perl-File-ShareDir-PAR
> 
> All up-to perl-File-ShareDir-PAR checked.
> 
> > > perl-Goo-Canvas
> > > perl-Gtk2-Ex-Carp
> > > perl-HTTP-Cookies
> > > perl-HTTP-Daemon
> > > perl-HTTP-Message
> > > perl-HTTP-Negotiate

Up to perl-HTTP-Negotiate checked by Marcela.

> > > perl-Kwiki
> > > perl-Kwiki-NewPage
> > > perl-Kwiki-Raw
> > > perl-Kwiki-RecentChanges
> > > perl-Kwiki-Revisions
> > > perl-Kwiki-Search
> > > perl-Kwiki-UserName
> > > perl-Kwiki-UserPreferences
> > > perl-Kwiki-Users-Remote
Up to perl-Kwiki-Users-Remote checked by Petr Sabata.

> > > perl-Language-Functional
> > > perl-libwww-perl
> > > perl-LWP-Protocol-https
> > > perl-Math-Random-MT-Auto
> > > perl-Math-Symbolic
> > > perl-Memoize-ExpireLRU
> > > perl-Module-Mask
> > > perl-MogileFS-Utils
> > > perl-MooseX-CascadeClearing
> > > perl-MooseX-Types-DateTimeX
> > > perl-NetAddr-IP
> > > perl-Padre
> > > perl-PathTools
> > > perl-PDL
> > > perl-Perl-Critic-Deprecated
> > > perl-Perl-Critic-More
> > > perl-Perl-Critic-Pulp
> > > perl-Perl-Critic-Swift
> > > perl-Perlilog
> > > perl-Perl-Metrics-Simple
> > > perl-POE-Filter-HTTP-Parser
> > > perl-PPI
> > > perl-PPI-PowerToys
> > > perl-PPIx-EditorTools
> > > perl-PPIx-Regexp
> > > perl-Pugs-Compiler-Rule
> > > perl-SOAP-Lite
> > > perl-Spoon
> > > perl-Spreadsheet-WriteExcel
> > > perl-Statistics-Basic
> > > perl-STD
> > > perl-Template-Toolkit
> > > perl-Test-DistManifest
> > > perl-Test-Perl-Critic-Progressive
> > > perl-Test-Smoke
> > > perl-Text-Aligner
> > > perl-Text-Table
> > > perl-Unicode-String
> > > perl-version
> > > perl-WWW-Curl
> > > perl-WWW-RobotRules
> > > perl-Wx
> > > perl-XML-Parser
> > > perl-XML-Twig
> > > perl-YUM-RepoQuery
> > > redland-bindings
> > > rt3
> > 
> > -- Petr
> 
> 
> 
> > --
> > Fedora Extras Perl SIG
> > http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
> > perl-devel mailing list
> > perl-devel@lists.fedoraproject.org
> > https://admin.fedoraproject.org/mailman/listinfo/perl-devel
> 



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



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

Re: News from rebuild

2011-07-25 Thread Petr Sabata
Note Marcela has just requested dist-f16-perl/rawhide merge [1].
Please, don't build anything until it's done.

[1] https://fedorahosted.org/rel-eng/ticket/4768
-- 
# Petr Sabata


pgp1gzZJxnNjz.pgp
Description: PGP signature
--
Fedora Extras Perl SIG
http://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-STD] add new filter

2011-07-25 Thread Marcela Mašláňová
commit c5aa653adbf01e58c9a4c7825924f53782962574
Author: Marcela Mašláňová 
Date:   Mon Jul 25 13:24:37 2011 +0200

add new filter

 perl-STD.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-STD.spec b/perl-STD.spec
index 244425a..555436c 100644
--- a/perl-STD.spec
+++ b/perl-STD.spec
@@ -1,6 +1,6 @@
 Name:   perl-STD
 Version:32116
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:The Standard Perl 6 Grammar
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -26,6 +26,8 @@ Provides:   perl(STD) = %{version}
 %filter_from_requires /^perl(STD::Cursor)$/d
 %filter_setup
 
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(mangle.pl|STD_P5|STD_P6|RE_ast|STD::Cursor|File::ShareDir\\)$
+
 %description
 %{summary}.
 
@@ -56,6 +58,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 
 
 %changelog
+* Mon Jul 25 2011 Marcela Mašláňová  - 32116-4
+- add new filter
+
 * Tue Jul 19 2011 Petr Sabata  - 32116-3
 - Perl 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-LWP-Protocol-https] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 604cd83eb6afb43a9012c83ceacf70b9f8167c57
Author: Petr Pisar 
Date:   Mon Jul 25 14:11:59 2011 +0200

RPM 4.9 dependency filtering added

 perl-LWP-Protocol-https.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/perl-LWP-Protocol-https.spec b/perl-LWP-Protocol-https.spec
index 1fb6e1d..9fa4d30 100644
--- a/perl-LWP-Protocol-https.spec
+++ b/perl-LWP-Protocol-https.spec
@@ -1,7 +1,7 @@
 %bcond_with tests # Tests require network access
 Name:   perl-LWP-Protocol-https
 Version:6.02
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Provide HTTPS support for LWP::UserAgent
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -24,8 +24,11 @@ Requires:   perl(Mozilla::CA) >= 20110101
 Requires:   perl(Net::HTTPS) >= 6
 
 # Remove underspecified dependencies
+# RPM 4.8 style
 %filter_from_requires /^perl(Net::HTTPS)\s*$/d
 %filter_setup
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(Net::HTTPS\\)\\s*$
 
 %description
 The LWP::Protocol::https module provides support for using HTTPS schemed
@@ -56,6 +59,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 6.02-4
+- RPM 4.9 dependency filtering added
+
 * Fri Jun 17 2011 Marcela Mašláňová  - 6.02-3
 - Perl 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-Memoize-ExpireLRU] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Sabata
commit b969306fc966d42a09e148fef631a7b5abc17bd3
Author: Petr Pisar 
Date:   Mon Jul 25 14:47:01 2011 +0200

RPM 4.9 dependency filtering added

 perl-Memoize-ExpireLRU.spec |   11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/perl-Memoize-ExpireLRU.spec b/perl-Memoize-ExpireLRU.spec
index a7b9131..25e3f6a 100644
--- a/perl-Memoize-ExpireLRU.spec
+++ b/perl-Memoize-ExpireLRU.spec
@@ -1,6 +1,6 @@
 Name:   perl-Memoize-ExpireLRU
 Version:0.55
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Expiry plug-in for Memoize that adds LRU cache expiration
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -11,10 +11,14 @@ BuildArch:  noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
+%{?perl_default_filter}
+# RPM 4.8 style:
 %{?filter_setup:
 %filter_from_provides /perl(Memoize::ExpireLRU)$/d
-%?perl_default_filter
+%filter_setup
 }
+# RPM 4.9 style:
+%global __provides_exclude 
%{?__provides_exclude:%__provides_exclude|}perl\\(Memoize::ExpireLRU\\)\\s*$
 
 %description
 This module implements an expiry policy for Memoize that follows LRU
@@ -51,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.55-5
+- RPM 4.9 dependency filtering added
+
 * Fri Jun 17 2011 Marcela Mašláňová  - 0.55-4
 - Perl 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-Math-Symbolic] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Pisar
commit 1504def57cefeb0d1c43ef92891a40a48e20853b
Author: Petr Pisar 
Date:   Mon Jul 25 15:12:01 2011 +0200

RPM 4.9 dependency filtering added

 perl-Math-Symbolic.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/perl-Math-Symbolic.spec b/perl-Math-Symbolic.spec
index b826e99..d1e253a 100644
--- a/perl-Math-Symbolic.spec
+++ b/perl-Math-Symbolic.spec
@@ -1,6 +1,6 @@
 Name:   perl-Math-Symbolic
 Version:0.606
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Symbolic calculations
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -20,8 +20,11 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.0
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 Requires:   perl(Memoize) >= 1.01
 
+# RPM 4.8 style:
 %filter_from_requires /perl(Memoize)$/d
 %filter_setup
+# RPM 4.9 style:
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}perl\\(Memoize\\)$
 
 %description
 Math::Symbolic is intended to offer symbolic calculation capabilities to
@@ -67,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.606-4
+- RPM 4.9 dependency filtering added
+
 * Tue Jul 19 2011 Petr Sabata  - 0.606-3
 - Perl 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


Re: Packages affected by RPM 4.9 filtering [was: News from rebuild]

2011-07-25 Thread Petr Pisar
On Mon, Jul 25, 2011 at 01:14:09PM +0200, Petr Pisar wrote:
> On Mon, Jul 25, 2011 at 01:03:28PM +0200, Petr Pisar wrote:
> > On Fri, Jul 22, 2011 at 03:56:22PM +0200, Petr Pisar wrote:
> > > On Thu, Jul 21, 2011 at 11:08:40AM +0200, Petr Pisar wrote:
> > > > List of perl packages whose spec file contains `filter_setup' string
> > > > follows. These packages can be affected by transition to RPM 4.9 
> > > > dependency
> > > > filtering. We advise to migrate the filters after merging perl-5.14 into
> > > > rawhide to get proper results. Also we advise to run rpmdiff on old and 
> > > > new
> > > > package to check your spec file changes takes effect. Please note the 
> > > > list
> > > > was generated from older git repositories mirror, so it does not reflect
> > > > current state exactly.
> > > > 
> > > > -- Petr
> > > > 
> > > > ikiwiki
> > > > lcgdm
> > > > libdigidocpp
> > > > mhonarc
> > > > mod_perl
> > > > perl-Ace
> > > > perl-AnyEvent
> > > > perl-Apache-DBI-Cache
> > > > perl-AppConfig
> > > > perl-App-cpanminus
> > > > perl-autobox
> > > > perl-Bio-Graphics
> > > > perl-bioperl
> > > > perl-Catalyst-Controller-FormBuilder
> > > > perl-CGI
> > > > perl-CHI
> > > > perl-Class-Prototyped
> > > > perl-Class-XSAccessor
> > > > perl-Contextual-Return
> > > > perl-Crypt-SSLeay
> > > > perl-Data-TreeDumper-Renderer-GTK
> > > > perl-DateTime
> > > 
> > > So far, I checked and updated all this packages.
> > > 
> > > Followings are not checked.
> > > 
> > > > perl-DateTime-Format-Mail
> > > > perl-DateTime-Precise
> > > > perl-DateTime-Set
> > > > perl-DBD-CSV
> > > > perl-DBI-Dumper
> > > > perl-DBIx-Class-Cursor-Cached
> > > > perl-DBIx-ContextualFetch
> > > > perl-Devel-Caller
> > > > perl-Devel-CheckOS
> > > > perl-ExtUtils-XSpp
> > > > perl-File-ChangeNotify
> > > > perl-File-FnMatch
> > > > perl-File-Listing
> > > > perl-File-PathList
> > > > perl-File-ShareDir-PAR
> > 
> > All up-to perl-File-ShareDir-PAR checked.
> > 
> > > > perl-Goo-Canvas
> > > > perl-Gtk2-Ex-Carp
> > > > perl-HTTP-Cookies
> > > > perl-HTTP-Daemon
> > > > perl-HTTP-Message
> > > > perl-HTTP-Negotiate
> 
> Up to perl-HTTP-Negotiate checked by Marcela.
> 
> > > > perl-Kwiki
> > > > perl-Kwiki-NewPage
> > > > perl-Kwiki-Raw
> > > > perl-Kwiki-RecentChanges
> > > > perl-Kwiki-Revisions
> > > > perl-Kwiki-Search
> > > > perl-Kwiki-UserName
> > > > perl-Kwiki-UserPreferences
> > > > perl-Kwiki-Users-Remote
> Up to perl-Kwiki-Users-Remote checked by Petr Sabata.
> 
> > > > perl-Language-Functional
> > > > perl-libwww-perl
> > > > perl-LWP-Protocol-https
> > > > perl-Math-Random-MT-Auto
> > > > perl-Math-Symbolic
> > > > perl-Memoize-ExpireLRU
> > > > perl-Module-Mask
> > > > perl-MogileFS-Utils
> > > > perl-MooseX-CascadeClearing
> > > > perl-MooseX-Types-DateTimeX
> > > > perl-NetAddr-IP
> > > > perl-Padre
> > > > perl-PathTools
> > > > perl-PDL
> > > > perl-Perl-Critic-Deprecated
> > > > perl-Perl-Critic-More
> > > > perl-Perl-Critic-Pulp
> > > > perl-Perl-Critic-Swift
> > > > perl-Perlilog
> > > > perl-Perl-Metrics-Simple
> > > > perl-POE-Filter-HTTP-Parser
> > > > perl-PPI

Packages from perl-PPI-PowerToys till the end have been checked by Iain an
Marcela.
> > > > perl-PPI-PowerToys
> > > > perl-PPIx-EditorTools
> > > > perl-PPIx-Regexp
> > > > perl-Pugs-Compiler-Rule
> > > > perl-SOAP-Lite
> > > > perl-Spoon
> > > > perl-Spreadsheet-WriteExcel
> > > > perl-Statistics-Basic
> > > > perl-STD
> > > > perl-Template-Toolkit
> > > > perl-Test-DistManifest
> > > > perl-Test-Perl-Critic-Progressive
> > > > perl-Test-Smoke
> > > > perl-Text-Aligner
> > > > perl-Text-Table
> > > > perl-Unicode-String
> > > > perl-version
> > > > perl-WWW-Curl
> > > > perl-WWW-RobotRules
> > > > perl-Wx
> > > > perl-XML-Parser
> > > > perl-XML-Twig
> > > > perl-YUM-RepoQuery
> > > > redland-bindings
> > > > rt3

-- Petr


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

[perl-Module-Mask] RPM 4.9 dependency filtering added

2011-07-25 Thread Petr Sabata
commit d7182699b06be741e380909a948984afa11984da
Author: Petr Pisar 
Date:   Mon Jul 25 15:34:51 2011 +0200

RPM 4.9 dependency filtering added

 perl-Module-Mask.spec |   11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/perl-Module-Mask.spec b/perl-Module-Mask.spec
index cc27186..9656a9a 100644
--- a/perl-Module-Mask.spec
+++ b/perl-Module-Mask.spec
@@ -1,6 +1,6 @@
 Name:   perl-Module-Mask
 Version:0.03
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Pretend certain modules are not installed
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -16,14 +16,18 @@ BuildRequires:  perl(Test::Pod) >= 1.14
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.04
 
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(Module::Util) >= 1.00
 
 %{?perl_filter_default}
 
+# RPM 4.8 style
 %{?filter_setup:
 # Replace unversioned dependencies with versioned ones.
-%filter_from_requires s/^perl(Module::Util)$/perl(Module::Util) >= 1.00/
+%filter_from_requires /^perl(Module::Util)$/d
 %filter_setup
 }
+# RPM 4.9 style
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Module::Util\\)$
 
 %description
 Sometimes you need to test what happens when a given module is not
@@ -59,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Petr Pisar  - 0.03-3
+- RPM 4.9 dependency filtering added
+
 * Mon Jun 20 2011 Marcela Mašláňová  - 0.03-2
 - Perl 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 CGI-Application-Plugin-DevPopup-1.07.tar.gz uploaded to lookaside cache by eseyman

2011-07-25 Thread Emmanuel Seyman
A file has been added to the lookaside cache for 
perl-CGI-Application-Plugin-DevPopup:

f0a996f9f05fe7a383decb69dcebc296  CGI-Application-Plugin-DevPopup-1.07.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-CGI-Application-Plugin-DevPopup] Update to 1.07, clean up spec file

2011-07-25 Thread Emmanuel Seyman
commit 174a1cac47c39c8548cc8b0017e5dc73c66b3e4f
Author: Emmanuel Seyman 
Date:   Mon Jul 25 23:56:13 2011 +0200

Update to 1.07, clean up spec file

 .gitignore|1 +
 perl-CGI-Application-Plugin-DevPopup.spec |   15 ++-
 sources   |2 +-
 3 files changed, 8 insertions(+), 10 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 30d140a..e80c50e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 CGI-Application-Plugin-DevPopup-1.06.tar.gz
+/CGI-Application-Plugin-DevPopup-1.07.tar.gz
diff --git a/perl-CGI-Application-Plugin-DevPopup.spec 
b/perl-CGI-Application-Plugin-DevPopup.spec
index e1d96f4..a306b37 100644
--- a/perl-CGI-Application-Plugin-DevPopup.spec
+++ b/perl-CGI-Application-Plugin-DevPopup.spec
@@ -1,12 +1,11 @@
 Name:   perl-CGI-Application-Plugin-DevPopup
-Version:1.06
-Release:6%{?dist}
+Version:1.07
+Release:1%{?dist}
 Summary:Runtime cgiapp info in a popup window
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/CGI-Application-Plugin-DevPopup/
 Source0:
http://www.cpan.org/authors/id/R/RH/RHESA/CGI-Application-Plugin-DevPopup-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(CGI)
 BuildRequires:  perl(CGI::Application) >= 4.01
@@ -32,8 +31,6 @@ is provided to show how it works.
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
 
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
@@ -44,16 +41,16 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 25 2011 Emmanuel Seyman  - 1.07-1
+- Update to 1.07
+- Clean up spec file.
+
 * Tue Jul 19 2011 Petr Sabata  - 1.06-6
 - Perl mass rebuild
 
diff --git a/sources b/sources
index dd3402a..ef7eae1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b62c22ae99b128bcc551eeb55c8b09dd  CGI-Application-Plugin-DevPopup-1.06.tar.gz
+f0a996f9f05fe7a383decb69dcebc296  CGI-Application-Plugin-DevPopup-1.07.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[Bug 725608] New: Module does not parse epoch correctly

2011-07-25 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: Module does not parse epoch correctly

https://bugzilla.redhat.com/show_bug.cgi?id=725608

   Summary: Module does not parse epoch correctly
   Product: Fedora
   Version: 14
  Platform: x86_64
OS/Version: Linux
Status: NEW
  Severity: medium
  Priority: unspecified
 Component: perl-RPM-VersionCompare
AssignedTo: ppi...@redhat.com
ReportedBy: pj.jenni...@gmail.com
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---


Description of problem:


Version-Release number of selected component (if applicable): 0.1.0-1


How reproducible: every time


Steps to Reproduce:
1. Use example from man page: RPM::VersionCompare::labelSplit('4:5.12.0-140')
2. Add digit to Epoch: RPM::VersionCompare::labelSplit('49:5.12.0-140')


Actual results: subroutine only returns single digit in ex.2 (i.e. '9')


Expected results: subroutine should return '49' for epoch in example 2


Additional info: I didn't find specification for length or constraints on
epoch. The epoch specification needs to be researched to implement a robust
solution.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Statistics-Basic] Bump release.

2011-07-25 Thread Marcela Mašláňová
commit f17642fad55f7cacd375e73e91c63ff04f634cf8
Author: Marcela Mašláňová 
Date:   Tue Jul 26 08:25:09 2011 +0200

Bump release.

 perl-Statistics-Basic.spec |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/perl-Statistics-Basic.spec b/perl-Statistics-Basic.spec
index 08ea7db..0b996ea 100644
--- a/perl-Statistics-Basic.spec
+++ b/perl-Statistics-Basic.spec
@@ -1,6 +1,6 @@
 Name:   perl-Statistics-Basic
 Version:1.6602
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:A collection of very basic statistics modules
 License:LGPLv2+
 Group:  Development/Libraries
@@ -61,7 +61,7 @@ make test
 %{_mandir}/man3/*
 
 %changelog
-* Mon Jul 25 2011 Marcela Mašláňová  - 32116-4
+* Mon Jul 25 2011 Marcela Mašláňová  - 1.6602-5
 - add new filter
 
 * Mon Jun 20 2011 Marcela Mašláňová  - 1.6602-4
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: merge into dist-f16

2011-07-25 Thread Petr Pisar
On Mon, Jul 25, 2011 at 07:38:11PM +0200, Marcela Mašláňová wrote:
> 
> b/ filters still not converted/checked
>  > perl-Language-Functional
>  > perl-libwww-perl
>  > perl-LWP-Protocol-https
>  > perl-Math-Random-MT-Auto
>  > perl-Math-Symbolic
>  > perl-Memoize-ExpireLRU
>  > perl-Module-Mask
>  > perl-MogileFS-Utils
>  > perl-MooseX-CascadeClearing
>  > perl-MooseX-Types-DateTimeX
>  > perl-NetAddr-IP
I checked packages up to perl-NetAddr-IP yesterday (just forgot to announnce
it).

>  > perl-Padre
>  > perl-PathTools
>  > perl-PDL
>  > perl-Perl-Critic-Deprecated
>  > perl-Perl-Critic-More
>  > perl-Perl-Critic-Pulp
>  > perl-Perl-Critic-Swift
>  > perl-Perlilog
>  > perl-Perl-Metrics-Simple
>  > perl-POE-Filter-HTTP-Parser
>  > perl-PPI
> 
-- Petr


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