[mojomojo] update helper scripts using current catalyst

2011-08-30 Thread Iain Arnell
commit 086117f3871d41fc9aecbfc5719302167426475e
Author: Iain Arnell 
Date:   Wed Aug 31 06:08:00 2011 +0200

update helper scripts using current catalyst

 mojomojo-paths.patch |   63 --
 mojomojo.spec|   12 -
 2 files changed, 11 insertions(+), 64 deletions(-)
---
diff --git a/mojomojo-paths.patch b/mojomojo-paths.patch
index 65e0ed0..da24596 100644
--- a/mojomojo-paths.patch
+++ b/mojomojo-paths.patch
@@ -25,66 +25,3 @@ diff -up MojoMojo-1.00/mojomojo.conf.orig 
MojoMojo-1.00/mojomojo.conf
  
  
  expires 604800
-diff -up MojoMojo-1.00/script/mojomojo_cgi.pl.orig 
MojoMojo-1.00/script/mojomojo_cgi.pl
 MojoMojo-1.00/script/mojomojo_cgi.pl.orig  2010-05-08 19:13:32.0 
+0200
-+++ MojoMojo-1.00/script/mojomojo_cgi.pl   2010-05-21 06:01:32.0 
+0200
-@@ -1,6 +1,9 @@
- #!/usr/bin/env perl
- 
--BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
-+BEGIN { 
-+$ENV{MOJOMOJO_HOME} ||= '/var/lib/mojomojo';
-+$ENV{CATALYST_ENGINE} ||= 'CGI';
-+}
- 
- use strict;
- use warnings;
-diff -up MojoMojo-1.00/script/mojomojo_fastcgi.pl.orig 
MojoMojo-1.00/script/mojomojo_fastcgi.pl
 MojoMojo-1.00/script/mojomojo_fastcgi.pl.orig  2010-05-08 
19:13:32.0 +0200
-+++ MojoMojo-1.00/script/mojomojo_fastcgi.pl   2010-05-21 06:01:32.0 
+0200
-@@ -1,6 +1,9 @@
- #!/usr/bin/env perl
- 
--BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
-+BEGIN { 
-+$ENV{MOJOMOJO_HOME} ||= '/var/lib/mojomojo';
-+$ENV{CATALYST_ENGINE} ||= 'FastCGI';
-+}
- 
- use strict;
- use warnings;
-diff -up MojoMojo-1.00/script/mojomojo_server.pl.orig 
MojoMojo-1.00/script/mojomojo_server.pl
 MojoMojo-1.00/script/mojomojo_server.pl.orig   2010-05-08 
