File Class-Unload-0.08.tar.gz uploaded to lookaside cache by ppisar

2013-05-29 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Class-Unload:

01f9d0ebc9a483beb2783e94a1fa540c  Class-Unload-0.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

[perl-Class-Unload] 0.08 bump

2013-05-29 Thread Petr Pisar
commit 86ff1ac774d1e2f414357d3cb968111354f583c4
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 08:02:44 2013 +0200

0.08 bump

 .gitignore |1 +
 perl-Class-Unload.spec |   34 +-
 sources|2 +-
 3 files changed, 23 insertions(+), 14 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c119c77..a78fc5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Class-Unload-0.06.tar.gz
 /Class-Unload-0.07.tar.gz
+/Class-Unload-0.08.tar.gz
diff --git a/perl-Class-Unload.spec b/perl-Class-Unload.spec
index 4762b15..c634612 100644
--- a/perl-Class-Unload.spec
+++ b/perl-Class-Unload.spec
@@ -1,45 +1,53 @@
 Name:   perl-Class-Unload
-Version:0.07
-Release:7%{?dist}
-Summary:Unload given Class
+Version:0.08
+Release:1%{?dist}
+Summary:Unload given class
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Class-Unload/
 Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/Class-Unload-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl = 0:5.005
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(Class::Inspector)
-BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
+# Tests:
+BuildRequires:  perl(base)
+BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::More)
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %description
 Unloads the given class by clearing out its symbol table and removing it
