[perl-version/f14/master] Update to 0.88

2011-02-04 Thread Marcela Mašláňová
commit 787f52f1ea8bc188bfc52fcc14c8a7297c7a8cc2
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Mon Jan 31 09:04:04 2011 +0100

Update to 0.88

Revert to Makefile.PL flow as upstream dropped Build.PL to avoid circular 
dependencies.
Install into perl directories rather than vendor directories. Mark Pod 
files as %%doc.

 .gitignore|2 +-
 perl-version.spec |   38 ++
 sources   |2 +-
 3 files changed, 28 insertions(+), 14 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e361ac2..24223e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-version-0.82.tar.gz
+version-0.88.tar.gz
diff --git a/perl-version.spec b/perl-version.spec
index 6de2c16..338f7c1 100644
--- a/perl-version.spec
+++ b/perl-version.spec
@@ -1,6 +1,6 @@
 Name:   perl-version
 Epoch:  3
-Version:0.82
+Version:0.88
 Release:1%{?dist}
 Summary:Perl extension for Version Objects
 License:GPL+ or Artistic
@@ -18,27 +18,29 @@ objects for older version of Perl and provides the version 
object API for
 all versions of Perl. All previous releases before 0.74 are deprecated and
 should not be used due to incompatible API changes. Version 0.77 introduces
 the new 'parse' and 'declare' methods to standardize usage. You are
-strongly urged to set 0.77 as a minimum in your code, e.g.
+strongly urged to set 0.77 as a minimum in your code.
+
+%{?perl_default_filter}
 
 %prep
 %setup -q -n version-%{version}
-%{?perl_default_filter}
 
 %build
-%{__perl} Build.PL installdirs=vendor optimize=$RPM_OPT_FLAGS
-./Build
+%{__perl} Makefile.PL INSTALLDIRS=perl OPTIMIZE=$RPM_OPT_FLAGS
+make %{?_smp_mflags}
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} \; 2/dev/null
 
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
-./Build test
+make test
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -46,10 +48,22 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(-,root,root,-)
 %doc Changes README