19:13:32.0 +0200
-+++ MojoMojo-1.00/script/mojomojo_server.pl2010-05-21 06:01:32.0 
+0200
-@@ -1,6 +1,7 @@
- #!/usr/bin/env perl
- 
- BEGIN {
-+$ENV{MOJOMOJO_HOME} ||= '/var/lib/mojomojo';
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
-diff -up MojoMojo-1.00/script/mojomojo_spawn_db.pl.orig 
MojoMojo-1.00/script/mojomojo_spawn_db.pl
 MojoMojo-1.00/script/mojomojo_spawn_db.pl.orig 2010-05-09 
21:16:51.0 +0200
-+++ MojoMojo-1.00/script/mojomojo_spawn_db.pl  2010-05-21 06:02:27.0 
+0200
-@@ -14,7 +14,10 @@ Jonathan Rockway 
- 
- =cut
- 
--BEGIN { $ENV{CATALYST_DEBUG} = 0 }
-+BEGIN { 
-+$ENV{MOJOMOJO_HOME} ||= '/var/lib/mojomojo';
-+$ENV{CATALYST_DEBUG} = 0;
-+}
- use strict;
- use warnings;
- use FindBin '$Bin';
-@@ -103,7 +106,7 @@ eval {
- };
- if ($@) {
- die "Your DSN line in mojomojo.conf doesn't look like a valid DSN."
--  . "  Add one, or pass it on the command line.";
-+  . "  Add one, or pass it on the command line. " . $@;
- }
- die "No valid Data Source Name (DSN).\n" if !$dsn;
- $dsn =~ s/__HOME__/$FindBin::Bin\/\.\./g;
diff --git a/mojomojo.spec b/mojomojo.spec
index 8019795..2e71f1d 100644
--- a/mojomojo.spec
+++ b/mojomojo.spec
@@ -1,6 +1,6 @@
 Name:   mojomojo
 Version:1.04
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Catalyst & DBIx::Class powered Wiki
 License:GPL+ or Artistic
 Group:  Applications/Internet
@@ -26,6 +26,7 @@ BuildRequires:  perl(Catalyst) >= 5.8000
 BuildRequires:  perl(Catalyst::Action::RenderView) >= 0.07
 BuildRequires:  perl(Catalyst::Authentication::Store::DBIx::Class) >= 0.101
 BuildRequires:  perl(Catalyst::Controller::HTML::FormFu) >= 0.03007
+BuildRequires:  perl(Catalyst::Devel)
 BuildRequires:  perl(Catalyst::Model::DBIC::Schema) >= 0.01
 BuildRequires:  perl(Catalyst::Plugin::Authentication) >= 0.10005
 BuildRequires:  perl(Catalyst::Plugin::Cache) >= 0.08
@@ -203,6 +204,12 @@ page.
 %patch0 -p 1
 %patch2 -p 1
 
+# update the scripts for current catalyst
+rm script/mojomojo_fastcgi_manage.pl
+catalyst.pl -force -scripts .
+# and set MOJOMOJO_HOME
+sed -i '3iBEGIN { $ENV{MOJOMOJO_HOME} ||= "/var/lib/mojomojo"; }' script/*.pl
+
 find root lib -type f | xargs chmod 0644
 
 %build
@@ -270,6 +277,9 @@ CATALYST_CONFIG=t/var/mojomojo.yml make test
 
 
 %changelog
+* Mon Aug 29 2011 Iain Arnell  1.04-4
+- update helper scripts using current catalyst
+
 * Wed Jul 20 2011 Petr Sabata  - 1.04-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-Catalyst-Devel/f16] update to 1.34

2011-08-30 Thread Iain Arnell
Summary of changes:

  be65415... update to 1.34 (*)

(*) 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-Catalyst-Devel] update to 1.34

2011-08-30 Thread Iain Arnell
commit be654158e7ea76b7b95775fb53c077028eb0f67c
Author: Iain Arnell 
Date:   Wed Aug 31 05:11:50 2011 +0200

update to 1.34

 .gitignore   |1 +
 perl-Catalyst-Devel.spec |   19 +--
 sources  |2 +-
 3 files changed, 15 insertions(+), 7 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index bc01abe..0591056 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Catalyst-Devel-1.27.tar.gz
 /Catalyst-Devel-1.28.tar.gz
 /Catalyst-Devel-1.31.tar.gz
+/Catalyst-Devel-1.34.tar.gz
diff --git a/perl-Catalyst-Devel.spec b/perl-Catalyst-Devel.spec
index 6e09248..ea3a50c 100644
--- a/perl-Catalyst-Devel.spec
+++ b/perl-Catalyst-Devel.spec
@@ -1,7 +1,7 @@
 Name:   perl-Catalyst-Devel
 Summary:Catalyst Development Tools
-Version:1.31
-Release:4%{?dist}
+Version:1.34
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/Catalyst-Devel-%{version}.tar.gz
@@ -10,7 +10,7 @@ BuildRoot:  
%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 BuildArch:  noarch
 
-BuildRequires:  perl(Catalyst) >= 5.80015
+BuildRequires:  perl(Catalyst) >= 5.90001
 BuildRequires:  perl(Catalyst::Action::RenderView) >= 0.10
 BuildRequires:  perl(Catalyst::Plugin::ConfigLoader) >= 0.30
 BuildRequires:  perl(Catalyst::Plugin::Static::Simple) >= 0.28
@@ -22,26 +22,30 @@ BuildRequires:  perl(File::Copy::Recursive)
 BuildRequires:  perl(File::ShareDir)
 BuildRequires:  perl(Module::Install) >= 0.91
 BuildRequires:  perl(Moose)
+BuildRequires:  perl(MooseX::Daemonize)
 BuildRequires:  perl(MooseX::Emulate::Class::Accessor::Fast)
 BuildRequires:  perl(namespace::autoclean)
 BuildRequires:  perl(namespace::clean)
 BuildRequires:  perl(Path::Class) >= 0.09
+BuildRequires:  perl(Starman)
 BuildRequires:  perl(Template) >= 2.14
-BuildRequires:  perl(Test::More) >= 0.92
+BuildRequires:  perl(Test::More) >= 0.94
+BuildRequires:  perl(Test::Fatal)
 
-BuildRequires:  perl(Test::Exception)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(IPC::Run3)
 
-Requires:   perl(Catalyst) >= 5.80015
+Requires:   perl(Catalyst) >= 5.90001
 Requires:   perl(Catalyst::Action::RenderView) >= 0.10
 Requires:   perl(Catalyst::Plugin::ConfigLoader) >= 0.30
 Requires:   perl(Catalyst::Plugin::Static::Simple) >= 0.28
 Requires:   perl(Config::General) >= 2.42
 Requires:   perl(File::ChangeNotify) >= 0.07
 Requires:   perl(Module::Install) >= 0.91
+Requires:   perl(MooseX::Daemonize)
 Requires:   perl(MooseX::Emulate::Class::Accessor::Fast)
 Requires:   perl(Path::Class) >= 0.09
+Requires:   perl(Starman)
 Requires:   perl(Template) >= 2.14
 Requires:   perl-Catalyst-Runtime-scripts
 
@@ -87,6 +91,9 @@ rm -rf %{buildroot}
 %exclude %{perl_vendorlib}/Catalyst/Restarter/Win32.pm
 
 %changelog
+* Mon Aug 29 2011 Iain Arnell  1.34-1
+- update to latest upstream version
+
 * Thu Jul 21 2011 Petr Sabata  - 1.31-4
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 5fa906f..1708431 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b5017d549a1c57a3b13ed4b010339c13  Catalyst-Devel-1.31.tar.gz
+3ea9c49353f161690b13bef22900aad3  Catalyst-Devel-1.34.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-Catalyst-Runtime/f16] update to 5.90002

2011-08-30 Thread Iain Arnell
Summary of changes:

  d7d1de3... update to 5.90002 (*)

(*) 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-Catalyst-Runtime] update to 5.90002

2011-08-30 Thread Iain Arnell
commit d7d1de3381ce4f2a82edbd445b40b16cf66f4e06
Author: Iain Arnell 
Date:   Wed Aug 31 05:10:16 2011 +0200

update to 5.90002

 .gitignore |1 +
 perl-Catalyst-Runtime.spec |   32 
 sources|2 +-
 3 files changed, 26 insertions(+), 9 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 52a490e..1fb0826 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ Catalyst-Runtime-5.80021.tar.gz
 /Catalyst-Runtime-5.80029.tar.gz
 /Catalyst-Runtime-5.80030.tar.gz
 /Catalyst-Runtime-5.80032.tar.gz
+/Catalyst-Runtime-5.90002.tar.gz
diff --git a/perl-Catalyst-Runtime.spec b/perl-Catalyst-Runtime.spec
index 067b935..b9d4248 100644
--- a/perl-Catalyst-Runtime.spec
+++ b/perl-Catalyst-Runtime.spec
@@ -1,7 +1,7 @@
 Name:   perl-Catalyst-Runtime
 Summary:Catalyst Framework Runtime
-Version:5.80032
-Release:2%{?dist}
+Version:5.90002
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/Catalyst-Runtime-%{version}.tar.gz
@@ -26,6 +26,7 @@ BuildRequires:  perl(HTTP::Body) >= 1.06
 BuildRequires:  perl(HTTP::Headers) >= 1.64
 BuildRequires:  perl(HTTP::Request) >= 5.814
 BuildRequires:  perl(HTTP::Request::AsCGI) >= 1.0
+BuildRequires:  perl(HTTP::Request::Common)
 BuildRequires:  perl(HTTP::Response) >= 5.813
 BuildRequires:  perl(List::MoreUtils)
 BuildRequires:  perl(LWP::UserAgent)
@@ -37,10 +38,14 @@ BuildRequires:  perl(MooseX::MethodAttributes::Inheritable) 
>= 0.24
 BuildRequires:  perl(MooseX::Role::WithOverloading) >= 0.09
 BuildRequires:  perl(MooseX::Types)
 BuildRequires:  perl(MooseX::Types::Common::Numeric)
+BuildRequires:  perl(MooseX::Types::LoadableClass) >= 0.003
 BuildRequires:  perl(MRO::Compat)
 BuildRequires:  perl(namespace::autoclean) >= 0.09
 BuildRequires:  perl(namespace::clean) >= 0.13
 BuildRequires:  perl(Path::Class) >= 0.09
+BuildRequires:  perl(Plack) >= 0.9974
+BuildRequires:  perl(Plack::Middleware::ReverseProxy) >= 0.04
+BuildRequires:  perl(Plack::Test::ExternalServer)
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(String::RewritePrefix) >= 0.004
 BuildRequires:  perl(Sub::Exporter)
@@ -52,6 +57,7 @@ BuildRequires:  perl(Text::SimpleTable) >= 0.03
 BuildRequires:  perl(Time::HiRes)
 BuildRequires:  perl(Tree::Simple) >= 1.15
 BuildRequires:  perl(Tree::Simple::Visitor::FindByPath)
+BuildRequires:  perl(Try::Tiny)
 BuildRequires:  perl(URI) >= 1.35
 
 BuildRequires:  perl(Class::Accessor::Fast)
@@ -63,6 +69,7 @@ BuildRequires:  perl(File::Modified)
 BuildRequires:  perl(Proc::ProcessTable)
 BuildRequires:  perl(Test::Harness)
 BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Without::Module)
 BuildRequires:  perl(YAML)
 
 
@@ -90,10 +97,14 @@ Requires:   perl(MooseX::MethodAttributes::Inheritable) 
>= 0.24
 Requires:   perl(MooseX::Role::WithOverloading) >= 0.09
 Requires:   perl(MooseX::Types)
 Requires:   perl(MooseX::Types::Common::Numeric)
+Requires:   perl(MooseX::Types::LoadableClass) >= 0.003
 Requires:   perl(MRO::Compat)
 Requires:   perl(namespace::autoclean) >= 0.09
 Requires:   perl(namespace::clean) >= 0.13
 Requires:   perl(Path::Class) >= 0.09
+Requires:   perl(Plack) >= 0.9974
+Requires:   perl(Plack::Middleware::ReverseProxy) >= 0.04
+Requires:   perl(Plack::Test::ExternalServer)
 Requires:   perl(Scalar::Util)
 Requires:   perl(String::RewritePrefix) >= 0.004
 Requires:   perl(Sub::Exporter)
@@ -103,6 +114,7 @@ Requires:   perl(Text::SimpleTable) >= 0.03
 Requires:   perl(Time::HiRes)
 Requires:   perl(Tree::Simple) >= 1.15
 Requires:   perl(Tree::Simple::Visitor::FindByPath)
+Requires:   perl(Try::Tiny)
 Requires:   perl(URI) >= 1.35
 
 %{?perl_default_filter}
@@ -153,15 +165,16 @@ find %{buildroot} -depth -type d -exec rmdir {} 
2>/dev/null \;
 #
 # See also http://rt.cpan.org/Public/Bug/Display.html?id=27123
 
-export TEST_POD=1
 export TEST_LIGHTTPD=1
-# still bombs, sadly.  Could patch but not too concerned right now: rt49415
-#export TEST_HTTP=1
-# fails weirdly.  see http://rt.cpan.org/Ticket/Display.html?id=26732
+export TEST_HTTP=1
+
+# see https://rt.cpan.org/Public/Bug/Display.html?id=42540
 #export TEST_MEMLEAK=1
+
+export TEST_POD=1
 export TEST_STRESS=1
-# until rt50039 is resolved
-#export TEST_THREADS=1
+export TEST_THREADS=1
+
 make test
 make clean
 
@@ -177,6 +190,9 @@ make clean
 %{_mandir}/man1/*
 
 %changelog
+* Mon Aug 29 2011 Iain Arnell  5.90002-1
+- update to latest upstream version
+
 * Tue Jul 19 2011 Petr Sabata  - 5.80032-2
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 062b627..cd48826 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a44aabbf6c89ed4c26464167d53b6fab  Catalyst-Runtime-5.80032.tar.gz
+0537a1f3b74a4395bcad74652a742d60  Catalyst-Runtime-5.90002.tar.gz
--
Fedora Extras Perl

File Catalyst-Devel-1.34.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Catalyst-Devel:

3ea9c49353f161690b13bef22900aad3  Catalyst-Devel-1.34.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 Catalyst-Runtime-5.90002.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Catalyst-Runtime:

0537a1f3b74a4395bcad74652a742d60  Catalyst-Runtime-5.90002.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 734469] Upgrade to new upstream version

2011-08-30 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=734469

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #7 from Fedora Update System  2011-08-30 
21:41:05 EDT ---
Package perl-Directory-Queue-1.2-1.fc15:
* should fix your issue,
* was pushed to the Fedora 15 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing
perl-Directory-Queue-1.2-1.fc15'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.fc15
then log in and leave karma (feedback).

-- 
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-Term-Animation/f16] mass rebuild

2011-08-30 Thread Luis Enrique Bazán De León
commit 9d6af39263822968d9e257b3fa91202de401ecce
Author: Luis Bazan 
Date:   Tue Aug 30 16:50:00 2011 -0500

mass rebuild

 perl-Term-Animation.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Term-Animation.spec b/perl-Term-Animation.spec
index 4b3b7c1..3d77d7b 100644
--- a/perl-Term-Animation.spec
+++ b/perl-Term-Animation.spec
@@ -1,6 +1,6 @@
 Name:   perl-Term-Animation
 Version:2.6
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:ASCII sprite animation framework
 
 License:GPL+ or Artistic
@@ -52,6 +52,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null ';'
 
 
 %changelog
+* Tue Aug 30 2011 Luis Bazan  - 2.6-9
+- mass rebuild
+
 * Wed Jul 20 2011 Petr Sabata  - 2.6-8
 - 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 728668] Please build for EPEL-6

2011-08-30 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=728668

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #5 from Fedora Update System  2011-08-30 
17:02:59 EDT ---
Package perl-POE-Component-Client-HTTP-0.895-1.el6:
* should fix your issue,
* was pushed to the Fedora EPEL 6 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=epel-testing
perl-POE-Component-Client-HTTP-0.895-1.el6'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/perl-POE-Component-Client-HTTP-0.895-1.el6
then log in and leave karma (feedback).

-- 
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 733820] Please build for EPEL-6

2011-08-30 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=733820

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #2 from Fedora Update System  2011-08-30 
17:03:45 EDT ---
perl-Test-POE-Server-TCP-1.16-1.el6 has been pushed to the Fedora EPEL 6
testing repository.

-- 
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 734420] perl-DateTime-TimeZone-1.36 is available

2011-08-30 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=734420

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #4 from Fedora Update System  2011-08-30 
16:45:31 EDT ---
Package perl-DateTime-TimeZone-1.36-1.fc16:
* should fix your issue,
* was pushed to the Fedora 16 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing
perl-DateTime-TimeZone-1.36-1.fc16'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/perl-DateTime-TimeZone-1.36-1.fc16
then log in and leave karma (feedback).

-- 
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 734469] Upgrade to new upstream version

2011-08-30 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=734469

--- Comment #6 from Fedora Update System  2011-08-30 
14:26:32 EDT ---
perl-Directory-Queue-1.2-1.el5 has been submitted as an update for Fedora EPEL
5.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.el5

-- 
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 734469] Upgrade to new upstream version

2011-08-30 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=734469

--- Comment #2 from Fedora Update System  2011-08-30 
14:26:03 EDT ---
perl-Directory-Queue-1.2-1.el6 has been submitted as an update for Fedora EPEL
6.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.el6

-- 
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 734469] Upgrade to new upstream version

2011-08-30 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=734469

--- Comment #5 from Fedora Update System  2011-08-30 
14:26:25 EDT ---
perl-Directory-Queue-1.2-1.el4 has been submitted as an update for Fedora EPEL
4.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.el4

-- 
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 734469] Upgrade to new upstream version

2011-08-30 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=734469

--- Comment #3 from Fedora Update System  2011-08-30 
14:26:10 EDT ---
perl-Directory-Queue-1.2-1.fc16 has been submitted as an update for Fedora 16.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.fc16

-- 
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 734469] Upgrade to new upstream version

2011-08-30 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=734469

--- Comment #4 from Fedora Update System  2011-08-30 
14:26:18 EDT ---
perl-Directory-Queue-1.2-1.fc15 has been submitted as an update for Fedora 15.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.2-1.fc15

-- 
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-Directory-Queue] Created tag perl-Directory-Queue-1.2-1.el5

2011-08-30 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.2-1.el5' was created.

Tagger: Steve Traylen 
Date: Tue Aug 30 20:17:54 2011 +0200

Update 1.2 rhbz#73941.

Changes since the last tag 'perl-Directory-Queue-1.1-1.el5':

Marcela Mašláňová (1):
  Perl mass rebuild

Steve Traylen (2):
  Update 1.2 rhbz#73941.
  Merge branch 'master' into el5
--
Fedora Extras Perl SIG
http://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-Directory-Queue/el5: 3/3] Merge branch 'master' into el5

2011-08-30 Thread stevetraylen
commit 0b46a72bbf45e31ed67ce2b99bbd4a9dd071c9f8
Merge: 75b7833 6bb0886
Author: Steve Traylen 
Date:   Tue Aug 30 20:17:37 2011 +0200

Merge branch 'master' into el5

 .gitignore|1 +
 perl-Directory-Queue.spec |8 +++-
 sources   |2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)
---
diff --cc .gitignore
index 064f58b,0eb7f48..b98d1a8
--- a/.gitignore
+++ b/.gitignore
@@@ -1,2 -1,4 +1,3 @@@
 -Directory-Queue-0.5.tar.gz
  /Directory-Queue-1.0.tar.gz
  /Directory-Queue-1.1.tar.gz
+ /Directory-Queue-1.2.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-Directory-Queue/el5] (3 commits) ...Merge branch 'master' into el5

2011-08-30 Thread stevetraylen
Summary of changes:

  c5605de... Perl mass rebuild (*)
  6bb0886... Update 1.2 rhbz#73941. (*)
  0b46a72... Merge branch 'master' into el5

(*) 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-Directory-Queue] Created tag perl-Directory-Queue-1.2-1.el6

2011-08-30 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.2-1.el6' was created.

Tagger: Steve Traylen 
Date: Tue Aug 30 20:17:05 2011 +0200

Update 1.2 rhbz#73941.

Changes since the last tag 'perl-Directory-Queue-1.1-1.el6':

Marcela Mašláňová (1):
  Perl mass rebuild

Steve Traylen (2):
  Update 1.2 rhbz#73941.
  Merge branch 'master' into el6
--
Fedora Extras Perl SIG
http://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-Directory-Queue/el6: 3/3] Merge branch 'master' into el6

2011-08-30 Thread stevetraylen
commit 96923543b53b11d452f8627b4e5168496785b18b
Merge: 48b49ce 6bb0886
Author: Steve Traylen 
Date:   Tue Aug 30 20:16:48 2011 +0200

Merge branch 'master' into el6

 .gitignore|1 +
 perl-Directory-Queue.spec |8 +++-
 sources   |2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)
---
diff --cc .gitignore
index 064f58b,0eb7f48..b98d1a8
--- a/.gitignore
+++ b/.gitignore
@@@ -1,2 -1,4 +1,3 @@@
 -Directory-Queue-0.5.tar.gz
  /Directory-Queue-1.0.tar.gz
  /Directory-Queue-1.1.tar.gz
+ /Directory-Queue-1.2.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-Directory-Queue/el6] (3 commits) ...Merge branch 'master' into el6

2011-08-30 Thread stevetraylen
Summary of changes:

  c5605de... Perl mass rebuild (*)
  6bb0886... Update 1.2 rhbz#73941. (*)
  9692354... Merge branch 'master' into el6

(*) 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-Directory-Queue] Created tag perl-Directory-Queue-1.2-1.fc15

2011-08-30 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.2-1.fc15' was created.

Tagger: Steve Traylen 
Date: Tue Aug 30 20:16:13 2011 +0200

Update 1.2 rhbz#73941.

Changes since the last tag 'perl-Directory-Queue-1.1-1.fc15':

Marcela Mašláňová (1):
  Perl mass rebuild

Steve Traylen (1):
  Update 1.2 rhbz#73941.
--
Fedora Extras Perl SIG
http://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-Directory-Queue/f15] (2 commits) ...Update 1.2 rhbz#73941.

2011-08-30 Thread stevetraylen
Summary of changes:

  c5605de... Perl mass rebuild (*)
  6bb0886... Update 1.2 rhbz#73941. (*)

(*) 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-Directory-Queue] Created tag perl-Directory-Queue-1.2-1.fc16

2011-08-30 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.2-1.fc16' was created.

Tagger: Steve Traylen 
Date: Tue Aug 30 20:15:22 2011 +0200

Update 1.2 rhbz#73941.

Changes since the last tag 'perl-Directory-Queue-1.1-1.fc15':

Marcela Mašláňová (1):
  Perl mass rebuild

Steve Traylen (1):
  Update 1.2 rhbz#73941.
--
Fedora Extras Perl SIG
http://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-Directory-Queue/f16] Update 1.2 rhbz#73941.

2011-08-30 Thread stevetraylen
Summary of changes:

  6bb0886... Update 1.2 rhbz#73941. (*)

(*) 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-Directory-Queue] Created tag perl-Directory-Queue-1.2-1.fc17

2011-08-30 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.2-1.fc17' was created.

Tagger: Steve Traylen 
Date: Tue Aug 30 20:14:17 2011 +0200

Update 1.2 rhbz#73941.

Changes since the last tag 'perl-Directory-Queue-1.1-1.fc15':

Marcela Mašláňová (1):
  Perl mass rebuild

Steve Traylen (1):
  Update 1.2 rhbz#73941.
--
Fedora Extras Perl SIG
http://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-Directory-Queue] Update 1.2 rhbz#73941.

2011-08-30 Thread stevetraylen
commit 6bb08861ed3b21ee95fe5f6446224af38a382d19
Author: Steve Traylen 
Date:   Tue Aug 30 20:13:45 2011 +0200

Update 1.2 rhbz#73941.

 .gitignore|1 +
 perl-Directory-Queue.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 005e539..0eb7f48 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Directory-Queue-0.5.tar.gz
 /Directory-Queue-1.0.tar.gz
 /Directory-Queue-1.1.tar.gz
+/Directory-Queue-1.2.tar.gz
diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 535279b..f506244 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,6 +1,6 @@
 Name:   perl-Directory-Queue
-Version:1.1
-Release:2%{?dist}
+Version:1.2
+Release:1%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Tue Aug 30 2011 Steve Traylen  - 1.2-1
+- Update 1.2 rhbz#73941.
+
 * Mon Jun 20 2011 Marcela Mašláňová  - 1.1-2
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 17e15a7..8a074fa 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-fdc98ba4f957fe59ba7ba88a89da4eb4  Directory-Queue-1.1.tar.gz
+55d88d53ea28956541fbfaeefc4883ee  Directory-Queue-1.2.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 734253] HTML::Template 2.10 versioning problem

2011-08-30 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=734253

--- Comment #2 from Ville Skyttä  2011-08-30 14:10:06 EDT 
---
Created attachment 520663
  --> https://bugzilla.redhat.com/attachment.cgi?id=520663
Set module version to (fake) 2.91

I don't think there's any need to lie about the rpm version or provides
version; rpm's version comparison algorithm does not have any issues with 2.9
-> 2.10.

The attached patch bumps module version to 2.91 while keeping the rest at 2.10
(and fixes a couple of trivial issues while at it).  Ok if I commit and push
this to F-16?

-- 
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 Directory-Queue-1.2.tar.gz uploaded to lookaside cache by stevetraylen

2011-08-30 Thread stevetraylen
A file has been added to the lookaside cache for perl-Directory-Queue:

55d88d53ea28956541fbfaeefc4883ee  Directory-Queue-1.2.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


Broken dependencies: perl-Pugs-Compiler-Rule

2011-08-30 Thread buildsys


perl-Pugs-Compiler-Rule has broken dependencies in the F-16 tree:
On x86_64:
perl-Pugs-Compiler-Rule-0.37-9.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
On i386:
perl-Pugs-Compiler-Rule-0.37-9.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
Please resolve this as soon as possible.


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


Broken dependencies: perl-NOCpulse-Gritch

2011-08-30 Thread buildsys


perl-NOCpulse-Gritch has broken dependencies in the F-16 tree:
On x86_64:
perl-NOCpulse-Gritch-1.27.9-1.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
On i386:
perl-NOCpulse-Gritch-1.27.9-1.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
Please resolve this as soon as possible.


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


[perl-Sub-Exporter-ForMethods/f14] initial import (rhbz#733984)

2011-08-30 Thread Iain Arnell
Summary of changes:

  3d443bb... initial import (rhbz#733984) (*)

(*) 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-Sub-Exporter-ForMethods/f15] initial import (rhbz#733984)

2011-08-30 Thread Iain Arnell
Summary of changes:

  3d443bb... initial import (rhbz#733984) (*)

(*) 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-MooseX-Types-LoadableClass/f14] initial import (rhbz#734160)

2011-08-30 Thread Iain Arnell
Summary of changes:

  5ba9fb1... initial import (rhbz#734160) (*)

(*) 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-Sub-Exporter-ForMethods/f16] initial import (rhbz#733984)

2011-08-30 Thread Iain Arnell
Summary of changes:

  3d443bb... initial import (rhbz#733984) (*)

(*) 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-MooseX-Types-LoadableClass/f15] initial import (rhbz#734160)

2011-08-30 Thread Iain Arnell
Summary of changes:

  5ba9fb1... initial import (rhbz#734160) (*)

(*) 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-Sub-Exporter-ForMethods] initial import (rhbz#733984)

2011-08-30 Thread Iain Arnell
commit 3d443bbfc412b42c0f026875326634a814ff1567
Author: Iain Arnell 
Date:   Tue Aug 30 17:47:17 2011 +0200

initial import (rhbz#733984)

 .gitignore|1 +
 perl-Sub-Exporter-ForMethods.spec |   58 +
 sources   |1 +
 3 files changed, 60 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..baa452c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Sub-Exporter-ForMethods-0.100050.tar.gz
diff --git a/perl-Sub-Exporter-ForMethods.spec 
b/perl-Sub-Exporter-ForMethods.spec
new file mode 100644
index 000..232c07c
--- /dev/null
+++ b/perl-Sub-Exporter-ForMethods.spec
@@ -0,0 +1,58 @@
+Name:   perl-Sub-Exporter-ForMethods
+Version:0.100050
+Release:2%{?dist}
+Summary:Helper routines for using Sub::Exporter to build methods
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Sub-Exporter-ForMethods/
+Source0:
http://www.cpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-ForMethods-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.11
+BuildRequires:  perl(lib)
+BuildRequires:  perl(namespace::autoclean)
+BuildRequires:  perl(Pod::Coverage::TrustPod)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Sub::Exporter) >= 0.978
+BuildRequires:  perl(Sub::Name)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Pod::Coverage)
+BuildRequires:  perl(warnings)
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(Sub::Exporter) >= 0.978
+
+%{?perl_default_filter}
+
+%description
+This package provides helper routines for using Sub::Exporter to build methods
+that won't be removed by namespace::autoclean.
+
+%prep
+%setup -q -n Sub-Exporter-ForMethods-%{version}
+
+%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 {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+RELEASE_TESTING=1 make test
+
+%files
+%doc LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Tue Aug 30 2011 Iain Arnell  0.100050-2
+- fix typo in description
+
+* Mon Aug 29 2011 Iain Arnell  0.100050-1
+- Specfile autogenerated by cpanspec 1.79.
diff --git a/sources b/sources
index e69de29..e02461d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+3ae501e067f711f150f5562ac3fee029  Sub-Exporter-ForMethods-0.100050.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-MooseX-Types-LoadableClass/f16] initial import (rhbz#734160)

2011-08-30 Thread Iain Arnell
Summary of changes:

  5ba9fb1... initial import (rhbz#734160) (*)

(*) 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 Sub-Exporter-ForMethods-0.100050.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Sub-Exporter-ForMethods:

3ae501e067f711f150f5562ac3fee029  Sub-Exporter-ForMethods-0.100050.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-MooseX-Types-LoadableClass] initial import (rhbz#734160)

2011-08-30 Thread Iain Arnell
commit 5ba9fb1295f56890ff4d8e4bb856bdf850d6a94a
Author: Iain Arnell 
Date:   Tue Aug 30 17:46:09 2011 +0200

initial import (rhbz#734160)

 .gitignore   |1 +
 perl-MooseX-Types-LoadableClass.spec |   52 ++
 sources  |1 +
 3 files changed, 54 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..17c28e5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/MooseX-Types-LoadableClass-0.006.tar.gz
diff --git a/perl-MooseX-Types-LoadableClass.spec 
b/perl-MooseX-Types-LoadableClass.spec
new file mode 100644
index 000..1e88230
--- /dev/null
+++ b/perl-MooseX-Types-LoadableClass.spec
@@ -0,0 +1,52 @@
+Name:   perl-MooseX-Types-LoadableClass
+Version:0.006
+Release:1%{?dist}
+Summary:ClassName type constraint with coercion to load the class
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/MooseX-Types-LoadableClass/
+Source0:
http://www.cpan.org/authors/id/B/BO/BOBTFISH/MooseX-Types-LoadableClass-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(Class::Load) >= 0.06
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Moose)
+BuildRequires:  perl(MooseX::Types) >= 0.22
+BuildRequires:  perl(namespace::clean)
+BuildRequires:  perl(Test::Exception)
+BuildRequires:  perl(Test::More) >= 0.88
+Requires:   perl(Class::Load) >= 0.06
+Requires:   perl(MooseX::Types) >= 0.22
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+
+%{?perl_default_filter}
+
+%description
+ClassName type constraint with coercion to load the class.
+
+%prep
+%setup -q -n MooseX-Types-LoadableClass-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Aug 29 2011 Iain Arnell  0.006-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..c118336 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f5cf26d8f6bae56195ff5dec848351e8  MooseX-Types-LoadableClass-0.006.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 MooseX-Types-LoadableClass-0.006.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for 
perl-MooseX-Types-LoadableClass:

f5cf26d8f6bae56195ff5dec848351e8  MooseX-Types-LoadableClass-0.006.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-Plack-Test-ExternalServer/f14] initial import (rhbz#734168)

2011-08-30 Thread Iain Arnell
Summary of changes:

  c7d2f75... initial import (rhbz#734168) (*)

(*) 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-Plack-Test-ExternalServer/f15] initial import (rhbz#734168)

2011-08-30 Thread Iain Arnell
Summary of changes:

  c7d2f75... initial import (rhbz#734168) (*)

(*) 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-Plack-Middleware-ReverseProxy/f14] initial import (rhbz#734164)

2011-08-30 Thread Iain Arnell
Summary of changes:

  cd7a0b6... initial import (rhbz#734164) (*)

(*) 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 734420] perl-DateTime-TimeZone-1.36 is available

2011-08-30 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=734420

--- Comment #2 from Fedora Update System  2011-08-30 
11:39:01 EDT ---
perl-DateTime-0.70-2.fc15,perl-DateTime-Locale-0.45-1.fc15,perl-DateTime-TimeZone-1.36-1.fc15
has been submitted as an update for Fedora 15.
https://admin.fedoraproject.org/updates/perl-DateTime-0.70-2.fc15,perl-DateTime-Locale-0.45-1.fc15,perl-DateTime-TimeZone-1.36-1.fc15

-- 
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-Plack-Test-ExternalServer/f16] initial import (rhbz#734168)

2011-08-30 Thread Iain Arnell
Summary of changes:

  c7d2f75... initial import (rhbz#734168) (*)

(*) 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 734420] perl-DateTime-TimeZone-1.36 is available

2011-08-30 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=734420

--- Comment #3 from Fedora Update System  2011-08-30 
11:39:10 EDT ---
perl-DateTime-0.70-2.fc14,perl-DateTime-Locale-0.45-1.fc14,perl-DateTime-TimeZone-1.36-1.fc14
has been submitted as an update for Fedora 14.
https://admin.fedoraproject.org/updates/perl-DateTime-0.70-2.fc14,perl-DateTime-Locale-0.45-1.fc14,perl-DateTime-TimeZone-1.36-1.fc14

-- 
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-Plack-Middleware-ReverseProxy/f15] initial import (rhbz#734164)

2011-08-30 Thread Iain Arnell
Summary of changes:

  cd7a0b6... initial import (rhbz#734164) (*)

(*) 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-Plack-Test-ExternalServer] initial import (rhbz#734168)

2011-08-30 Thread Iain Arnell
commit c7d2f75d83613a7c099868bd145577727bb047ef
Author: Iain Arnell 
Date:   Tue Aug 30 17:42:37 2011 +0200

initial import (rhbz#734168)

 .gitignore  |1 +
 perl-Plack-Test-ExternalServer.spec |   60 +++
 sources |1 +
 3 files changed, 62 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d85fe86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Plack-Test-ExternalServer-0.01.tar.gz
diff --git a/perl-Plack-Test-ExternalServer.spec 
b/perl-Plack-Test-ExternalServer.spec
new file mode 100644
index 000..ce2bdd8
--- /dev/null
+++ b/perl-Plack-Test-ExternalServer.spec
@@ -0,0 +1,60 @@
+Name:   perl-Plack-Test-ExternalServer
+Version:0.01
+Release:1%{?dist}
+Summary:Run HTTP tests on external live servers
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Plack-Test-ExternalServer/
+Source0:
http://www.cpan.org/authors/id/F/FL/FLORA/Plack-Test-ExternalServer-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(HTTP::Request::Common)
+BuildRequires:  perl(LWP::UserAgent)
+BuildRequires:  perl(Plack::Loader)
+BuildRequires:  perl(Plack::Test)
+BuildRequires:  perl(Test::More) >= 0.89
+BuildRequires:  perl(Test::TCP)
+BuildRequires:  perl(URI)
+# additional deps for "release" testing
+%if !0%{?perl_bootstrap}
+BuildRequires:  perl(Pod::Coverage::TrustPod)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Pod::Coverage)
+%endif
+Requires:   perl(Plack::Test)
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+
+%{?perl_default_filter}
+
+%description
+This module allows you to run your Plack::Test tests against an external
+server instead of just against a local application through either mocked
+HTTP or a locally spawned server.
+
+%prep
+%setup -q -n Plack-Test-ExternalServer-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+RELEASE_TESTING=1 make test
+
+%files
+%defattr(-,root,root,-)
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Aug 29 2011 Iain Arnell  0.01-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..42418fe 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bb0806b4e5bc61064e3736991dd8640c  Plack-Test-ExternalServer-0.01.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 Plack-Test-ExternalServer-0.01.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Plack-Test-ExternalServer:

bb0806b4e5bc61064e3736991dd8640c  Plack-Test-ExternalServer-0.01.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-Plack-Middleware-ReverseProxy/f16] initial import (rhbz#734164)

2011-08-30 Thread Iain Arnell
Summary of changes:

  cd7a0b6... initial import (rhbz#734164) (*)

(*) 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-Plack-Middleware-ReverseProxy] initial import (rhbz#734164)

2011-08-30 Thread Iain Arnell
commit cd7a0b6dd39cb8d7b97a8afec779b7a9a978c6a3
Author: Iain Arnell 
Date:   Tue Aug 30 17:40:37 2011 +0200

initial import (rhbz#734164)

 .gitignore  |1 +
 perl-Plack-Middleware-ReverseProxy.spec |   52 +++
 sources |1 +
 3 files changed, 54 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..58e0bf2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Plack-Middleware-ReverseProxy-0.10.tar.gz
diff --git a/perl-Plack-Middleware-ReverseProxy.spec 
b/perl-Plack-Middleware-ReverseProxy.spec
new file mode 100644
index 000..7291496
--- /dev/null
+++ b/perl-Plack-Middleware-ReverseProxy.spec
@@ -0,0 +1,52 @@
+Name:   perl-Plack-Middleware-ReverseProxy
+Version:0.10
+Release:1%{?dist}
+Summary:Supports app to run as a reverse proxy backend
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Plack-Middleware-ReverseProxy/
+Source0:
http://www.cpan.org/authors/id/D/DA/DANJOU/Plack-Middleware-ReverseProxy-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Filter::Util::Call)
+BuildRequires:  perl(parent)
+BuildRequires:  perl(Plack::Middleware)
+BuildRequires:  perl(Plack::Request)
+BuildRequires:  perl(YAML)
+Requires:   perl(Plack::Middleware)
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+
+%{?perl_default_filter}
+
+%description
+Plack::Middleware::ReverseProxy resets some HTTP headers, which changed by
+reverse-proxy. You can specify the reverse proxy address and stop fake
+requests using 'enable_if' directive in your app.psgi.
+
+%prep
+%setup -q -n Plack-Middleware-ReverseProxy-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Aug 29 2011 Iain Arnell  0.10-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..75b3d68 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9473223e9b2415611f3e11b9e02eaa8f  Plack-Middleware-ReverseProxy-0.10.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


File Plack-Middleware-ReverseProxy-0.10.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for 
perl-Plack-Middleware-ReverseProxy:

9473223e9b2415611f3e11b9e02eaa8f  Plack-Middleware-ReverseProxy-0.10.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[Bug 734420] perl-DateTime-TimeZone-1.36 is available

2011-08-30 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=734420

--- Comment #1 from Fedora Update System  2011-08-30 
11:34:58 EDT ---
perl-DateTime-TimeZone-1.36-1.fc16 has been submitted as an update for Fedora
16.
https://admin.fedoraproject.org/updates/perl-DateTime-TimeZone-1.36-1.fc16

-- 
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-DateTime/f14] (3 commits) ...Additional (Build)Requires from unofficial review

2011-08-30 Thread Iain Arnell
Summary of changes:

  e74014b... Perl mass rebuild (*)
  8baa9ed... Unbundle DateTime::TimeZone and DateTime::Locale (rhbz#7306 (*)
  939a4e3... Additional (Build)Requires from unofficial review (*)

(*) 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-DateTime/f15] (3 commits) ...Additional (Build)Requires from unofficial review

2011-08-30 Thread Iain Arnell
Summary of changes:

  e74014b... Perl mass rebuild (*)
  8baa9ed... Unbundle DateTime::TimeZone and DateTime::Locale (rhbz#7306 (*)
  939a4e3... Additional (Build)Requires from unofficial review (*)

(*) 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-DateTime-TimeZone/f14] (3 commits) ...update to 1.36

2011-08-30 Thread Iain Arnell
Summary of changes:

  9f8ba06... initial import (rhbz#730657) (*)
  adae3b9... rebuild against unbunled perl-DateTime (*)
  8f45d0d... update to 1.36 (*)

(*) 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-DateTime-Locale/f14] initial import (rhbz#730656)

2011-08-30 Thread Iain Arnell
Summary of changes:

  b1b779f... initial import (rhbz#730656) (*)

(*) 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-DateTime-TimeZone/f15] (3 commits) ...update to 1.36

2011-08-30 Thread Iain Arnell
Summary of changes:

  9f8ba06... initial import (rhbz#730657) (*)
  adae3b9... rebuild against unbunled perl-DateTime (*)
  8f45d0d... update to 1.36 (*)

(*) 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-DateTime-Locale/f15] initial import (rhbz#730656)

2011-08-30 Thread Iain Arnell
Summary of changes:

  b1b779f... initial import (rhbz#730656) (*)

(*) 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-DateTime-TimeZone/f16] update to 1.36

2011-08-30 Thread Iain Arnell
Summary of changes:

  8f45d0d... update to 1.36 (*)

(*) 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-DateTime-TimeZone] update to 1.36

2011-08-30 Thread Iain Arnell
commit 8f45d0da14686280b92bcf227854ba2bf9c913b1
Author: Iain Arnell 
Date:   Tue Aug 30 17:20:23 2011 +0200

update to 1.36

 .gitignore  |1 +
 perl-DateTime-TimeZone.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 00755f6..76e7755 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /DateTime-TimeZone-1.35.tar.gz
+/DateTime-TimeZone-1.36.tar.gz
diff --git a/perl-DateTime-TimeZone.spec b/perl-DateTime-TimeZone.spec
index 04181f2..f8d506f 100644
--- a/perl-DateTime-TimeZone.spec
+++ b/perl-DateTime-TimeZone.spec
@@ -1,6 +1,6 @@
 Name:   perl-DateTime-TimeZone
-Version:1.35
-Release:3%{?dist}
+Version:1.36
+Release:1%{?dist}
 Summary:Time zone object base class and factory
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -76,6 +76,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Aug 30 2011 Iain Arnell  1.36-1
+- update to latest upstream - Olson 2011i
+
 * Thu Aug 18 2011 Iain Arnell  1.35-3
 - rebuild against unbunled perl-DateTime
 
diff --git a/sources b/sources
index 8ecf991..1822662 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5866f392d011f2579168c427231cc569  DateTime-TimeZone-1.35.tar.gz
+b81dfb4dd88e29a9efaf11b8fa3d107f  DateTime-TimeZone-1.36.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 DateTime-TimeZone-1.36.tar.gz uploaded to lookaside cache by iarnell

2011-08-30 Thread Iain Arnell
A file has been added to the lookaside cache for perl-DateTime-TimeZone:

b81dfb4dd88e29a9efaf11b8fa3d107f  DateTime-TimeZone-1.36.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 734469] Upgrade to new upstream version

2011-08-30 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=734469

Steve Traylen  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #1 from Steve Traylen  2011-08-30 11:01:28 
EDT ---
1.2 Thu Aug 18 2011
* Improved the speed of the purge() method for large queues.
* Minimized the number of string copies required internally.
* The get() and add() methods can now use a hash reference.
* The schema can now define strings that are used by reference.
* The modules $VERSION variables now contain the package version.
* Added the touch() method.
* Improved testing.

-- 
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] filter out bogus Requires on Test::More

2011-08-30 Thread Tom Callaway
commit f556e20dcd13637926b1e76b6bd75dd882c4fafe
Author: Tom "spot" Callaway 
Date:   Tue Aug 30 10:11:42 2011 -0400

filter out bogus Requires on Test::More

 perl-Gtk2.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Gtk2.spec b/perl-Gtk2.spec
index 078dc9e..500b4e4 100644
--- a/perl-Gtk2.spec
+++ b/perl-Gtk2.spec
@@ -6,7 +6,7 @@
 
 Name:   perl-Gtk2
 Version:1.224
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl interface to the 2.x series of the Gimp Toolkit library
 
 Group:  Development/Libraries
@@ -37,7 +37,7 @@ Provides:   perl(Gtk2::VBox)
 Provides:   perl(Gtk2::Window)
 Provides:   perl(Gtk2::MessageDialog)
 
-%global __requires_exclude perl\\(Glib\\)
+%global __requires_exclude perl\\(Glib\\)|perl\\(Test::
 
 %description
 This module allows you to write Gtk+ graphical user interfaces in a
@@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Aug 30 2011 Tom Callaway  - 1.224-2
+- filter out bogus Requires on Test::More
+
 * Wed Aug  3 2011 Tom Callaway  - 1.224-1
 - update to 1.224
 
--
Fedora Extras Perl SIG
http://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/f16] filter out bogus Requires on Test::More

2011-08-30 Thread Tom Callaway
commit 9048b31802915b2fb77f408b3ba4e4835e2210c3
Author: Tom "spot" Callaway 
Date:   Tue Aug 30 10:10:48 2011 -0400

filter out bogus Requires on Test::More

 perl-Gtk2.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Gtk2.spec b/perl-Gtk2.spec
index 078dc9e..500b4e4 100644
--- a/perl-Gtk2.spec
+++ b/perl-Gtk2.spec
@@ -6,7 +6,7 @@
 
 Name:   perl-Gtk2
 Version:1.224
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl interface to the 2.x series of the Gimp Toolkit library
 
 Group:  Development/Libraries
@@ -37,7 +37,7 @@ Provides:   perl(Gtk2::VBox)
 Provides:   perl(Gtk2::Window)
 Provides:   perl(Gtk2::MessageDialog)
 
-%global __requires_exclude perl\\(Glib\\)
+%global __requires_exclude perl\\(Glib\\)|perl\\(Test::
 
 %description
 This module allows you to write Gtk+ graphical user interfaces in a
@@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Aug 30 2011 Tom Callaway  - 1.224-2
+- filter out bogus Requires on Test::More
+
 * Wed Aug  3 2011 Tom Callaway  - 1.224-1
 - update to 1.224
 
--
Fedora Extras Perl SIG
http://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/f15] filter out bogus Requires on Test::More

2011-08-30 Thread Tom Callaway
commit 310d932cb121af7db6d7c9310cea54cd0aac5360
Author: Tom "spot" Callaway 
Date:   Tue Aug 30 10:10:25 2011 -0400

filter out bogus Requires on Test::More

 perl-Gtk2.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Gtk2.spec b/perl-Gtk2.spec
index 078dc9e..500b4e4 100644
--- a/perl-Gtk2.spec
+++ b/perl-Gtk2.spec
@@ -6,7 +6,7 @@
 
 Name:   perl-Gtk2
 Version:1.224
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl interface to the 2.x series of the Gimp Toolkit library
 
 Group:  Development/Libraries
@@ -37,7 +37,7 @@ Provides:   perl(Gtk2::VBox)
 Provides:   perl(Gtk2::Window)
 Provides:   perl(Gtk2::MessageDialog)
 
-%global __requires_exclude perl\\(Glib\\)
+%global __requires_exclude perl\\(Glib\\)|perl\\(Test::
 
 %description
 This module allows you to write Gtk+ graphical user interfaces in a
@@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Aug 30 2011 Tom Callaway  - 1.224-2
+- filter out bogus Requires on Test::More
+
 * Wed Aug  3 2011 Tom Callaway  - 1.224-1
 - update to 1.224
 
--
Fedora Extras Perl SIG
http://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/el6] 1.224, filter out bogus Requires on Test::More

2011-08-30 Thread Tom Callaway
commit 7cce628ab75c6d9f93d23c88d7040bfc8a43d7e9
Author: Tom "spot" Callaway 
Date:   Tue Aug 30 10:09:58 2011 -0400

1.224, filter out bogus Requires on Test::More

 perl-Gtk2.spec |   13 +++--
 sources|2 +-
 2 files changed, 12 insertions(+), 3 deletions(-)
---
diff --git a/perl-Gtk2.spec b/perl-Gtk2.spec
index 2b231c1..500b4e4 100644
--- a/perl-Gtk2.spec
+++ b/perl-Gtk2.spec
@@ -5,7 +5,7 @@
 #
 
 Name:   perl-Gtk2
-Version:1.223
+Version:1.224
 Release:2%{?dist}
 Summary:Perl interface to the 2.x series of the Gimp Toolkit library
 
@@ -37,7 +37,7 @@ Provides:   perl(Gtk2::VBox)
 Provides:   perl(Gtk2::Window)
 Provides:   perl(Gtk2::MessageDialog)
 
-%global __requires_exclude perl\\(Glib\\)
+%global __requires_exclude perl\\(Glib\\)|perl\\(Test::
 
 %description
 This module allows you to write Gtk+ graphical user interfaces in a
@@ -84,6 +84,15 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Aug 30 2011 Tom Callaway  - 1.224-2
+- filter out bogus Requires on Test::More
+
+* Wed Aug  3 2011 Tom Callaway  - 1.224-1
+- update to 1.224
+
+* Tue Jun 21 2011 Marcela Mašláňová  - 1.223-3
+- Perl mass rebuild
+
 * Thu Apr 14 2011 Marcela Mašláňová  - 1.223-2
 - add provides, which should fix gcstar. They must be provided by this
  package.
diff --git a/sources b/sources
index dbacd38..bee1b4f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-57459f0f39c20699a5062ea833a67817  Gtk2-1.223.tar.gz
+0d83e00179bcf1caa2b8974248b6a869  Gtk2-1.224.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 715745] FTBFS perl-NOCpulse-Gritch-1.27.9-1.fc16

2011-08-30 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=715745

Bug 715745 depends on bug 716369, which changed state.

Bug 716369 Summary: nocpulse-common-2.1.22 cannot be installed because of 
missing perl(RHN::DB) dependency
https://bugzilla.redhat.com/show_bug.cgi?id=716369

   What|Old Value   |New Value

 Resolution|NEXTRELEASE |
 Status|CLOSED  |ASSIGNED

-- 
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 734469] New: Upgrade to new upstream version

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

Summary: Upgrade to new upstream version

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

   Summary: Upgrade to new upstream version
   Product: Fedora EPEL
   Version: el6
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Severity: unspecified
  Priority: unspecified
 Component: perl-Directory-Queue
AssignedTo: steve.tray...@cern.ch
ReportedBy: lionel.c...@cern.ch
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
steve.tray...@cern.ch
Classification: Fedora
  Story Points: ---
  Type: ---


The latest version of Directory::Queue on CPAN is now 1.2.

This is the version to use everywhere. Please upgrade in EPEL.

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


Broken dependencies: perl-Pugs-Compiler-Rule

2011-08-30 Thread buildsys


perl-Pugs-Compiler-Rule has broken dependencies in the rawhide tree:
On x86_64:
perl-Pugs-Compiler-Rule-0.37-9.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
On i386:
perl-Pugs-Compiler-Rule-0.37-9.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
Please resolve this as soon as possible.


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


Broken dependencies: perl-NOCpulse-Gritch

2011-08-30 Thread buildsys


perl-NOCpulse-Gritch has broken dependencies in the rawhide tree:
On x86_64:
perl-NOCpulse-Gritch-1.27.9-1.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
On i386:
perl-NOCpulse-Gritch-1.27.9-1.fc16.noarch requires 
perl(:MODULE_COMPAT_5.12.3)
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 734419] perl-CPAN-Checksums-2.08 is available

2011-08-30 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=734419

Petr Sabata  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-CPAN-Checksums-2.08-1.
   ||fc17
 Resolution||RAWHIDE
Last Closed||2011-08-30 07:02:40

-- 
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-Locale-Codes/f16] Import

2011-08-30 Thread Petr Pisar
Summary of changes:

  ecfabf3... Import (*)

(*) 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-CPAN-Checksums] 2.08 bump

2011-08-30 Thread Petr Sabata
commit 29cbcd47ce5b7c0732f7b5f67901f242fa946462
Author: Petr Sabata 
Date:   Tue Aug 30 13:01:06 2011 +0200

2.08 bump

 .gitignore   |1 +
 perl-CPAN-Checksums.spec |   28 ++--
 sources  |2 +-
 3 files changed, 16 insertions(+), 15 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 084f69b..33ed55b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ CPAN-Checksums-2.04.tar.gz
 /CPAN-Checksums-2.05.tar.gz
 /CPAN-Checksums-2.06.tar.gz
 /CPAN-Checksums-2.07.tar.gz
+/CPAN-Checksums-2.08.tar.gz
diff --git a/perl-CPAN-Checksums.spec b/perl-CPAN-Checksums.spec
index f266974..c152941 100644
--- a/perl-CPAN-Checksums.spec
+++ b/perl-CPAN-Checksums.spec
@@ -1,12 +1,11 @@
 Name:   perl-CPAN-Checksums
-Version:2.07
-Release:3%{?dist}
+Version:2.08
+Release:1%{?dist}
 Summary:Write a CHECKSUMS file for a directory as on CPAN
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/CPAN-Checksums/
 Source0:
http://www.cpan.org/authors/id/A/AN/ANDK/CPAN-Checksums-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Compress::Bzip2)
 BuildRequires:  perl(Compress::Zlib)
@@ -19,10 +18,13 @@ BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(IO::File) >= 1.14
+BuildRequires:  perl(Module::Signature)
+BuildRequires:  perl(Safe)
 BuildRequires:  perl(Test::More)
 # Optional tests
 BuildRequires:  perl(Test::Pod) >= 1.00
 BuildRequires:  perl(Test::Pod::Coverage) >= 0.18
+Requires:   perl(Safe)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -36,29 +38,27 @@ Write a CHECKSUMS file for a directory as on CPAN.
 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 {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-%{_fixperms} $RPM_BUILD_ROOT/*
+rm -rf %{buildroot}
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+%{_fixperms} %{buildroot}/*
 
 %check
 # test checks MANIFEST -  would fail because of debug files
 rm -rf ./debugfiles.list ./debuglinks.list ./debugsources.list
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc README Todo
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Tue Aug 30 2011 Petr Sabata  - 2.08-1
+- 2.08 bump
+- Drop now obsolete BuildRoot and defattr
+
 * Tue Jul 19 2011 Petr Sabata  - 2.07-3
 - Perl mass rebuild
 
diff --git a/sources b/sources
index 67f3b6d..93fce76 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-586b4a829c5906ab4223616cab8595d9  CPAN-Checksums-2.07.tar.gz
+058679056ade8ee885b8538fe195d84a  CPAN-Checksums-2.08.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 CPAN-Checksums-2.08.tar.gz uploaded to lookaside cache by psabata

2011-08-30 Thread Petr Sabata
A file has been added to the lookaside cache for perl-CPAN-Checksums:

058679056ade8ee885b8538fe195d84a  CPAN-Checksums-2.08.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 734419] perl-CPAN-Checksums-2.08 is available

2011-08-30 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=734419

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 734419] New: perl-CPAN-Checksums-2.08 is available

2011-08-30 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-CPAN-Checksums-2.08 is available

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

   Summary: perl-CPAN-Checksums-2.08 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-CPAN-Checksums
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: 2.08
Current version in Fedora Rawhide: 2.07
URL: http://search.cpan.org/dist/CPAN-Checksums/

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


[Bug 734420] New: perl-DateTime-TimeZone-1.36 is available

2011-08-30 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-DateTime-TimeZone-1.36 is available

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

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


Latest upstream release: 1.36
Current version in Fedora Rawhide: 1.35
URL: http://search.cpan.org/dist/DateTime-TimeZone/

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-Locale-Codes] Import

2011-08-30 Thread Petr Pisar
commit ecfabf3fbec696537c717b66b527f77a104f3fb6
Author: Petr Písař 
Date:   Tue Aug 30 11:44:35 2011 +0200

Import

 .gitignore |1 +
 perl-Locale-Codes.spec |   57 
 sources|1 +
 3 files changed, 59 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..e7c83fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Locale-Codes-3.17.tar.gz
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
new file mode 100644
index 000..4b83e97
--- /dev/null
+++ b/perl-Locale-Codes.spec
@@ -0,0 +1,57 @@
+Name:   perl-Locale-Codes
+Version:3.17
+Release:1%{?dist}
+Summary:Distribution of modules to handle locale codes
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Locale-Codes/
+Source0:
http://www.cpan.org/authors/id/S/SB/SBECK/Locale-Codes-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(Module::Build)
+# Tests
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(Storable)
+BuildRequires:  perl(Test::More)
+# Optional tests
+BuildRequires:  perl(Test::Pod) >= 1.00
+BuildRequires:  perl(Test::Pod::Coverage) >= 1.00
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(constant)
+
+# Inject not detected module version
+%{?filter_setup:
+%filter_from_provides s/^\(perl(Locale\>[^)]*)\)[^=]*$/\1 = %{version}/
+%filter_setup
+}
+
+%description
+Locale-Codes is a distribution containing a set of modules. The modules
+each deal with different types of codes which identify parts of the locale
+including languages, countries, currency, etc.
+
+%prep
+%setup -q -n Locale-Codes-%{version}
+chmod -x examples/*
+
+%build
+%{__perl} Build.PL installdirs=vendor
+./Build
+
+%install
+./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+./Build test
+
+%files
+%doc ChangeLog LICENSE README README.first examples
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Jun 30 2011 Petr Pisar  3.17-1
+- Specfile autogenerated by cpanspec 1.78.
+- Remove BuildRoot and defattr
diff --git a/sources b/sources
index e69de29..505b1f1 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f0181dd8bf625db584fddbd3f5e2143b  Locale-Codes-3.17.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 Locale-Codes-3.17.tar.gz uploaded to lookaside cache by ppisar

2011-08-30 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Locale-Codes:

f0181dd8bf625db584fddbd3f5e2143b  Locale-Codes-3.17.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-HTML-Template versioning issue in F-16+

2011-08-30 Thread Ville Skyttä
FYI,

perl-HTML-Template 2.10 in F-16+ has most likely broken at least the
perl-HTML-Template-Expr and w3c-markup-validator packages in Fedora.

https://bugzilla.redhat.com/show_bug.cgi?id=734253
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel