[perl-Test-CheckDeps/f19] Update to 0.006

2013-07-11 Thread Paul Howarth
Summary of changes:

  71ae53e... Update to 0.006 (*)

(*) 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-Test-CheckDeps/f18] (2 commits) ...Update to 0.006

2013-07-11 Thread Paul Howarth
Summary of changes:

  07b74e4... Update to 0.004 (*)
  71ae53e... Update to 0.006 (*)

(*) 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-Test-CheckDeps] Created tag perl-Test-CheckDeps-0.006-1.fc19

2013-07-11 Thread Paul Howarth
The lightweight tag 'perl-Test-CheckDeps-0.006-1.fc19' was created pointing to:

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

[perl-Test-CheckDeps] Created tag perl-Test-CheckDeps-0.006-1.fc18

2013-07-11 Thread Paul Howarth
The lightweight tag 'perl-Test-CheckDeps-0.006-1.fc18' was created pointing to:

 71ae53e... Update to 0.006
--
Fedora Extras Perl SIG
http://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-Bio-SamTools

2013-07-11 Thread buildsys


perl-Bio-SamTools has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
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-PDL

2013-07-11 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.2
Please resolve this as soon as possible.


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

[perl-Test-Warnings] Initial import (perl-Test-Warnings-0.007-1)

2013-07-11 Thread Paul Howarth
commit 140dd48c37095d3e02c21bc548cc9862f37adb26
Author: Paul Howarth p...@city-fan.org
Date:   Thu Jul 11 13:37:29 2013 +0100

Initial import (perl-Test-Warnings-0.007-1)

If you've ever tried to use Test::NoWarnings to confirm there are no 
warnings
generated by your tests, combined with the convenience of done_testing to 
not
have to declare a test count, you'll have discovered that these two 
features do
not play well together, as the test count will be calculated before the
warnings test is run, resulting in a TAP error (see 
examples/test_nowarnings.pl
in this distribution for a demonstration).

This module is intended to be used as a drop-in replacement for
Test::NoWarnings: it also adds an extra test, but runs this test before
done_testing calculates the test count, rather than after. It does this by
hooking into done_testing as well as via an END block. You can declare a 
plan,
or not, and things will still Just Work.

It is actually equivalent to:

use Test::NoWarnings 1.04 ':early';

as warnings are still printed normally as they occur. You are safe, and
enthusiastically encouraged, to perform a global search-replace of the above
with use Test::Warnings; whether or not your tests have a plan.

 .gitignore  |1 +
 perl-Test-Warnings.spec |   83 +++
 sources |1 +
 3 files changed, 85 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..20573b7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Test-Warnings-[0-9.]*.tar.gz
diff --git a/perl-Test-Warnings.spec b/perl-Test-Warnings.spec
new file mode 100644
index 000..10d0628
--- /dev/null
+++ b/perl-Test-Warnings.spec
@@ -0,0 +1,83 @@
+Name:  perl-Test-Warnings
+Version:   0.007
+Release:   1%{?dist}
+Summary:   Test for warnings and the lack of them
+License:   GPL+ or Artistic
+Group: Development/Libraries
+URL:   http://search.cpan.org/dist/Test-Warnings
+Source0:   
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Test-Warnings-%{version}.tar.gz
+BuildArch: noarch
+# Build
+BuildRequires: perl(Module::Build::Tiny) = 0.024
+# Module
+BuildRequires: perl(Exporter)
+BuildRequires: perl(Test::Builder)
+BuildRequires: perl(parent)
+BuildRequires: perl(strict)
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(Capture::Tiny)
+BuildRequires: perl(File::Find)
+BuildRequires: perl(File::Temp)
+BuildRequires: perl(if)
+BuildRequires: perl(Test::CheckDeps) = 0.006
+BuildRequires: perl(Test::Deep)
+BuildRequires: perl(Test::More) = 0.94
+BuildRequires: perl(Test::Tester) = 0.108
+# Runtime
+Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+
+%description
+If you've ever tried to use Test::NoWarnings to confirm there are no warnings
+generated by your tests, combined with the convenience of done_testing to not
+have to declare a test count, you'll have discovered that these two features do
+not play well together, as the test count will be calculated before the
+warnings test is run, resulting in a TAP error (see examples/test_nowarnings.pl
+in this distribution for a demonstration).
+
+This module is intended to be used as a drop-in replacement for
+Test::NoWarnings: it also adds an extra test, but runs this test before
+done_testing calculates the test count, rather than after. It does this by
+hooking into done_testing as well as via an END block. You can declare a plan,
+or not, and things will still Just Work.
+
+It is actually equivalent to:
+
+use Test::NoWarnings 1.04 ':early';
+
+as warnings are still printed normally as they occur. You are safe, and
+enthusiastically encouraged, to perform a global search-replace of the above
+with use Test::Warnings; whether or not your tests have a plan.
+
+%prep
+%setup -q -n Test-Warnings-%{version}
+
+%build
+perl Build.PL --installdirs=vendor
+./Build
+
+%install
+./Build install --destdir=%{buildroot} --create_packlist=0
+
+%check
+./Build test
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/Test/
+%{_mandir}/man3/Test::Warnings.3pm*
+
+%changelog
+* Wed Jul 10 2013 Paul Howarth p...@city-fan.org - 0.007-1
+- Update to 0.007
+  - Fix subtest tests to work on Test::More before 0.95_01 (CPAN RT#86802)
+- BR: perl(Capture::Tiny)
+- Bump perl(Module::Build::Tiny) version requirement to 0.024
+- Bump perl(Test::CheckDeps) version requirement to 0.006
+- Drop perl(Test::More) version requirement to 0.94
+
+* Tue Jul  9 2013 Paul Howarth p...@city-fan.org - 0.006-2
+- Sanitize for Fedora submission
+
+* Tue Jul  9 2013 Paul Howarth p...@city-fan.org - 0.006-1
+- Initial RPM version
diff --git a/sources b/sources
index e69de29..ca201f7 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+66779108a5c974114f3a6a709270b0a0  Test-Warnings-0.007.tar.gz
--
Fedora Extras Perl SIG

[perl-Test-Warnings/f19] Initial import (perl-Test-Warnings-0.007-1)

2013-07-11 Thread Paul Howarth
Summary of changes:

  140dd48... Initial import (perl-Test-Warnings-0.007-1) (*)

(*) 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-Test-Tester] Update to 0.109

2013-07-11 Thread Paul Howarth
commit c1419554abfc2c360e53e62a506e61cee7ad2d60
Author: Paul Howarth p...@city-fan.org
Date:   Thu Jul 11 14:11:17 2013 +0100

Update to 0.109

- New upstream release 0.109
  - Add minimal support for note and explain (i.e. don't crash)

 .gitignore|3 +--
 perl-Test-Tester.spec |   10 +++---
 sources   |2 +-
 3 files changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 689b973..fb91df0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1 @@
-Test-Tester-0.107.tar.gz
-/Test-Tester-0.108.tar.gz
+/Test-Tester-[0-9.]*.tar.gz
diff --git a/perl-Test-Tester.spec b/perl-Test-Tester.spec
index ef54b37..23d4909 100644
--- a/perl-Test-Tester.spec
+++ b/perl-Test-Tester.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Tester
-Version:0.108
-Release:2%{?dist}
+Version:0.109
+Release:1%{?dist}
 Summary:Ease testing test modules built with Test::Builder
 License:Artistic clarified
 Group:  Development/Libraries
@@ -50,6 +50,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 11 2013 Paul Howarth p...@city-fan.org - 0.109-1
+- Update to 0.109
+  - Add minimal support for note and explain (i.e. don't crash)
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.108-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
@@ -74,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
 * Wed Dec 22 2010 Marcela Maslanova mmasl...@redhat.com - 0.107-7
-- 661697 rebuild for fixing problems with vendorach/lib
+- Rebuild to fix problems with vendorarch/lib (#661697)
 
 * Fri May 07 2010 Marcela Maslanova mmasl...@redhat.com - 0.107-6
 - Mass rebuild with perl-5.12.0
diff --git a/sources b/sources
index 227e85a..217e35f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-939d4fb9ad04b8b5a746cdd09040ea0b  Test-Tester-0.108.tar.gz
+d8fd872ee7e959f89a4af0371a7e782d  Test-Tester-0.109.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Tester/f18] (3 commits) ...Update to 0.109

2013-07-11 Thread Paul Howarth
Summary of changes:

  e5f4677... 0.108 bump. Add BR perl(lib). (*)
  ea6bd7b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  c141955... Update to 0.109 (*)

(*) 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-Test-Tester] Created tag perl-Test-Tester-0.109-1.fc19

2013-07-11 Thread Paul Howarth
The lightweight tag 'perl-Test-Tester-0.109-1.fc19' was created pointing to:

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

[perl-Test-Tester] Created tag perl-Test-Tester-0.109-1.fc18

2013-07-11 Thread Paul Howarth
The lightweight tag 'perl-Test-Tester-0.109-1.fc18' was created pointing to:

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

[perl-Test-Tester] Created tag perl-Test-Tester-0.109-1.fc20

2013-07-11 Thread Paul Howarth
The lightweight tag 'perl-Test-Tester-0.109-1.fc20' was created pointing to:

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

[abi-compliance-checker/el6: 2/2] Merge branch 'master' into el6

2013-07-11 Thread Orion Poplawski
commit 03ece7ee5a6a9105d358be45aa2a1bd182ff55a0
Merge: f6bf88f e908fd5
Author: Orion Poplawski or...@nwra.com
Date:   Thu Jul 11 20:50:38 2013 -0600

Merge branch 'master' into el6

 .gitignore  |1 +
 abi-compliance-checker.spec |8 +++-
 sources |2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)
---
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[abi-compliance-checker/el6] (2 commits) ...Merge branch 'master' into el6

2013-07-11 Thread Orion Poplawski
Summary of changes:

  e908fd5... Update to latest bugfix release. (*)
  03ece7e... 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

File DBIx-SearchBuilder-1.65.tar.gz uploaded to lookaside cache by corsepiu

2013-07-11 Thread corsepiu
A file has been added to the lookaside cache for perl-DBIx-SearchBuilder:

a57146be76424d7aa8279f45a234fe5c  DBIx-SearchBuilder-1.65.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-DBIx-SearchBuilder] Upstream update.

2013-07-11 Thread corsepiu
commit f7c17831512556ba55d8cfeb9b64ccb0180916fe
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Fri Jul 12 07:53:17 2013 +0200

Upstream update.

- BR: perl(Scalar::Util).
- Fix up bogus dates in %changelog.

 .gitignore   |2 +-
 perl-DBIx-SearchBuilder.spec |   14 ++
 sources  |2 +-
 3 files changed, 12 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 07216c9..29fe0fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/DBIx-SearchBuilder-1.63.tar.gz
+/DBIx-SearchBuilder-1.65.tar.gz
diff --git a/perl-DBIx-SearchBuilder.spec b/perl-DBIx-SearchBuilder.spec
index edacf27..d0846b1 100644
--- a/perl-DBIx-SearchBuilder.spec
+++ b/perl-DBIx-SearchBuilder.spec
@@ -6,8 +6,8 @@
 #
 
 Name:  perl-DBIx-SearchBuilder
-Version:   1.63
-Release:   2%{?dist}
+Version:   1.65
+Release:   1%{?dist}
 Summary:   Encapsulate SQL queries and rows in simple perl objects
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -28,6 +28,7 @@ BuildRequires:perl(Test::More) = 0.52
 BuildRequires: perl(Class::Accessor)
 BuildRequires: perl(Encode)
 BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Scalar::Util)
 
 # Improved tests:
 BuildRequires: perl(Test::Pod)
@@ -89,6 +90,11 @@ DBIx::SearchBuilder bindings for Oracle
 %endif
 
 %changelog
+* Fri Jul 12 2013 Ralf Corsépius corse...@fedoraproject.org - 1.65-1
+- Upstream update.
+- BR: perl(Scalar::Util).
+- Fix up bogus dates in %%changelog.
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.63-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
@@ -117,10 +123,10 @@ DBIx::SearchBuilder bindings for Oracle
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.59-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
-* Mon Nov 06 2010 Ralf Corsépius corse...@fedoraproject.org - 1.59-1
+* Mon Dec 06 2010 Ralf Corsépius corse...@fedoraproject.org - 1.59-1
 - Upstream update.
 
-* Mon Nov 02 2010 Ralf Corsépius corse...@fedoraproject.org - 1.58-1
+* Tue Nov 02 2010 Ralf Corsépius corse...@fedoraproject.org - 1.58-1
 - Upstream update.
 - Spec cleanup.
 
diff --git a/sources b/sources
index 4f17087..7739ea3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5dd34b6978d313d47565ec0bc999be45  DBIx-SearchBuilder-1.63.tar.gz
+a57146be76424d7aa8279f45a234fe5c  DBIx-SearchBuilder-1.65.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-DBIx-SearchBuilder/f19] Upstream update.

2013-07-11 Thread corsepiu
Summary of changes:

  f7c1783... Upstream update. (*)

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