-%{perl_vendorarch}/auto/*
-%{perl_vendorarch}/version*
-%{_mandir}/man3/*
+%doc %{perl_archlib}/version.pod
+%dir %{perl_archlib}/version/
+%doc %{perl_archlib}/version/Internals.pod
+%{perl_archlib}/auto/version/
+%{perl_archlib}/version.pm
+%{perl_archlib}/version/vxs.pm
+%{_mandir}/man3/version.3pm*
+%{_mandir}/man3/version::Internals.3pm*
 
 %changelog
-* Tue Mar 09 2010 Marcela Mašláňová mmasl...@redhat.com 0.82-1
+* Wed Jan 26 2011 Paul Howarth p...@city-fan.org 3:0.88-1
+- Update to 0.88
+- Revert to Makefile.PL flow as upstream dropped Build.PL to avoid circular
+  dependencies
+- Install into perl directories rather than vendor directories
+- Mark Pod files as %%doc
+
+* Tue Mar 09 2010 Marcela Mašláňová mmasl...@redhat.com 3:0.82-1
 - Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index ca773cf..b319ce8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c073f079557297003d805b535711c5d1  version-0.82.tar.gz
+5f27f21c625fa2f89f4130e277594635  version-0.88.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-version/f14/master] Change to new guidelines

2011-02-04 Thread Marcela Mašláňová
commit d220ef68806a65ccd24949d9344f7aff3c5bf177
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Fri Feb 4 12:40:34 2011 +0100

Change to new guidelines

 perl-version.spec |6 --
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/perl-version.spec b/perl-version.spec
index 338f7c1..378c492 100644
--- a/perl-version.spec
+++ b/perl-version.spec
@@ -7,7 +7,6 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/version/
 Source0:
http://www.cpan.org/authors/id/J/JP/JPEACOCK/version-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::More) = 0.45
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
@@ -30,8 +29,6 @@ strongly urged to set 0.77 as a minimum in your code.
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
@@ -42,9 +39,6 @@ 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
--
Fedora Extras Perl SIG
http://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-BerkeleyDB

2011-02-04 Thread buildsys


perl-BerkeleyDB has broken dependencies in the rawhide tree:
On x86_64:
perl-BerkeleyDB-0.43-3.fc15.x86_64 requires libdb = 0:5.1.19
On i386:
perl-BerkeleyDB-0.43-3.fc15.i686 requires libdb = 0:5.1.19
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-HTML-Mason

2011-02-04 Thread buildsys


perl-HTML-Mason has broken dependencies in the rawhide tree:
On x86_64:
1:perl-HTML-Mason-1.45-2.fc15.noarch requires perl(Apache::Request)
On i386:
1:perl-HTML-Mason-1.45-2.fc15.noarch requires perl(Apache::Request)
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-RPM2

2011-02-04 Thread buildsys


perl-RPM2 has broken dependencies in the rawhide tree:
On x86_64:
perl-RPM2-0.68-9.fc15.x86_64 requires librpmio.so.1()(64bit)
perl-RPM2-0.68-9.fc15.x86_64 requires librpm.so.1()(64bit)
On i386:
perl-RPM2-0.68-9.fc15.i686 requires librpm.so.1
perl-RPM2-0.68-9.fc15.i686 requires librpmio.so.1
Please resolve this as soon as possible.


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


[perl-BerkeleyDB] Created tag perl-BerkeleyDB-0.43-4.fc15

2011-02-04 Thread Paul Howarth
The lightweight tag 'perl-BerkeleyDB-0.43-4.fc15' was created pointing to:

 3844b5b... Rebuild for libdb 5.1.25 in Rawhide
--
Fedora Extras Perl SIG
http://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: perl @INC (paths) again

2011-02-04 Thread Ralf Corsepius
On 02/02/2011 11:43 AM, Paul Howarth wrote:
 On 31/01/11 15:21, Marcela Mašláňová wrote:
 Hello,
 because some questions and blocked reviews [1]. I feel that we really
 need discuss our @INC paths once again. I wrote proposal, which is
 almost the same as was the one sent to the list few months ago [2].

 This is only proposal and there are also other possibilities, how to
 create specific directory for installation of users rpms. I'd like to
 change this proposal to FPC guidelines maybe for next Fedora, therefore
 I really like to know your opinions.

 First of all, what are presumably typos:

 F-15:

 @INC:
  /usr/local/lib/perl5 -- for CPAN (site lib)
  /usr/local/share/perl5   -- for CPAN (site arch)
  /usr/lib/perl5/vendor_perl   -- 3rd party(vendor lib)
  /usr/share/perl5/vendor_perl -- 3rd party(vendor arch)
  /usr/lib/perl5   -- Fedora   (priv lib)
  /usr/share/perl5 -- Fedora   (arch lib)
  .

 Should surely be:

 @INC:
  /usr/local/%{_lib}/perl5 -- for CPAN (site arch)
  /usr/local/share/perl5   -- for CPAN (site lib)
  %{_libdir}/perl5/vendor_perl -- 3rd party(vendor arch)
  /usr/share/perl5/vendor_perl -- 3rd party(vendor lib)
  %{_libdir}/perl5 -- Fedora   (arch lib)
  /usr/share/perl5 -- Fedora   (priv lib)
  .

 I don't really see any great harm in installing modules to perl/core
 directories rather than vendor directories. I also like this nice,
 simple set of paths.

 However, the plan envisages third-party repositories sticking with
 vendor directories and I'm not sure that's going to happen.
Actually I have never seen anybody doing this.

Apart of this this definition of vendor_dir
- Does not match Fedora's practice to install into vendor_dir.
- Violates the FHS. 3rd party's are supposed to install to /opt.

 I thought the conventional structure of having modules bundled with perl
 (the perl core) going to perl/core directories and everything else
 that's packaged (including dual lived modules) going to vendor
 directories made good, intuitive sense, and I think that's what upstream
 intended too.

Agreed.

 Moreover, it seems to be widespread policy elsewhere:

 https://wiki.archlinux.org/index.php/Perl_Policy
 http://use.perl.org/~schwern/journal/39246
 https://www.socialtext.net/perl5/index.cgi?hints_for_distributors
 http://www.debian.org/doc/packaging-manuals/perl-policy/

 So overall I'm in favour of using the F-15 set of paths (assuming the
 typos are fixed) but sticking with the vendor directories for everything
 apart from the perl core.

Well, IMO
a) these F15 paths are a regression in comparsion to what Fedora15 had 
because they reintroduce vendor_dir.

b) these F15 paths break with Fedora's convention to use vendor_dir to 
install Fedora-modules = This proposal would requires inspecting all 
perl-module's specs and rebuild them.

c) the setting for vendor_dir is a broken as were its predecessors 
(letting the site*dir point to user local makes sense).

I.e. if this convention shall be applied, we need to modifiy and rebuild 
all perl-packages which currently install to vendor_dir.


Ralf


--
Fedora Extras Perl SIG
http://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-Mason] - Remove %{perl_vendorlib}/Mason/Apache/. - Re-activate testsuite.

2011-02-04 Thread corsepiu
commit 84f3fa68ee98e779cf74cfaed5260f52ca164fd6
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Fri Feb 4 16:15:02 2011 +0100

- Remove %{perl_vendorlib}/Mason/Apache/.
- Re-activate testsuite.

 perl-HTML-Mason.spec |   12 ++--
 1 files changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/perl-HTML-Mason.spec b/perl-HTML-Mason.spec
index a0c26d7..93a84a1 100644
--- a/perl-HTML-Mason.spec
+++ b/perl-HTML-Mason.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-Mason
 Version:1.45
-Release:2%{?dist}
+Release:3%{?dist}
 Epoch:  1
 Summary:Powerful Perl-based web site development and delivery engine
 License:GPL+ or Artistic
@@ -70,11 +70,15 @@ mv -f $RPM_BUILD_ROOT%{_bindir}/mason.pl 
$RPM_BUILD_ROOT%{_bindir}/mason
 mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d
 install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/
 
+# Apache:: (Apache1) module
+# Not applicable on Fedora.
+rm -rf $RPM_BUILD_ROOT%{perl_vendorlib}/HTML/Mason/Apache
+
 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/www/mason
 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/mason
 
 %check
-#./Build test
+./Build test
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -91,6 +95,10 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{_localstatedir}/www/mason
 
 %changelog
+* Thu Feb 04 2011 Ralf Corsépius corse...@fedoraproject.org 1:1.45-3
+- Remove %%{perl_vendorlib}/Mason/Apache/.
+- Re-activate testsuite.
+
 * Thu Feb 03 2011 Ralf Corsépius corse...@fedoraproject.org 1:1.45-2
 - Rebuild package (Was missing in rawhide).
 - Switch to using perl_default_filter.
--
Fedora Extras Perl SIG
http://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-Meta-2.110350.tar.gz uploaded to lookaside cache by iarnell

2011-02-04 Thread Iain Arnell
A file has been added to the lookaside cache for perl-CPAN-Meta:

e9fafca0716d4ef2832eebcd21a16ddc  CPAN-Meta-2.110350.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 Net-SSLGlue-0.5.tar.gz uploaded to lookaside cache by remi

2011-02-04 Thread Remi Collet
A file has been added to the lookaside cache for perl-Net-SSLGlue:

aad39c1ddf23e8fa659d60036de2a1cd  Net-SSLGlue-0.5.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-Net-SSLGlue] update to 0.5

2011-02-04 Thread Remi Collet
commit 910409b19b304d9e5748b600ae6af4e793c02e31
Author: remi fed...@famillecollet.com
Date:   Fri Feb 4 17:20:53 2011 +0100

update to 0.5

 .gitignore|1 +
 perl-Net-SSLGlue.spec |   17 ++---
 sources   |2 +-
 3 files changed, 16 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9e17a24..5049d1e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Net-SSLGlue-0.4.tar.gz
+/Net-SSLGlue-0.5.tar.gz
diff --git a/perl-Net-SSLGlue.spec b/perl-Net-SSLGlue.spec
index 3fa07bd..f36e34e 100644
--- a/perl-Net-SSLGlue.spec
+++ b/perl-Net-SSLGlue.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-SSLGlue
-Version:0.4
-Release:2%{?dist}
+Version:0.5
+Release:1%{?dist}
 Summary:Add/extend SSL support for common perl modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -26,6 +26,13 @@ Some commonly used perl modules don't have SSL support at 
all, even if the
 protocol would support it. Others have SSL support, but most of them don't
 do proper checking of the servers certificate.
 
+The Net::SSLGlue::* modules try to add SSL support or proper certificate to
+these modules. Currently is support for the following modules available:
+
+- Net::SMTP - add SSL from beginning or using STARTTLS
+- Net::LDAP - add proper certificate checking
+- LWP - add proper certificate checking 
+
 
 %prep
 %setup -q -n Net-SSLGlue-%{version}
@@ -59,12 +66,16 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc COPYRIGHT TODO Changes examples
+%doc COPYRIGHT TODO README Changes examples
 %{perl_vendorlib}/Net
 %{_mandir}/man3/Net*
 
 
 %changelog
+* Fri Feb 04 2011 Remi Collet fed...@famillecollet.com - 0.5-1
+- update to 0.5 (doc fix only)
+- fix description
+
 * Tue Dec 21 2010 Marcela Maslanova mmasl...@redhat.com - 0.4-2
 - 661697 rebuild for fixing problems with vendorach/lib
 
diff --git a/sources b/sources
index fc35cc6..004df5c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a26420f119dc683d4fcb7ac679a5a31e  Net-SSLGlue-0.4.tar.gz
+aad39c1ddf23e8fa659d60036de2a1cd  Net-SSLGlue-0.5.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-CPAN-Meta] update to 2.110350

2011-02-04 Thread Iain Arnell
commit d5a1a1c2efa279e91f8f80bc33109634194ecb84
Author: Iain Arnell iarn...@gmail.com
Date:   Fri Feb 4 17:41:11 2011 +0100

update to 2.110350

 .gitignore  |1 +
 perl-CPAN-Meta.spec |   16 +---
 sources |2 +-
 3 files changed, 11 insertions(+), 8 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6708207..4080863 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 CPAN-Meta-2.101670.tar.gz
 CPAN-Meta-2.102160.tar.gz
 /CPAN-Meta-2.102400.tar.gz
+/CPAN-Meta-2.110350.tar.gz
diff --git a/perl-CPAN-Meta.spec b/perl-CPAN-Meta.spec
index 5c398a2..e3be8e1 100644
--- a/perl-CPAN-Meta.spec
+++ b/perl-CPAN-Meta.spec
@@ -1,10 +1,10 @@
 Name:   perl-CPAN-Meta
 Summary:Distribution metadata for a CPAN dist
-Version:2.102400
-Release:2%{?dist}
+Version:2.110350
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
-Source0:
http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/CPAN-Meta-%{version}.tar.gz 
+Source0:
http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/CPAN-Meta-%{version}.tar.gz
 URL:http://search.cpan.org/dist/CPAN-Meta/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
@@ -17,11 +17,10 @@ BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(File::Temp) = 0.20
 BuildRequires:  perl(IO::Dir)
-BuildRequires:  perl(JSON) = 2
-BuildRequires:  perl(Parse::CPAN::Meta)
+BuildRequires:  perl(Parse::CPAN::Meta) = 1.4300
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Storable)
-BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  perl(Test::More) = 0.96
 BuildRequires:  perl(version) = 0.82
 BuildRequires:  perl(Version::Requirements) = 0.101020
 
@@ -60,11 +59,14 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes dist.ini history LICENSE META.json README Todo
+%doc Changes history LICENSE README Todo
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Feb 04 2011 Iain Arnell iarn...@gmail.com 2.110350-1
+- update to latest upstream version
+
 * Wed Dec 15 2010 Marcela Maslanova mmasl...@redhat.com - 2.102400-2
 - 661697 rebuild for fixing problems with vendorach/lib
 
diff --git a/sources b/sources
index b4bc169..847cbdb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6df415cce1990a7f0e6737a18a1f2d2a  CPAN-Meta-2.102400.tar.gz
+e9fafca0716d4ef2832eebcd21a16ddc  CPAN-Meta-2.110350.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


File Data-Dump-Streamer-2.31.tar.gz uploaded to lookaside cache by iarnell

2011-02-04 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Data-Dump-Streamer:

b44caead2a0aed205e604410eff21c3c  Data-Dump-Streamer-2.31.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Data-Dump-Streamer] update to 2.31

2011-02-04 Thread Iain Arnell
commit e573861d6c469fbc46033a0ed674d029cf419a69
Author: Iain Arnell iarn...@gmail.com
Date:   Fri Feb 4 18:04:08 2011 +0100

update to 2.31

 .gitignore   |1 +
 perl-Data-Dump-Streamer.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 29105a2..66dff36 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 Data-Dump-Streamer-2.22.tar.gz
 /Data-Dump-Streamer-2.23.tar.gz
 /Data-Dump-Streamer-2.25.tar.gz
+/Data-Dump-Streamer-2.31.tar.gz
diff --git a/perl-Data-Dump-Streamer.spec b/perl-Data-Dump-Streamer.spec
index b53ffb6..e6cf2ea 100644
--- a/perl-Data-Dump-Streamer.spec
+++ b/perl-Data-Dump-Streamer.spec
@@ -1,5 +1,5 @@
 Name:   perl-Data-Dump-Streamer
-Version:2.25
+Version:2.31
 Release:1%{?dist}
 Summary:Accurately serialize a data structure as Perl code
 License:GPL+ or Artistic
@@ -58,6 +58,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Fri Feb 04 2011 Iain Arnell iarn...@gmail.com 2.31-1
+- update to latest upstream version
+
 * Sun Jan 30 2011 Iain Arnell iarn...@gmail.com 2.25-1
 - update to latest upstream version
 
diff --git a/sources b/sources
index b4337b8..19403bb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-4ba471c94cc529c579d64dbc6d3458ab  Data-Dump-Streamer-2.25.tar.gz
+b44caead2a0aed205e604410eff21c3c  Data-Dump-Streamer-2.31.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 672068] dspam web interface completely broken

2011-02-04 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=672068

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||dspam-3.9.0-13.fc14
 Resolution||ERRATA
Last Closed||2011-02-04 14:51:46

-- 
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 672068] dspam web interface completely broken

2011-02-04 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=672068

--- Comment #12 from Fedora Update System upda...@fedoraproject.org 
2011-02-04 14:51:37 EST ---
dspam-3.9.0-13.fc14 has been pushed to the Fedora 14 stable repository.  If
problems still persist, please make note of it in this bug report.

-- 
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-Parallel-Prefork/f14/master] - Add BR: perl(Parallel::Scoreboard).

2011-02-04 Thread corsepiu
commit 8235e7f4a889ba738c79c7a0016c45aa023443e6
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sat Feb 5 04:44:11 2011 +0100

- Add BR: perl(Parallel::Scoreboard).

 perl-Parallel-Prefork.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Parallel-Prefork.spec b/perl-Parallel-Prefork.spec
index 38cbb95..769bc10 100644
--- a/perl-Parallel-Prefork.spec
+++ b/perl-Parallel-Prefork.spec
@@ -1,6 +1,6 @@
 Name:   perl-Parallel-Prefork
 Version:0.11
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Simple prefork server framework
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -15,7 +15,7 @@ BuildRequires:  perl(List::MoreUtils)
 BuildRequires:  perl(Proc::Wait3) = 0.03
 BuildRequires:  perl(Scope::Guard)
 BuildRequires:  perl(Test::Requires)
-# Optional, not yet in Fedora: BuildRequires:  perl(Parallel::Scoreboard)
+BuildRequires:  perl(Parallel::Scoreboard)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jan 27 2011 Ralf Corsépius corse...@fedoraproject.org 0.11-2
+- Add BR: perl(Parallel::Scoreboard).
+
 * Thu Jan 20 2011 Ralf Corsépius corse...@fedoraproject.org 0.11-1
 - Upstream update.
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Parallel-Prefork/f13/master] - Add BR: perl(Parallel::Scoreboard).

2011-02-04 Thread corsepiu
commit 906edacdbc16045da0ba81672258796abb813c45
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sat Feb 5 04:46:03 2011 +0100

- Add BR: perl(Parallel::Scoreboard).

 perl-Parallel-Prefork.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Parallel-Prefork.spec b/perl-Parallel-Prefork.spec
index 38cbb95..769bc10 100644
--- a/perl-Parallel-Prefork.spec
+++ b/perl-Parallel-Prefork.spec
@@ -1,6 +1,6 @@
 Name:   perl-Parallel-Prefork
 Version:0.11
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Simple prefork server framework
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -15,7 +15,7 @@ BuildRequires:  perl(List::MoreUtils)
 BuildRequires:  perl(Proc::Wait3) = 0.03
 BuildRequires:  perl(Scope::Guard)
 BuildRequires:  perl(Test::Requires)
-# Optional, not yet in Fedora: BuildRequires:  perl(Parallel::Scoreboard)
+BuildRequires:  perl(Parallel::Scoreboard)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jan 27 2011 Ralf Corsépius corse...@fedoraproject.org 0.11-2
+- Add BR: perl(Parallel::Scoreboard).
+
 * Thu Jan 20 2011 Ralf Corsépius corse...@fedoraproject.org 0.11-1
 - Upstream update.
 
--
Fedora Extras Perl SIG
http://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-DBIx-Class] update to 0.08127

2011-02-04 Thread Iain Arnell
commit d5699a74319d5fda3eb43d8eeccb3a55c271b5e7
Author: Iain Arnell iarn...@gmail.com
Date:   Sat Feb 5 07:27:33 2011 +0100

update to 0.08127

 .gitignore   |1 +
 perl-DBIx-Class.spec |   13 ++---
 sources  |2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a87ec8c..a34120c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 DBIx-Class-0.08120.tar.gz
 /DBIx-Class-0.08123.tar.gz
 /DBIx-Class-0.08126.tar.gz
+/DBIx-Class-0.08127.tar.gz
diff --git a/perl-DBIx-Class.spec b/perl-DBIx-Class.spec
index 21a646b..f7bd575 100644
--- a/perl-DBIx-Class.spec
+++ b/perl-DBIx-Class.spec
@@ -1,10 +1,10 @@
 Name:   perl-DBIx-Class
 Summary:Extensible and flexible object - relational mapper
-Version:0.08126
+Version:0.08127
 Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
-Source0:
http://search.cpan.org/CPAN/authors/id/A/AR/ARCANEZ/DBIx-Class-%{version}.tar.gz
+Source0:
http://search.cpan.org/CPAN/authors/id/A/AB/ABRAXXA/DBIx-Class-%{version}.tar.gz
 URL:http://search.cpan.org/dist/DBIx-Class/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
@@ -85,11 +85,12 @@ BuildRequires: perl(Test::Memory::Cycle)
 BuildRequires: perl(Text::CSV) = 1.16
 BuildRequires: perl(Time::Piece::MySQL)
 BuildRequires: perl(namespace::autoclean) = 0.09
-BuildRequires: perl(namespace::clean) = 0.14
+BuildRequires: perl(namespace::clean) = 0.20
 
 %{?filter_from_requires: %filter_from_requires /^perl(DBD::Pg)$/d }
 %{?perl_default_filter:
 %filter_from_requires 
/^perl(DBIx::Class::\(Admin\|CDBICompat\|ClassResolver\|Storage\)/d
+%filter_from_requires 
/^perl(DBIx::Class::\(Componentised\|ResultSourceProxy\)/d
 %filter_provides_in %{perl_vendorlib}/DBIx/Class/Admin
 %filter_requires_in %{perl_vendorlib}/DBIx/Class/Admin
 %filter_provides_in %{perl_vendorlib}/DBIx/Class/CDBICompat
@@ -102,6 +103,8 @@ BuildRequires: perl(namespace::clean) = 0.14
 %filter_from_requires /^perl(DBIx::Class::SQLAHacks)/d
 %filter_from_provides /^perl(DBIx::Class::Storage::DBIHacks)/d
 %filter_from_requires /^perl(DBIx::Class::Storage::DBIHacks)/d
+%filter_from_provides /^perl(DBIx::Class::SQLMaker::/d
+%filter_from_requires /^perl(DBIx::Class::SQLMaker::/d
 %perl_default_filter
 }
 %{?perl_default_subpackage_tests}
@@ -165,6 +168,10 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Sat Feb 05 2011 Iain Arnell iarn...@gmail.com 0.08127-1
+- update to latest upstream version
+- additional filters from requires
+
 * Sat Jan 08 2011 Iain Arnell iarn...@gmail.com 0.08126-1
 - update to latest upstream version
 
diff --git a/sources b/sources
index 47e6f7c..8ddb1cd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c35fadcba798cf734ee1b43ace8be36c  DBIx-Class-0.08126.tar.gz
+e4f91c23d7f48db7182decc7d55f1227  DBIx-Class-0.08127.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