-from INC.
+from %%INC.
 
 %prep
 %setup -q -n Class-Unload-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=perl
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-make pure_install PERL_INSTALL_ROOT=$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 -depth -type d -exec rmdir {} 2/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
-%defattr(-,root,root,-)
-%doc Changes README
-%{perl_privlib}/*
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 29 2013 Petr Pisar ppi...@redhat.com - 0.08-1
+- 0.08 bump
+- Move Perl modueles to vendor path
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/sources b/sources
index 2e0b99a..96887c3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c6a7fd628bf7a48c3374747257eb90ad  Class-Unload-0.07.tar.gz
+01f9d0ebc9a483beb2783e94a1fa540c  Class-Unload-0.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

[perl-Class-Unload/f19] 0.08 bump

2013-05-29 Thread Petr Pisar
Summary of changes:

  86ff1ac... 0.08 bump (*)

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

[perl-Class-Unload/f19] Correct a typo in spec changelog

2013-05-29 Thread Petr Pisar
Summary of changes:

  50a5154... Correct a typo in spec changelog (*)

(*) 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-Class-Unload] Correct a typo in spec changelog

2013-05-29 Thread Petr Pisar
commit 50a5154a3ad02edf422b57ba6d689e0c1f1d4494
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 08:06:31 2013 +0200

Correct a typo in spec changelog

 perl-Class-Unload.spec |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/perl-Class-Unload.spec b/perl-Class-Unload.spec
index c634612..6fa8e96 100644
--- a/perl-Class-Unload.spec
+++ b/perl-Class-Unload.spec
@@ -46,7 +46,7 @@ make test
 %changelog
 * Wed May 29 2013 Petr Pisar ppi...@redhat.com - 0.08-1
 - 0.08 bump
-- Move Perl modueles to vendor path
+- Move Perl modules to vendor path
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_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-Class-Unload/f18] 0.08 bump

2013-05-29 Thread Petr Pisar
commit d703837e42f1c273ee8067e385396c4fd2cdab68
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 08:02:44 2013 +0200

0.08 bump

 .gitignore |1 +
 perl-Class-Unload.spec |   34 +-
 sources|2 +-
 3 files changed, 23 insertions(+), 14 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c119c77..a78fc5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Class-Unload-0.06.tar.gz
 /Class-Unload-0.07.tar.gz
+/Class-Unload-0.08.tar.gz
diff --git a/perl-Class-Unload.spec b/perl-Class-Unload.spec
index dcc6054..425719e 100644
--- a/perl-Class-Unload.spec
+++ b/perl-Class-Unload.spec
@@ -1,45 +1,53 @@
 Name:   perl-Class-Unload
-Version:0.07
-Release:6%{?dist}
-Summary:Unload given Class
+Version:0.08
+Release:1%{?dist}
+Summary:Unload given class
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Class-Unload/
 Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/Class-Unload-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl = 0:5.005
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(Class::Inspector)
-BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
+# Tests:
+BuildRequires:  perl(base)
+BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::More)
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %description
 Unloads the given class by clearing out its symbol table and removing it
-from INC.
+from %%INC.
 
 %prep
 %setup -q -n Class-Unload-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=perl
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-make pure_install PERL_INSTALL_ROOT=$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 -depth -type d -exec rmdir {} 2/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
-%defattr(-,root,root,-)
-%doc Changes README
-%{perl_privlib}/*
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 29 2013 Petr Pisar ppi...@redhat.com - 0.08-1
+- 0.08 bump
+- Move Perl modules to vendor path
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 2e0b99a..96887c3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c6a7fd628bf7a48c3374747257eb90ad  Class-Unload-0.07.tar.gz
+01f9d0ebc9a483beb2783e94a1fa540c  Class-Unload-0.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

[perl-Class-Unload/f17] 0.08 bump

2013-05-29 Thread Petr Pisar
commit 6478cf89bc760e46784a7c9d8d72b36213af6602
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 08:02:44 2013 +0200

0.08 bump

 .gitignore |1 +
 perl-Class-Unload.spec |   34 +-
 sources|2 +-
 3 files changed, 23 insertions(+), 14 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c119c77..a78fc5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Class-Unload-0.06.tar.gz
 /Class-Unload-0.07.tar.gz
+/Class-Unload-0.08.tar.gz
diff --git a/perl-Class-Unload.spec b/perl-Class-Unload.spec
index 58ee165..17a023f 100644
--- a/perl-Class-Unload.spec
+++ b/perl-Class-Unload.spec
@@ -1,45 +1,53 @@
 Name:   perl-Class-Unload
-Version:0.07
-Release:4%{?dist}
-Summary:Unload given Class
+Version:0.08
+Release:1%{?dist}
+Summary:Unload given class
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Class-Unload/
 Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/Class-Unload-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl = 0:5.005
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(Class::Inspector)
-BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
+# Tests:
+BuildRequires:  perl(base)
+BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::More)
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %description
 Unloads the given class by clearing out its symbol table and removing it
-from INC.
+from %%INC.
 
 %prep
 %setup -q -n Class-Unload-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=perl
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-make pure_install PERL_INSTALL_ROOT=$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 -depth -type d -exec rmdir {} 2/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
-%defattr(-,root,root,-)
-%doc Changes README
-%{perl_privlib}/*
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 29 2013 Petr Pisar ppi...@redhat.com - 0.08-1
+- 0.08 bump
+- Move Perl modules to vendor path
+
 * Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
diff --git a/sources b/sources
index 2e0b99a..96887c3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c6a7fd628bf7a48c3374747257eb90ad  Class-Unload-0.07.tar.gz
+01f9d0ebc9a483beb2783e94a1fa540c  Class-Unload-0.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 967823] perl-Class-Unload-0.08 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967823

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

   What|Removed |Added

   Fixed In Version||perl-Class-Unload-0.08-1.fc
   ||20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Ft2kwtIhV1a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 967830] perl-threads-lite-0.033 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967830

--- Comment #1 from Petr Pisar ppi...@redhat.com ---
This version requires perl(experimental).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=a0mOfQeP6Ka=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 967830] perl-threads-lite-0.033 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967830

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

   What|Removed |Added

 Depends On||968183

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=XXsFkNEO37a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File threads-lite-0.033.tar.gz uploaded to lookaside cache by ppisar

2013-05-29 Thread Petr Pisar
A file has been added to the lookaside cache for perl-threads-lite:

d1d823d7ddd14b07d9c5da53e9290da9  threads-lite-0.033.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 SOOT-0.17.tar.gz uploaded to lookaside cache by ppisar

2013-05-29 Thread Petr Pisar
A file has been added to the lookaside cache for perl-SOOT:

9a085afbbe21029ec492b50242e15eab  SOOT-0.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-SOOT] Import

2013-05-29 Thread Petr Pisar
commit d5f83d9b0153fb6bfd00928747d5f548ef02cccb
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 09:51:52 2013 +0200

Import

 .gitignore |1 +
 perl-SOOT.spec |   89 
 sources|1 +
 3 files changed, 91 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..aa5f447 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/SOOT-0.17.tar.gz
diff --git a/perl-SOOT.spec b/perl-SOOT.spec
new file mode 100644
index 000..d0a8e43
--- /dev/null
+++ b/perl-SOOT.spec
@@ -0,0 +1,89 @@
+Name:   perl-SOOT
+Version:0.17
+Release:1%{?dist}
+Summary:Use ROOT from Perl
+License:LGPLv2+
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/SOOT/
+Source0:
http://www.cpan.org/authors/id/S/SM/SMUELLER/SOOT-%{version}.tar.gz
+BuildRequires:  perl
+BuildRequires:  perl(Alien::ROOT) = 5.26.0.1
+BuildRequires:  perl(base)
+BuildRequires:  perl(Carp) = 1.01
+BuildRequires:  perl(Config)
+BuildRequires:  perl(ExtUtils::CppGuess) = 0.01
+BuildRequires:  perl(ExtUtils::ParseXS) = 3.02
+BuildRequires:  perl(ExtUtils::Typemaps)
+BuildRequires:  perl(ExtUtils::XSpp) = 0.10
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Getopt::Long)
+# inc::latest not used
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(vars)
+BuildRequires:  perl(warnings)
+BuildRequires:  root-reflex
+BuildRequires:  root-graf3d
+BuildRequires:  root-physics
+# Run-time:
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(XSLoader)
+# Tests:
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(Carp) = 1.01
+Provides:   perl(TArray) = %{version}
+Provides:   perl(TClass) = %{version}
+Provides:   perl(TObject) = %{version}
+
+%{?perl_default_filter}
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Carp\\)$
+
+%description
+SOOT is a Perl extension for using the ROOT library. It is very similar to the
+Ruby-ROOT or PyROOT extensions for their respective languages. Specifically,
+SOOT was implemented after the model of Ruby-ROOT.
+
+%prep
+%setup -q -n SOOT-%{version}
+# Remove bundled modules
+find inc -depth -mindepth 1 \! -name SOOTBuilder.pm -delete
+sed -i -e '/^inc\//d' MANIFEST
+find inc -type f  MANIFEST
+# Bypass inc::latest as it requires packlists
+sed -i -e s/use inc::latest '\([^']*\)'/use \1/ Build.PL inc/SOOTBuilder.pm
+# Correct charset
+for F in examples/Graph/markerwarning.pl; do
+iconv --from ISO-8859-1 --to UTF-8  $F  ${F}.utf8
+touch -r $F ${F}.utf8
+mv ${F}.utf8 $F
+done
+
+%build
+perl Build.PL installdirs=vendor optimize=$RPM_OPT_FLAGS
+./Build
+
+%install
+./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+./Build test
+
+%files
+%doc Changes examples LICENSE README TODO
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/SOOT*
+%{perl_vendorarch}/T*
+%{_mandir}/man3/*
+
+%changelog
+* Tue May 14 2013 Petr Pisar ppi...@redhat.com 0.17-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..5d9a183 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9a085afbbe21029ec492b50242e15eab  SOOT-0.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

[Bug 967829] perl-Syntax-Highlight-Engine-Kate-0.08 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967829

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=fXulIHDM2Ca=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-SOOT] Disable tests on x86

2013-05-29 Thread Petr Pisar
commit 5c75891c707fd84c47bdfd32f3e46bf3357ed6bc
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 13:15:54 2013 +0200

Disable tests on x86

 perl-SOOT.spec |   12 
 1 files changed, 12 insertions(+), 0 deletions(-)
---
diff --git a/perl-SOOT.spec b/perl-SOOT.spec
index d0a8e43..5bcedf9 100644
--- a/perl-SOOT.spec
+++ b/perl-SOOT.spec
@@ -1,3 +1,10 @@
+# Tests blocks on i686
+%ifarch %{ix86}
+%bcond_with test
+%else
+%bcond_without test
+%endif
+
 Name:   perl-SOOT
 Version:0.17
 Release:1%{?dist}
@@ -27,6 +34,7 @@ BuildRequires:  perl(warnings)
 BuildRequires:  root-reflex
 BuildRequires:  root-graf3d
 BuildRequires:  root-physics
+%if %{with test}
 # Run-time:
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Basename)
@@ -35,6 +43,7 @@ BuildRequires:  perl(XSLoader)
 # Tests:
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Test::More)
+%endif
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   perl(Carp) = 1.01
 Provides:   perl(TArray) = %{version}
@@ -75,7 +84,9 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
+%if %{with test}
 ./Build test
+%endif
 
 %files
 %doc Changes examples LICENSE README TODO
@@ -87,3 +98,4 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %changelog
 * Tue May 14 2013 Petr Pisar ppi...@redhat.com 0.17-1
 - Specfile autogenerated by cpanspec 1.78.
+- Disable tests on x86
--
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 Syntax-Highlight-Engine-Kate-0.08.tar.gz uploaded to lookaside cache by psabata

2013-05-29 Thread Petr Šabata
A file has been added to the lookaside cache for 
perl-Syntax-Highlight-Engine-Kate:

717f969580fb5894c818fbbc627cc37e  Syntax-Highlight-Engine-Kate-0.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

[perl-Syntax-Highlight-Engine-Kate] 0.08 bump

2013-05-29 Thread Petr Šabata
commit 83e28175c462a2ff6e7fbc92191dcea5e59453b3
Author: Petr Šabata con...@redhat.com
Date:   Wed May 29 13:28:20 2013 +0200

0.08 bump

 .gitignore |1 +
 perl-Syntax-Highlight-Engine-Kate.spec |   43 ---
 sources|2 +-
 3 files changed, 30 insertions(+), 16 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f1ad643..68becda 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Syntax-Highlight-Engine-Kate-0.04-notdefined.patch
 Syntax-Highlight-Engine-Kate-0.04.tar.gz
 /Syntax-Highlight-Engine-Kate-0.06.tar.gz
 /Syntax-Highlight-Engine-Kate-0.07.tar.gz
+/Syntax-Highlight-Engine-Kate-0.08.tar.gz
diff --git a/perl-Syntax-Highlight-Engine-Kate.spec 
b/perl-Syntax-Highlight-Engine-Kate.spec
index f4db6a6..1821232 100644
--- a/perl-Syntax-Highlight-Engine-Kate.spec
+++ b/perl-Syntax-Highlight-Engine-Kate.spec
@@ -1,28 +1,42 @@
 Name:   perl-Syntax-Highlight-Engine-Kate
-Version:0.07
-Release:4%{?dist}
+Version:0.08
+Release:1%{?dist}
 Summary:Port to Perl of the syntax highlight engine of the Kate text 
editor
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Syntax-Highlight-Engine-Kate/
 Source0:
http://www.cpan.org/authors/id/S/SZ/SZABGAB/Syntax-Highlight-Engine-Kate-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl(inc::Module::Install) = 0.91
+BuildRequires:  perl
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(ExtUtils::MM_Unix)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(vars)
 # Run-time:
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(XML::Dumper)
+BuildRequires:  perl(XML::TokeParser)
+BuildRequires:  perl(warnings)
 # Tests only:
+BuildRequires:  perl(constant)
+BuildRequires:  perl(diagnostics)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(File::Find)
 BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(List::Util)
 BuildRequires:  perl(Term::ANSIColor)
 BuildRequires:  perl(Test::Differences) = 0.61
 BuildRequires:  perl(Test::More) = 0.88
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
-Requires:   perl(base)
+BuildRequires:  perl(Time::HiRes)
+Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 
 %description
 Syntax::Highlight::Engine::Kate is a port to perl of the syntax highlight
@@ -30,20 +44,16 @@ engine of the Kate text editor.
 
 %prep
 %setup -q -n Syntax-Highlight-Engine-Kate-%{version}
-rm -r inc/*
-rm -rf lib/Syntax/Highlight/Engine/Kate/Alerts
-find -type f -exec chmod -x {} +
-chmod 644 Changes REGISTERED
+find -type f -exec chmod -c -x {} +
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-make pure_install DESTDIR=$RPM_BUILD_ROOT OPTIMIZE=$RPM_OPT_FLAGS
-find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-%{_fixperms} $RPM_BUILD_ROOT/*
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} +
+%{_fixperms} %{buildroot}/*
 
 %check
 make test
@@ -54,6 +64,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed May 29 2013 Petr Šabata con...@redhat.com - 0.08-1
+- 0.08 bump
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/sources b/sources
index 3f60b2e..e75e113 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-4d107e62c44ce9306600d0fcf6fba0d2  Syntax-Highlight-Engine-Kate-0.07.tar.gz
+717f969580fb5894c818fbbc627cc37e  Syntax-Highlight-Engine-Kate-0.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 967829] perl-Syntax-Highlight-Engine-Kate-0.08 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967829

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Syntax-Highlight-Engin
   ||e-Kate-0.08-1.fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-05-29 07:38:39

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=HCZ7jmeoj7a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Bio-SamTools

2013-05-29 Thread buildsys


perl-Bio-SamTools has broken dependencies in the F-19 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-Bio-ASN1-EntrezGene

2013-05-29 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the F-19 tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
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-Bio-SamTools

2013-05-29 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-Bio-ASN1-EntrezGene

2013-05-29 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
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-package Storable

2013-05-29 Thread Petr Pisar
commit 6a13c105ec72d057b9474a32a7715c9f5a810385
Author: Petr Písař ppi...@redhat.com
Date:   Wed May 29 14:21:28 2013 +0200

Sub-package Storable

 perl.spec |   38 --
 1 files changed, 36 insertions(+), 2 deletions(-)
---
diff --git a/perl.spec b/perl.spec
index f2fa419..4ef5950 100644
--- a/perl.spec
+++ b/perl.spec
@@ -31,7 +31,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:273%{?dist}
+Release:274%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -1496,6 +1496,26 @@ really be high enough to warrant the use of a keyword, 
and the size so small
 such that being individual extensions would be wasteful.
 %endif
 
+%package Storable
+Summary:Persistence for Perl data structures
+Group:  Development/Libraries
+License:GPL+ or Artistic
+Epoch:  0
+Version:2.34
+Requires:   %perl_compat
+# Carp substitutes missing Log::Agent
+Requires:   perl(Carp)
+Requires:   perl(Config)
+# Fcntl is optional, but locking is good
+Requires:   perl(Fcntl)
+Requires:   perl(IO::File)
+Conflicts:  perl  4:5.16.3-274
+
+%description Storable
+The Storable package brings persistence to your Perl data structures
+containing scalar, array, hash or reference objects, i.e. anything that
+can be conveniently stored to disk and retrieved at a later time.
+
 %if %{dual_life} || %{rebuild_from_scratch}
 %package Sys-Syslog
 Summary:Perl interface to the UNIX syslog(3) calls
@@ -1830,7 +1850,8 @@ Requires:   perl-Params-Check, perl-Parse-CPAN-Meta, 
perl-Perl-OSType
 Requires:   perl-Pod-Checker, perl-Pod-Escapes, perl-Pod-LaTeX
 Requires:   perl-Pod-Parser, perl-Pod-Perldoc, perl-Pod-Usage
 Requires:   perl-podlators, perl-Pod-Simple
-Requires:   perl-Socket, perl-Sys-Syslog, perl-Term-UI, perl-Test-Harness,
+Requires:   perl-Socket, perl-Storable, perl-Sys-Syslog,
+Requires:   perl-Term-UI, perl-Test-Harness,
 Requires:   perl-Test-Simple
 Requires:   perl-Text-ParseWords, perl-Text-Soundex, perl-Thread-Queue
 Requires:   perl-Time-HiRes
@@ -2676,6 +2697,11 @@ sed \
 %exclude %{_mandir}/man3/List::Util*
 %exclude %{_mandir}/man3/Scalar::Util*
 
+# Storable
+%exclude %{archlib}/Storabe.pm
+%exclude %{archlib}/auto/Storable/
+%exclude %{_mandir}/man3/Storable.*
+
 # Sys-Syslog
 %exclude %{archlib}/Sys/Syslog.pm
 %exclude %{archlib}/auto/Sys/Syslog/
@@ -3434,6 +3460,11 @@ sed \
 %{_mandir}/man3/Socket.3*
 %endif
 
+%files Storable
+%{archlib}/Storable.pm
+%{archlib}/auto/Storable/
+%{_mandir}/man3/Storable.*
+
 %if %{dual_life} || %{rebuild_from_scratch}
 %files Term-UI
 %{privlib}/Term/UI/
@@ -3544,6 +3575,9 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Wed May 29 2013 Petr Pisar ppi...@redhat.com - 4:5.16.3-274
+- Sub-package Storable (bug #966865)
+
 * Mon May 13 2013 Petr Pisar ppi...@redhat.com - 4:5.16.3-273
 - Use lib64 directories on aarch64 architecture (bug #961900)
 
--
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 967830] perl-threads-lite-0.033 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967830

Bug 967830 depends on bug 968183, which changed state.

Bug 968183 Summary: Review Request: perl-experimental - Experimental features 
made easy
https://bugzilla.redhat.com/show_bug.cgi?id=968183

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |RAWHIDE

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=eZY0A2c47Xa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-POE-Component-Client-Ident] Initial import (#967945)

2013-05-29 Thread Petr Šabata
commit 0d931a3e0a5a4df21a37fc020a46e11a23974a18
Author: Petr Šabata con...@redhat.com
Date:   Wed May 29 16:55:50 2013 +0200

Initial import (#967945)

 .gitignore   |1 +
 perl-POE-Component-Client-Ident.spec |   83 ++
 sources  |1 +
 3 files changed, 85 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f3344f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/POE-Component-Client-Ident-1.16.tar.gz
diff --git a/perl-POE-Component-Client-Ident.spec 
b/perl-POE-Component-Client-Ident.spec
new file mode 100644
index 000..4acc627
--- /dev/null
+++ b/perl-POE-Component-Client-Ident.spec
@@ -0,0 +1,83 @@
+Name:  perl-POE-Component-Client-Ident
+Version:   1.16
+Release:   1%{?dist}
+Summary:   A component that provides non-blocking ident lookups to your 
sessions
+# FSF address issue, rt#85675
+License:   GPL+ or Artistic
+URL:   http://search.cpan.org/dist/POE-Component-Client-Ident
+Source0:   
http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/POE-Component-Client-Ident-%{version}.tar.gz
+BuildArch: noarch
+# build
+BuildRequires: perl
+BuildRequires: perl(base)
+BuildRequires: perl(Config)
+BuildRequires: perl(Cwd)
+BuildRequires: perl(ExtUtils::MakeMaker)
+BuildRequires: perl(ExtUtils::MM_Unix)
+BuildRequires: perl(File::Find)
+BuildRequires: perl(File::Path)
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(FindBin)
+BuildRequires: perl(strict)
+BuildRequires: perl(vars)
+BuildRequires: perl(warnings)
+# runtime
+BuildRequires: perl(Carp)
+BuildRequires: perl(POE)
+BuildRequires: perl(POE::Driver::SysRW)
+BuildRequires: perl(POE::Filter::Line)
+BuildRequires: perl(POE::Filter::Stream)
+BuildRequires: perl(POE::Session)
+BuildRequires: perl(POE::Wheel::ReadWrite)
+BuildRequires: perl(POE::Wheel::SocketFactory)
+BuildRequires: perl(Socket)
+# testsuite
+BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::POE::Server::TCP)
+Requires:  perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo $version))
+Requires:  perl(POE::Driver::SysRW)
+Requires:  perl(POE::Filter::Line)
+Requires:  perl(POE::Filter::Stream)
+Requires:  perl(POE::Wheel::ReadWrite)
+Requires:  perl(POE::Wheel::SocketFactory)
+Requires:  perl(POE::Session)
+
+%description
+This package ships with tree ident modules:
+
+POE::Component::Client::Ident is a POE component that provides
+non-blocking Ident lookup services to other components
+and sessions. The Ident protocol is described in RFC 1413
+http://www.faqs.org/rfcs/rfc1413.html.
+
+POE::Component::Client::Ident::Agent is a POE component that provides
+a single one shot look up of a username on the remote side of a TCP
+connection to other components and sessions, using the ident (auth/tap)
+protocol.
+
+POE::Filter::Ident takes lines of raw Ident input and turns
+them into weird little data structures, suitable for feeding to
+POE::Component::Client::Ident::Agent.
+
+%prep
+%setup -q -n POE-Component-Client-Ident-%{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 {} +
+
+%check
+make test
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*.3*
+
+%changelog
+* Tue May 28 2013 Petr Šabata con...@redhat.com - 1.16-1
+- Initial package
diff --git a/sources b/sources
index e69de29..523bec1 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+cfe5b1e3658df5455ed43526325b239a  POE-Component-Client-Ident-1.16.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-POE-Component-Client-Ident] Correct typos as pointed out in the review

2013-05-29 Thread Petr Šabata
commit 7b49f0217b00defaa0b8203a844e405e71233846
Author: Petr Šabata con...@redhat.com
Date:   Wed May 29 17:02:52 2013 +0200

Correct typos as pointed out in the review

 perl-POE-Component-Client-Ident.spec |8 
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/perl-POE-Component-Client-Ident.spec 
b/perl-POE-Component-Client-Ident.spec
index 4acc627..9f18482 100644
--- a/perl-POE-Component-Client-Ident.spec
+++ b/perl-POE-Component-Client-Ident.spec
@@ -1,7 +1,7 @@
 Name:  perl-POE-Component-Client-Ident
 Version:   1.16
 Release:   1%{?dist}
-Summary:   A component that provides non-blocking ident lookups to your 
sessions
+Summary:   A component that provides non-blocking Ident lookups to your 
sessions
 # FSF address issue, rt#85675
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/POE-Component-Client-Ident
@@ -43,15 +43,15 @@ Requires:  perl(POE::Wheel::SocketFactory)
 Requires:  perl(POE::Session)
 
 %description
-This package ships with tree ident modules:
+This package ships with three ident modules:
 
 POE::Component::Client::Ident is a POE component that provides
 non-blocking Ident lookup services to other components
 and sessions. The Ident protocol is described in RFC 1413
-http://www.faqs.org/rfcs/rfc1413.html.
+http://www.faqs.org/rfcs/rfc1413.html.
 
 POE::Component::Client::Ident::Agent is a POE component that provides
-a single one shot look up of a username on the remote side of a TCP
+a single one shot lookup of a username on the remote side of a TCP
 connection to other components and sessions, using the ident (auth/tap)
 protocol.
 
--
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-POE-Component-Client-Ident/f19] (2 commits) ...Correct typos as pointed out in the review

2013-05-29 Thread Petr Šabata
Summary of changes:

  0d931a3... Initial import (#967945) (*)
  7b49f02... Correct typos as pointed out in the 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

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

2013-05-29 Thread Orion Poplawski
commit dd7fc9d1969da740da8795b122c8250f9f00b243
Merge: 820ac96 fcd38d5
Author: Orion Poplawski or...@nwra.com
Date:   Wed May 29 09:24:44 2013 -0600

Merge remote-tracking branch 'origin/master' into el6

 .gitignore  |1 +
 abi-compliance-checker.spec |7 +--
 sources |2 +-
 3 files changed, 7 insertions(+), 3 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 remote-tracking branch 'origin/master' into el6

2013-05-29 Thread Orion Poplawski
Summary of changes:

  fcd38d5... Update to latest upstream release. (*)
  dd7fc9d... Merge remote-tracking branch 'origin/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 POE-Component-IRC-6.83.tar.gz uploaded to lookaside cache by psabata

2013-05-29 Thread Petr Šabata
A file has been added to the lookaside cache for perl-POE-Component-IRC:

e5ecb8808f1c4543ca0be0f2a1099e1f  POE-Component-IRC-6.83.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-POE-Component-IRC] 6.83 enhancement bump

2013-05-29 Thread Petr Šabata
commit 70fed0b598337e006b0da722e3df171af8cdb2a0
Author: Petr Šabata con...@redhat.com
Date:   Wed May 29 17:50:05 2013 +0200

6.83 enhancement bump

 .gitignore  |1 +
 perl-POE-Component-IRC.spec |   30 --
 sources |2 +-
 3 files changed, 22 insertions(+), 11 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 472889a..81c02be 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ POE-Component-IRC-6.14.tar.gz
 /POE-Component-IRC-6.80.tar.gz
 /POE-Component-IRC-6.81.tar.gz
 /POE-Component-IRC-6.82.tar.gz
+/POE-Component-IRC-6.83.tar.gz
diff --git a/perl-POE-Component-IRC.spec b/perl-POE-Component-IRC.spec
index b27cb30..7b2194a 100644
--- a/perl-POE-Component-IRC.spec
+++ b/perl-POE-Component-IRC.spec
@@ -11,13 +11,13 @@
 
 Name:   perl-POE-Component-IRC
 Summary:A POE component for building IRC clients
-Version:6.82
+Version:6.83
 Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/POE-Component-IRC-%{version}.tar.gz
 
 URL:http://search.cpan.org/dist/POE-Component-IRC
-Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl(base)
@@ -28,15 +28,21 @@ BuildRequires:  perl(Digest::MD5)
 BuildRequires:  perl(Encode::Guess)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(File::Glob)
 BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(IO::Handle)
-BuildRequires: perl(IRC::Utils) = 0.11
+BuildRequires:  perl(IRC::Utils) = 0.12
 BuildRequires:  perl(lib)
 BuildRequires:  perl(List::MoreUtils)
 BuildRequires:  perl(List::Util)
-BuildRequires:  perl(Object::Pluggable)
+BuildRequires:  perl(overload)
 BuildRequires:  perl(POE) = 1.287
+BuildRequires:  perl(POE::Component::Client::Ident::Agent)
 BuildRequires:  perl(POE::Component::Client::DNS)
+BuildRequires:  perl(POE::Component::SSLify)
 BuildRequires:  perl(POE::Component::Syndicator)
 BuildRequires:  perl(POE::Driver::SysRW)
 BuildRequires:  perl(POE::Filter)
@@ -49,12 +55,17 @@ BuildRequires:  perl(POE::Session)
 BuildRequires:  perl(POE::Wheel::FollowTail)
 BuildRequires:  perl(POE::Wheel::ReadWrite)
 BuildRequires:  perl(POE::Wheel::SocketFactory)
+BuildRequires:  perl(POSIX)
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Socket)
+BuildRequires:  perl(Socket::GetAddrInfo)
 BuildRequires:  perl(Socket6)
+BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::Differences)
 BuildRequires:  perl(Test::More) = 0.47
-Requires:   perl(Object::Pluggable)
+BuildRequires:  perl(vars)
+BuildRequires:  perl(warnings)
+Requires:   perl(IRC::Utils) = 0.12
 Requires:   perl(POE) = 1.311
 Requires:   perl(POE::Driver::SysRW)
 Requires:   perl(POE::Filter::IRCD) = 2.42
@@ -78,9 +89,7 @@ is to it. Cool, no?
 
 %prep
 %setup -q -n POE-Component-IRC-%{version}
-# Funky permissions...
-%{_fixperms} *
-chmod -c -x Changes README examples/*
+chmod -c -x examples/*
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -90,8 +99,6 @@ make %{?_smp_mflags}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
 %{_fixperms} %{buildroot}/*
-# remove errant execute bit from the .pm's
-find %{buildroot} -type f -name '*.pm' -exec chmod -x {} 2/dev/null ';'
 
 %check
 # tests require network access, disabled by default
@@ -103,6 +110,9 @@ find %{buildroot} -type f -name '*.pm' -exec chmod -x {} 
2/dev/null ';'
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue May 28 2013 Petr Šabata con...@redhat.com - 6.83-1
+- 6.83 enhancement bump
+
 * Mon Mar 11 2013 Petr Šabata con...@redhat.com - 6.82-1
 - 6.82 bump
 
diff --git a/sources b/sources
index e63938b..462c3fe 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-378a58a9f3e79d8e992c5552d5aad2eb  POE-Component-IRC-6.82.tar.gz
+e5ecb8808f1c4543ca0be0f2a1099e1f  POE-Component-IRC-6.83.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 967828] perl-POE-Component-IRC-6.83 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967828

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-POE-Component-IRC-6.83
   ||-1.fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-05-29 11:54:51

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=GVDYkX2pQoa=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 968423] New: perl-threads-1.87 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=968423

Bug ID: 968423
   Summary: perl-threads-1.87 is available
   Product: Fedora
   Version: rawhide
 Component: perl-threads
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com

Latest upstream release: 1.87
Current version in Fedora Rawhide: 1.86
URL: http://search.cpan.org/dist/threads/

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=w9Hms6wEHra=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 968425] New: perl-XML-Writer-0.622 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=968425

Bug ID: 968425
   Summary: perl-XML-Writer-0.622 is available
   Product: Fedora
   Version: rawhide
 Component: perl-XML-Writer
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
  Assignee: al...@users.sourceforge.net
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: al...@users.sourceforge.net,
perl-devel@lists.fedoraproject.org

Latest upstream release: 0.622
Current version in Fedora Rawhide: 0.621
URL: http://search.cpan.org/dist/XML-Writer/

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=xUErTwG8u6a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 967783] abi-compliance-checker-1.99 is available

2013-05-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967783

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

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
Package abi-compliance-checker-1.99-1.fc19:
* should fix your issue,
* was pushed to the Fedora 19 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing
abi-compliance-checker-1.99-1.fc19'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2013-9539/abi-compliance-checker-1.99-1.fc19
then log in and leave karma (feedback).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=TIc03Hdb16a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File IO-Socket-SSL-1.90.tar.gz uploaded to lookaside cache by pghmcfc

2013-05-29 Thread Paul Howarth
A file has been added to the lookaside cache for perl-IO-Socket-SSL:

0d0a15f5178edbbf84b7a8eef34b9a06  IO-Socket-SSL-1.90.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-IO-Socket-SSL] Update to 1.90

2013-05-29 Thread Paul Howarth
commit 805af9d5bf8956112e1eb3fde0b682c397ffd388
Author: Paul Howarth p...@city-fan.org
Date:   Wed May 29 22:14:04 2013 +0100

Update to 1.90

- New upstream release 1.90
  - Support more digests, especially SHA-2 (CPAN RT#85290)
  - Added support for easy SSL interception (man in the middle) based on 
ideas
found in mojo-mitm proxy
  - Make 1.46 the minimal required version for Net::SSLeay, because it
introduced lots of useful functions
- BR:/R: openssl ≥ 0.9.7e for P_ASN1_TIME_(get,set)_isotime in Net::SSLeay

 perl-IO-Socket-SSL.spec |   15 +--
 sources |2 +-
 2 files changed, 14 insertions(+), 3 deletions(-)
---
diff --git a/perl-IO-Socket-SSL.spec b/perl-IO-Socket-SSL.spec
index 0e057cc..e33dd24 100644
--- a/perl-IO-Socket-SSL.spec
+++ b/perl-IO-Socket-SSL.spec
@@ -1,5 +1,5 @@
 Name:  perl-IO-Socket-SSL
-Version:   1.89
+Version:   1.90
 Release:   1%{?dist}
 Summary:   Perl library for transparent SSL
 Group: Development/Libraries
@@ -8,6 +8,7 @@ URL:http://search.cpan.org/dist/IO-Socket-SSL/
 Source0:   
http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
+BuildRequires: openssl = 0.9.7e
 BuildRequires: perl(Carp)
 BuildRequires: perl(constant)
 BuildRequires: perl(Exporter)
@@ -17,7 +18,7 @@ BuildRequires:perl(IO::Socket)
 BuildRequires: perl(IO::Socket::INET)
 BuildRequires: perl(IO::Socket::INET6)
 BuildRequires: perl(Net::LibIDN)
-BuildRequires: perl(Net::SSLeay) = 1.21
+BuildRequires: perl(Net::SSLeay) = 1.46
 BuildRequires: perl(Scalar::Util)
 BuildRequires: perl(Socket)
 BuildRequires: perl(Socket6)
@@ -31,6 +32,7 @@ Requires: perl(IO::Socket::INET6), perl(Socket6)
 %endif
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:  perl(Net::LibIDN)
+Requires:  openssl = 0.9.7e
 
 %description
 This module is a true drop-in replacement for IO::Socket::INET that
@@ -66,6 +68,15 @@ rm -rf %{buildroot}
 %{_mandir}/man3/IO::Socket::SSL.3pm*
 
 %changelog
+* Wed May 29 2013 Paul Howarth p...@city-fan.org - 1.90-1
+- Update to 1.90
+  - Support more digests, especially SHA-2 (CPAN RT#85290)
+  - Added support for easy SSL interception (man in the middle) based on ideas
+found in mojo-mitm proxy
+  - Make 1.46 the minimal required version for Net::SSLeay, because it
+introduced lots of useful functions
+- BR:/R: openssl ≥ 0.9.7e for P_ASN1_TIME_(get,set)_isotime in Net::SSLeay
+
 * Tue May 14 2013 Paul Howarth p...@city-fan.org - 1.89-1
 - Update to 1.89
   - If IO::Socket::IP is used it should be at least version 0.20; otherwise we
diff --git a/sources b/sources
index 0e5b248..5c8146d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-282b18874f4266c96e78eb36c6d7e16a  IO-Socket-SSL-1.89.tar.gz
+0d0a15f5178edbbf84b7a8eef34b9a06  IO-Socket-SSL-1.90.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-IO-Socket-SSL] Created tag perl-IO-Socket-SSL-1.90-1.fc20

2013-05-29 Thread Paul Howarth
The lightweight tag 'perl-IO-Socket-SSL-1.90-1.fc20' was created pointing to:

 805af9d... Update to 1.90
--
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