[perl-Net-OpenSSH] Do not require specific architecture of openssh-clients

2012-06-04 Thread Petr Pisar
commit 96b40818247aa0ac8071b3ac7d8b07c082254079
Author: Petr Písař 
Date:   Mon Jun 4 09:37:22 2012 +0200

Do not require specific architecture of openssh-clients

The %_isa is undefined on noarch build root. Or it just gets random
value depending on machine koji picks up.

In general there is no reason why noarch package should require
specific ISA, especially in this case.

 perl-Net-OpenSSH.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Net-OpenSSH.spec b/perl-Net-OpenSSH.spec
index 647e9cd..5d015dc 100644
--- a/perl-Net-OpenSSH.spec
+++ b/perl-Net-OpenSSH.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-OpenSSH
 Version:0.57
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Perl SSH client package implemented on top of OpenSSH
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -11,7 +11,7 @@ BuildArch:  noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::More)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
-Requires:   openssh-clients%{?_isa}
+Requires:   openssh-clients
 
 # Needed to stop the sample scripts pulling in more perl packages.
 %{?perl_default_filter}
@@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 0.57-4
+- Do not require specific architecture of openssh-clients
+
 * Fri May 18 2012 Steve Traylen  - 0.57-3
 - Rebuild for bad _isa rpm macro.
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Locale-Codes] The POD tests do not run by default anymore

2012-06-04 Thread Petr Pisar
commit 3b406ea0d8ba12a07eddb42fa5d996242cf7fb1c
Author: Petr Písař 
Date:   Mon Jun 4 13:51:08 2012 +0200

The POD tests do not run by default anymore

 perl-Locale-Codes.spec |8 
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index 7490da3..4de35ae 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Codes
 Version:3.21
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Distribution of modules to handle locale codes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,9 +13,6 @@ BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(Test::More)
-# Optional tests
-BuildRequires:  perl(Test::Pod) >= 1.00
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.00
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Inject not detected module version
@@ -51,6 +48,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 3.21-2
+- The POD tests do not run by default anymore
+
 * Fri Mar 02 2012 Petr Pisar  - 3.21-1
 - 3.21 bump
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Locale-Codes] Switch build script from Module::Build to EU::MM

2012-06-04 Thread Petr Pisar
commit ac29bc901e2160f05756b9ed92629e955b2a44c4
Author: Petr Písař 
Date:   Mon Jun 4 13:53:25 2012 +0200

Switch build script from Module::Build to EU::MM

 perl-Locale-Codes.spec |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index 4de35ae..db9fd46 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -7,7 +7,7 @@ Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Locale-Codes/
 Source0:
http://www.cpan.org/authors/id/S/SB/SBECK/Locale-Codes-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # Tests
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
@@ -31,16 +31,17 @@ including languages, countries, currency, etc.
 chmod -x examples/*
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./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 -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
-./Build test
+make test
 
 %files
 %doc ChangeLog LICENSE README README.first examples
@@ -50,6 +51,7 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %changelog
 * Mon Jun 04 2012 Petr Pisar  - 3.21-2
 - The POD tests do not run by default anymore
+- Switch build script from Module::Build to EU::MM
 
 * Fri Mar 02 2012 Petr Pisar  - 3.21-1
 - 3.21 bump
--
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-YAML-Tiny] The POD tests do not run by default

2012-06-04 Thread Petr Pisar
commit 1faddf246fc30f013c54103280db5aa0d53c3f08
Author: Petr Písař 
Date:   Mon Jun 4 14:18:28 2012 +0200

The POD tests do not run by default

 perl-YAML-Tiny.spec |6 --
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/perl-YAML-Tiny.spec b/perl-YAML-Tiny.spec
index 6f02600..66eb441 100644
--- a/perl-YAML-Tiny.spec
+++ b/perl-YAML-Tiny.spec
@@ -1,6 +1,6 @@
 Name:   perl-YAML-Tiny
 Version:1.51
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Read/Write YAML files with as little code as possible
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -14,7 +14,6 @@ BuildRequires:  perl(File::Spec) >= 0.80
 BuildRequires:  perl(File::Spec::Functions)
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Test::More) >= 0.47
-BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(YAML)
 BuildRequires:  perl(YAML::Syck)
 Requires:   perl(Exporter)
@@ -50,6 +49,9 @@ make test AUTOMATED_TESTING=1
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 1.51-2
+- The POD tests do not run by default
+
 * Wed Mar 14 2012 Petr Šabata  - 1.51-1
 - 1.51 bump
 - Remove command macros
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Devel-Leak] Specify all dependencies

2012-06-04 Thread Petr Pisar
commit 8d14bc143063d8d86355547732d19ec554d7da18
Author: Petr Písař 
Date:   Mon Jun 4 14:23:22 2012 +0200

Specify all dependencies

 perl-Devel-Leak.spec |   10 +-
 1 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/perl-Devel-Leak.spec b/perl-Devel-Leak.spec
index e4c779f..128e915 100644
--- a/perl-Devel-Leak.spec
+++ b/perl-Devel-Leak.spec
@@ -1,6 +1,6 @@
 Name:   perl-Devel-Leak
 Version:0.03
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Utility for looking for perl objects that are not reclaimed
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -8,6 +8,11 @@ URL:http://search.cpan.org/dist/Devel-Leak/
 Source0:
http://www.cpan.org/authors/id/N/NI/NI-S/Devel-Leak-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(ExtUtils::MakeMaker)
+# Run-time:
+BuildRequires:  perl(base)
+BuildRequires:  perl(DynaLoader)
+# Tests:
+BuildRequires:  perl(Test)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -46,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 0.03-17
+- Specify all dependencies
+
 * Fri Jan 13 2012 Fedora Release Engineering  
- 0.03-16
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_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-Module-Build] Do not run PAR tests on bootstrap

2012-06-04 Thread Petr Pisar
commit 6963f57cb67159a6e48137be851ee50305dda3e1
Author: Petr Písař 
Date:   Mon Jun 4 14:40:01 2012 +0200

Do not run PAR tests on bootstrap

 perl-Module-Build.spec |   12 ++--
 1 files changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/perl-Module-Build.spec b/perl-Module-Build.spec
index 25ed5e2..44d8a0a 100644
--- a/perl-Module-Build.spec
+++ b/perl-Module-Build.spec
@@ -1,7 +1,7 @@
 Name:   perl-Module-Build
 Epoch:  2
 Version:0.40
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Build and install Perl modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -36,12 +36,16 @@ BuildRequires:  perl(IO::File)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Module::Metadata) >= 1.02
-BuildRequires:  perl(PAR::Dist)
 BuildRequires:  perl(Parse::CPAN::Meta)
 BuildRequires:  perl(Perl::OSType) >= 1
+# Optional tests:
+%if !%{defined perl_bootstrap}
+BuildRequires:  perl(Archive::Zip)
+BuildRequires:  perl(PAR::Dist)
 %if 0%{?fedora}  || 0%{?rhel} < 7
 BuildRequires:  perl(Pod::Readme)
 %endif
+%endif
 BuildRequires:  perl(Test::Harness) >= 3.16
 BuildRequires:  perl(Test::More) >= 0.49
 BuildRequires:  perl(version) >= 0.87
@@ -54,6 +58,7 @@ Requires:   perl(ExtUtils::Manifest) >= 1.54
 Requires:   perl(ExtUtils::Mkbootstrap)
 Requires:   perl(ExtUtils::ParseXS) >= 2.21
 Requires:   perl(Module::Metadata) >= 1.02
+# Keep PAR support optional (PAR::Dist)
 Requires:   perl(Perl::OSType) >= 1
 Requires:   perl(Test::Harness)
 
@@ -97,6 +102,9 @@ LANG=C TEST_SIGNATURE=1 MB_TEST_EXPERIMENTAL=1 ./Build test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 2:0.40-2
+- Do not run PAR tests on bootstrap
+
 * Thu May 31 2012 Petr Pisar  - 2:0.40-1
 - 0.40 bump
 - All reverse dependecies must require use 2-digit Module::Build version now
--
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 828203] New: Locale-Codes 3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828203

Bug ID: 828203
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   URL: http://search.cpan.org/~sbeck/Locale-Codes-3.22/
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: ppi...@redhat.com
   Summary: Locale-Codes 3.22 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: ppi...@redhat.com
  Type: Bug
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: ASSIGNED
 Component: perl-Locale-Codes
   Product: Fedora

New version 3.22 is available. The only change is a database of codes. Pushing
to older Fedoras is recommended.

-- 
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 828213] New: perl-Alien-SDL-1.434 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828213

Bug ID: 828213
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-Alien-SDL-1.434 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Alien-SDL
   Product: Fedora

Latest upstream release: 1.434
Current version in Fedora Rawhide: 1.430
URL: http://search.cpan.org/dist/Alien-SDL/

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.
--
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 828214] New: perl-Archive-Tar-1.88 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828214

Bug ID: 828214
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-Archive-Tar-1.88 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Archive-Tar
   Product: Fedora

Latest upstream release: 1.88
Current version in Fedora Rawhide: 1.84
URL: http://search.cpan.org/dist/Archive-Tar/

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.
--
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 828215] New: perl-Date-Manip-6.32 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828215

Bug ID: 828215
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-Date-Manip-6.32 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Date-Manip
   Product: Fedora

Latest upstream release: 6.32
Current version in Fedora Rawhide: 6.31
URL: http://search.cpan.org/dist/Date-Manip/

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.
--
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 828216] New: perl-DBD-CSV-0.35 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828216

Bug ID: 828216
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-DBD-CSV-0.35 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-DBD-CSV
   Product: Fedora

Latest upstream release: 0.35
Current version in Fedora Rawhide: 0.34
URL: http://search.cpan.org/dist/DBD-CSV/

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.
--
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 828217] New: perl-DBI-1.621 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828217

Bug ID: 828217
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com,
psab...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-DBI-1.621 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-DBI
   Product: Fedora

Latest upstream release: 1.621
Current version in Fedora Rawhide: 1.620
URL: http://search.cpan.org/dist/DBI/

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.
--
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 828220] New: perl-Glib-Object-Introspection-0.009 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828220

Bug ID: 828220
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: berra...@redhat.com,
perl-devel@lists.fedoraproject.org
  Assignee: berra...@redhat.com
   Summary: perl-Glib-Object-Introspection-0.009 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Glib-Object-Introspection
   Product: Fedora

Latest upstream release: 0.009
Current version in Fedora Rawhide: 0.008
URL: http://search.cpan.org/dist/Glib-Object-Introspection/

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.
--
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 828221] New: perl-Gtk2-1.244 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828221

Bug ID: 828221
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: perl-devel@lists.fedoraproject.org,
tcall...@redhat.com
  Assignee: tcall...@redhat.com
   Summary: perl-Gtk2-1.244 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Gtk2
   Product: Fedora

Latest upstream release: 1.244
Current version in Fedora Rawhide: 1.243
URL: http://search.cpan.org/dist/Gtk2/

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.
--
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 828222] New: perl-IO-Socket-IP-0.11 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828222

Bug ID: 828222
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com
  Assignee: psab...@redhat.com
   Summary: perl-IO-Socket-IP-0.11 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-IO-Socket-IP
   Product: Fedora

Latest upstream release: 0.11
Current version in Fedora Rawhide: 0.10
URL: http://search.cpan.org/dist/IO-Socket-IP/

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.
--
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 828224] New: perl-Locale-Codes-3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828224

Bug ID: 828224
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: ppi...@redhat.com
   Summary: perl-Locale-Codes-3.22 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Locale-Codes
   Product: Fedora

Latest upstream release: 3.22
Current version in Fedora Rawhide: 3.21
URL: http://search.cpan.org/dist/Locale-Codes/

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.
--
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 828225] New: perl-Log-Log4perl-1.37 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828225

Bug ID: 828225
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org
  Assignee: mmasl...@redhat.com
   Summary: perl-Log-Log4perl-1.37 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Log-Log4perl
   Product: Fedora

Latest upstream release: 1.37
Current version in Fedora Rawhide: 1.36
URL: http://search.cpan.org/dist/Log-Log4perl/

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.
--
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 746941] perl-Mojolicious-2.98 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=746941

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-Mojolicious-2.95 is|perl-Mojolicious-2.98 is
   |available   |available

-- 
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 746941] perl-Mojolicious-2.98 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=746941

--- Comment #62 from Upstream Release Monitoring 
 ---
Latest upstream release: 2.98
Current version in Fedora Rawhide: 2.95
URL: http://search.cpan.org/dist/Mojolicious/

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.
--
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 828226] New: perl-MooseX-MarkAsMethods-0.15 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828226

Bug ID: 828226
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: ppi...@redhat.com
   Summary: perl-MooseX-MarkAsMethods-0.15 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-MooseX-MarkAsMethods
   Product: Fedora

Latest upstream release: 0.15
Current version in Fedora Rawhide: 0.14
URL: http://search.cpan.org/dist/MooseX-MarkAsMethods/

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.
--
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 828227] New: perl-Net-SSH2-0.45 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828227

Bug ID: 828227
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com
  Assignee: psab...@redhat.com
   Summary: perl-Net-SSH2-0.45 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Net-SSH2
   Product: Fedora

Latest upstream release: 0.45
Current version in Fedora Rawhide: 0.44
URL: http://search.cpan.org/dist/Net-SSH2/

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.
--
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 828228] New: perl-ORLite-1.97 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828228

Bug ID: 828228
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-ORLite-1.97 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-ORLite
   Product: Fedora

Latest upstream release: 1.97
Current version in Fedora Rawhide: 1.96
URL: http://search.cpan.org/dist/ORLite/

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.
--
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 828230] New: perl-POE-Component-Client-HTTP-0.947 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828230

Bug ID: 828230
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com
  Assignee: psab...@redhat.com
   Summary: perl-POE-Component-Client-HTTP-0.947 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-POE-Component-Client-HTTP
   Product: Fedora

Latest upstream release: 0.947
Current version in Fedora Rawhide: 0.946
URL: http://search.cpan.org/dist/POE-Component-Client-HTTP/

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.
--
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 828231] New: perl-PPIx-Regexp-0.027 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828231

Bug ID: 828231
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: ppi...@redhat.com
   Summary: perl-PPIx-Regexp-0.027 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-PPIx-Regexp
   Product: Fedora

Latest upstream release: 0.027
Current version in Fedora Rawhide: 0.026
URL: http://search.cpan.org/dist/PPIx-Regexp/

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.
--
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 828232] New: perl-SQL-Library-0.0.4 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828232

Bug ID: 828232
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-SQL-Library-0.0.4 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-SQL-Library
   Product: Fedora

Latest upstream release: 0.0.4
Current version in Fedora Rawhide: 0.0.3
URL: http://search.cpan.org/dist/SQL-Library/

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.
--
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 828233] New: perl-Unicode-Casing-0.12 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828233

Bug ID: 828233
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: ppi...@redhat.com
   Summary: perl-Unicode-Casing-0.12 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Unicode-Casing
   Product: Fedora

Latest upstream release: 0.12
Current version in Fedora Rawhide: 0.08
URL: http://search.cpan.org/dist/Unicode-Casing/

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.
--
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 828234] New: perl-URI-Title-1.86 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828234

Bug ID: 828234
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com
  Assignee: psab...@redhat.com
   Summary: perl-URI-Title-1.86 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-URI-Title
   Product: Fedora

Latest upstream release: 1.86
Current version in Fedora Rawhide: 1.85
URL: http://search.cpan.org/dist/URI-Title/

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.
--
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 828235] New: perl-Wx-0.9909 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828235

Bug ID: 828235
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: perl-devel@lists.fedoraproject.org,
tcall...@redhat.com
  Assignee: tcall...@redhat.com
   Summary: perl-Wx-0.9909 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-Wx
   Product: Fedora

Latest upstream release: 0.9909
Current version in Fedora Rawhide: 0.9907
URL: http://search.cpan.org/dist/Wx/

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.
--
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 828236] New: perl-XML-LibXML-1.99 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828236

Bug ID: 828236
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: perl-XML-LibXML-1.99 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-XML-LibXML
   Product: Fedora

Latest upstream release: 1.99
Current version in Fedora Rawhide: 1.98
URL: http://search.cpan.org/dist/XML-LibXML/

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.
--
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 828238] New: perl-MIME-Charset-1.009.2 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828238

Bug ID: 828238
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: perl-devel@lists.fedoraproject.org,
xav...@bachelot.org
  Assignee: xav...@bachelot.org
   Summary: perl-MIME-Charset-1.009.2 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perl-MIME-Charset
   Product: Fedora

Latest upstream release: 1.009.2
Current version in Fedora Rawhide: 1.009.1
URL: http://search.cpan.org/dist/MIME-Charset/

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.
--
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 828240] New: perlbrew-0.43 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828240

Bug ID: 828240
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: iarn...@gmail.com, perl-devel@lists.fedoraproject.org
  Assignee: iarn...@gmail.com
   Summary: perlbrew-0.43 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perlbrew
   Product: Fedora

Latest upstream release: 0.43
Current version in Fedora Rawhide: 0.42
URL: http://search.cpan.org/dist/App-perlbrew/

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.
--
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 Archive-Tar-1.88.tar.gz uploaded to lookaside cache by psabata

2012-06-04 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Archive-Tar:

a14e171b70cd785301ceb9570ccb9c33  Archive-Tar-1.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-Archive-Tar] 1.88 bump

2012-06-04 Thread Petr Šabata
commit e309c6c6d201d58deff699bcb5bb9b4816b7bcfe
Author: Petr Šabata 
Date:   Mon Jun 4 15:29:23 2012 +0200

1.88 bump

 .gitignore|1 +
 perl-Archive-Tar.spec |   10 +++---
 sources   |2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 990409f..275656a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@ Archive-Tar-1.64.tar.gz
 /Archive-Tar-1.80.tar.gz
 /Archive-Tar-1.82.tar.gz
 /Archive-Tar-1.84.tar.gz
+/Archive-Tar-1.88.tar.gz
diff --git a/perl-Archive-Tar.spec b/perl-Archive-Tar.spec
index 1aa156e..55888d3 100644
--- a/perl-Archive-Tar.spec
+++ b/perl-Archive-Tar.spec
@@ -1,5 +1,5 @@
 Name:   perl-Archive-Tar
-Version:1.84
+Version:1.88
 Release:2%{?dist}
 Summary:A module for Perl manipulation of .tar files
 Group:  Development/Libraries
@@ -30,7 +30,7 @@ BuildRequires:  perl(Test::More)
 %if !%{defined perl_bootstrap}
 BuildRequires:  perl(Test::Pod)
 %endif
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(Compress::Zlib) >= 2.015
 Requires:   perl(IO::Zlib) >= 1.01
 
@@ -45,7 +45,7 @@ will also support compressed or gzipped tar files.
 %setup -q -n Archive-Tar-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
@@ -66,6 +66,10 @@ make test
 
 
 %changelog
+* Mon Jun 04 2012 Petr Šabata  - 1.88-2
+- 1.88 bump
+- Drop command macros
+
 * Fri Jun 01 2012 Petr Pisar  - 1.84-2
 - Omit optional Test::Pod tests on bootstrap
 
diff --git a/sources b/sources
index 3aa4b88..cd460bd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1c3b30a8eaa19e544fa70a33e826c852  Archive-Tar-1.84.tar.gz
+a14e171b70cd785301ceb9570ccb9c33  Archive-Tar-1.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

[Bug 828224] perl-Locale-Codes-3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828224

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |DUPLICATE
Last Closed||2012-06-04 09:43:26

--- Comment #1 from Petr Pisar  ---


*** This bug has been marked as a duplicate of bug 828203 ***

-- 
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 828203] Locale-Codes 3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828203

Petr Pisar  changed:

   What|Removed |Added

 CC||upstream-release-monitoring
   ||@fedoraproject.org

--- Comment #1 from Petr Pisar  ---
*** Bug 828224 has been marked as a duplicate of this bug. ***

-- 
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 828214] perl-Archive-Tar-1.88 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828214

Petr Šabata  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Archive-Tar-1.88-2.fc1
   ||8
 Resolution|--- |RAWHIDE
Last Closed||2012-06-04 09:43:49

-- 
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 828215] perl-Date-Manip-6.32 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828215

Petr Šabata  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.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Locale-Codes-3.22.tar.gz uploaded to lookaside cache by ppisar

2012-06-04 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Locale-Codes:

d574793c4f7a20329c12c70c7a4f862e  Locale-Codes-3.22.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-Locale-Codes] 3.22 bump

2012-06-04 Thread Petr Pisar
commit 861c74f50e8636a653b1eeb7f98e05ca32f739eb
Author: Petr Písař 
Date:   Mon Jun 4 15:51:19 2012 +0200

3.22 bump

 .gitignore |1 +
 perl-Locale-Codes.spec |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f2954f3..08f97d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /Locale-Codes-3.18.tar.gz
 /Locale-Codes-3.20.tar.gz
 /Locale-Codes-3.21.tar.gz
+/Locale-Codes-3.22.tar.gz
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index db9fd46..4cfe92d 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Codes
-Version:3.21
-Release:2%{?dist}
+Version:3.22
+Release:1%{?dist}
 Summary:Distribution of modules to handle locale codes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 3.22-1
+- 3.22 bump
+
 * Mon Jun 04 2012 Petr Pisar  - 3.21-2
 - The POD tests do not run by default anymore
 - Switch build script from Module::Build to EU::MM
diff --git a/sources b/sources
index 7532aad..ac1513c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-36ef968071c64f159ebb2ed68a5de2ae  Locale-Codes-3.21.tar.gz
+d574793c4f7a20329c12c70c7a4f862e  Locale-Codes-3.22.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 Date-Manip-6.32.tar.gz uploaded to lookaside cache by psabata

2012-06-04 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Date-Manip:

0d5c1ee2f75f6407fb1035e3535f650b  Date-Manip-6.32.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-Date-Manip] 6.32 bump

2012-06-04 Thread Petr Šabata
commit da56ded5c3e79cf7168b468bb86eb75eec0d29c8
Author: Petr Šabata 
Date:   Mon Jun 4 15:51:21 2012 +0200

6.32 bump

 .gitignore   |1 +
 perl-Date-Manip.spec |   15 ++-
 sources  |2 +-
 3 files changed, 12 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 840b793..0483e6e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@ Date-Manip-6.07.tar.gz
 /Date-Manip-6.25.tar.gz
 /Date-Manip-6.30.tar.gz
 /Date-Manip-6.31.tar.gz
+/Date-Manip-6.32.tar.gz
diff --git a/perl-Date-Manip.spec b/perl-Date-Manip.spec
index 01d0f12..f82a651 100644
--- a/perl-Date-Manip.spec
+++ b/perl-Date-Manip.spec
@@ -1,6 +1,6 @@
 Name:   perl-Date-Manip
-Version:6.31
-Release:2%{?dist}
+Version:6.32
+Release:1%{?dist}
 Summary:Date manipulation routines
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -12,7 +12,7 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(Encode)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(IO::File)
-BuildRequires:  perl(Module::Build) >= 0.36
+BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(YAML::Syck)
@@ -21,7 +21,7 @@ BuildRequires:  perl(Test::Inter)
 BuildRequires:  perl(Test::Pod) >= 1.00
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.00
 
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 # This package was formerly known as perl-DateManip
 Provides: perl-DateManip = %{version}-%{release}
@@ -42,7 +42,7 @@ to daylight saving time.
 chmod -x examples/*
 
 %build
-%{__perl} Build.PL installdirs=vendor
+perl Build.PL installdirs=vendor
 ./Build
 
 %install
@@ -60,6 +60,11 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 
 
 %changelog
+* Mon Jun 04 2012 Petr Šabata  - 6.32-1
+- 6.32 bump
+- Remove command macros
+- Don't require a specific version of Module::Build
+
 * Thu May 31 2012 Petr Pisar  - 6.31-2
 - Round Module::Build version to 2 digits
 
diff --git a/sources b/sources
index e744298..536eda9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d2eee5a84750a003d1f884cfbba7d7d7  Date-Manip-6.31.tar.gz
+0d5c1ee2f75f6407fb1035e3535f650b  Date-Manip-6.32.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-Locale-Codes/f17] (3 commits) ...3.22 bump

2012-06-04 Thread Petr Pisar
Summary of changes:

  3b406ea... The POD tests do not run by default anymore (*)
  ac29bc9... Switch build script from Module::Build to EU::MM (*)
  861c74f... 3.22 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-Locale-Codes/f16] The POD tests do not run by default anymore

2012-06-04 Thread Petr Pisar
commit e47333451a5824add23cdb619254b90f1370e736
Author: Petr Písař 
Date:   Mon Jun 4 13:51:08 2012 +0200

The POD tests do not run by default anymore

 perl-Locale-Codes.spec |8 
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index 98e0c84..75d6cdb 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Codes
 Version:3.21
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Distribution of modules to handle locale codes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,9 +13,6 @@ BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(Test::More)
-# Optional tests
-BuildRequires:  perl(Test::Pod) >= 1.00
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.00
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Inject not detected module version
@@ -51,6 +48,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 3.21-2
+- The POD tests do not run by default anymore
+
 * Fri Mar 02 2012 Petr Pisar  - 3.21-1
 - 3.21 bump
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Locale-Codes/f16] Switch build script from Module::Build to EU::MM

2012-06-04 Thread Petr Pisar
commit 5aa570a49a3c603cea7c1041ba52c83611a0
Author: Petr Písař 
Date:   Mon Jun 4 13:53:25 2012 +0200

Switch build script from Module::Build to EU::MM

 perl-Locale-Codes.spec |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index 75d6cdb..6f1d438 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -7,7 +7,7 @@ Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Locale-Codes/
 Source0:
http://www.cpan.org/authors/id/S/SB/SBECK/Locale-Codes-%{version}.tar.gz
 BuildArch:  noarch
-BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # Tests
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
@@ -31,16 +31,17 @@ including languages, countries, currency, etc.
 chmod -x examples/*
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./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 -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
-./Build test
+make test
 
 %files
 %doc ChangeLog LICENSE README README.first examples
@@ -50,6 +51,7 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %changelog
 * Mon Jun 04 2012 Petr Pisar  - 3.21-2
 - The POD tests do not run by default anymore
+- Switch build script from Module::Build to EU::MM
 
 * Fri Mar 02 2012 Petr Pisar  - 3.21-1
 - 3.21 bump
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Locale-Codes/f16] 3.22 bump

2012-06-04 Thread Petr Pisar
commit 67fc464ec1ec122593bf690424ec33c62158aa17
Author: Petr Písař 
Date:   Mon Jun 4 15:51:19 2012 +0200

3.22 bump

 .gitignore |1 +
 perl-Locale-Codes.spec |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f2954f3..08f97d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /Locale-Codes-3.18.tar.gz
 /Locale-Codes-3.20.tar.gz
 /Locale-Codes-3.21.tar.gz
+/Locale-Codes-3.22.tar.gz
diff --git a/perl-Locale-Codes.spec b/perl-Locale-Codes.spec
index 6f1d438..2a9a395 100644
--- a/perl-Locale-Codes.spec
+++ b/perl-Locale-Codes.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Codes
-Version:3.21
-Release:2%{?dist}
+Version:3.22
+Release:1%{?dist}
 Summary:Distribution of modules to handle locale codes
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 3.22-1
+- 3.22 bump
+
 * Mon Jun 04 2012 Petr Pisar  - 3.21-2
 - The POD tests do not run by default anymore
 - Switch build script from Module::Build to EU::MM
diff --git a/sources b/sources
index 7532aad..ac1513c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-36ef968071c64f159ebb2ed68a5de2ae  Locale-Codes-3.21.tar.gz
+d574793c4f7a20329c12c70c7a4f862e  Locale-Codes-3.22.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 828228] perl-ORLite-1.97 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828228

Petr Šabata  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.
--
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 828203] Locale-Codes 3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828203

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Locale-Codes-3.22-1.fc
   ||18

-- 
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 828203] Locale-Codes 3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828203

--- Comment #2 from Fedora Update System  ---
perl-Locale-Codes-3.22-1.fc17 has been submitted as an update for Fedora 17.
https://admin.fedoraproject.org/updates/perl-Locale-Codes-3.22-1.fc17

-- 
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 828215] perl-Date-Manip-6.32 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828215

Petr Šabata  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Date-Manip-6.32-1.fc18
 Resolution|--- |RAWHIDE
Last Closed||2012-06-04 10:03:41

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File ORLite-1.97.tar.gz uploaded to lookaside cache by psabata

2012-06-04 Thread Petr Šabata
A file has been added to the lookaside cache for perl-ORLite:

2f4c00437561072c6c6f5079e5a26638  ORLite-1.97.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-ORLite] 1.97 bump

2012-06-04 Thread Petr Šabata
commit 0b7c86ec7f505a06936c9d11e316d5fa7f3474cf
Author: Petr Šabata 
Date:   Mon Jun 4 16:03:24 2012 +0200

1.97 bump

 .gitignore   |1 +
 perl-ORLite.spec |8 ++--
 sources  |2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 172e5ef..e2a23ce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ ORLite-1.44.tar.gz
 /ORLite-1.90.tar.gz
 /ORLite-1.91.tar.gz
 /ORLite-1.96.tar.gz
+/ORLite-1.97.tar.gz
diff --git a/perl-ORLite.spec b/perl-ORLite.spec
index 757bc7a..b202bf2 100644
--- a/perl-ORLite.spec
+++ b/perl-ORLite.spec
@@ -1,6 +1,6 @@
 Name:   perl-ORLite
 Summary:Extremely light weight SQLite-specific ORM
-Version:1.96
+Version:1.97
 Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -26,7 +26,7 @@ BuildRequires:  perl(Class::XSAccessor::Array) >= 1.05
 BuildRequires:  perl(File::Spec::Functions)
 BuildRequires:  perl(Test::More) >= 0.47
 BuildRequires:  perl(Test::Script) >= 1.06
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(File::Remove) >= 1.40
 Requires:   perl(File::Temp) >= 0.20
 
@@ -74,6 +74,10 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Šabata  - 1.97-1
+- 1.97 bump
+- Drop command macros
+
 * Mon Feb 27 2012 Petr Pisar  - 1.96-1
 - 1.96 bump
 
diff --git a/sources b/sources
index 76b7488..cfb141e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0d2ce1679e7da739780dc4a22f47317b  ORLite-1.96.tar.gz
+2f4c00437561072c6c6f5079e5a26638  ORLite-1.97.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 828203] Locale-Codes 3.22 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828203

--- Comment #3 from Fedora Update System  ---
perl-Locale-Codes-3.22-1.fc16 has been submitted as an update for Fedora 16.
https://admin.fedoraproject.org/updates/perl-Locale-Codes-3.22-1.fc16

-- 
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 828228] perl-ORLite-1.97 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828228

Petr Šabata  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-ORLite-1.97-1.fc18
 Resolution|--- |RAWHIDE
Last Closed||2012-06-04 10:12:11

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File URI-Title-1.86.tar.gz uploaded to lookaside cache by psabata

2012-06-04 Thread Petr Šabata
A file has been added to the lookaside cache for perl-URI-Title:

c3bf145bdc908c2b0ba8a596b82f2976  URI-Title-1.86.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-URI-Title] 1.86 bump

2012-06-04 Thread Petr Šabata
commit ac961e47b9159b8bf802683ce184c424a3cb772d
Author: Petr Šabata 
Date:   Mon Jun 4 16:18:34 2012 +0200

1.86 bump

 .gitignore  |1 +
 perl-URI-Title.spec |   12 
 sources |2 +-
 3 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0c7a301..7b82a8e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /URI-Title-1.85.tar.gz
+/URI-Title-1.86.tar.gz
diff --git a/perl-URI-Title.spec b/perl-URI-Title.spec
index e7e9fea..50acaf1 100644
--- a/perl-URI-Title.spec
+++ b/perl-URI-Title.spec
@@ -1,5 +1,5 @@
 Name:   perl-URI-Title
-Version:1.85
+Version:1.86
 Release:1%{?dist}
 Summary:Get the titles of things on the web in a sensible way
 # Mentioned in URI::Title POD
@@ -25,7 +25,7 @@ BuildRequires:  perl(MP3::Info)
 BuildRequires:  perl(Test::More)
 Requires:   perl(File::Type) >= 0.22
 Requires:   perl(Module::Pluggable) >= 1.2
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(File::Type\\)
 %global __requires_exclude %__requires_exclude|^perl\\(Module::Pluggable\\)
@@ -48,7 +48,7 @@ So, let's solve these issues once.
 %setup -q -n URI-Title-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
@@ -66,5 +66,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
-* Fri Jan 20 2012 Petr Šabata  1.85-1
+* Mon Jun 04 2012 Petr Šabata  - 1.86-1
+- 1.86 bump
+- Drop command macros
+
+* Fri Jan 20 2012 Petr Šabata  - 1.85-1
 - Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index 99cc7b5..374 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0b0a8069325d4a5cd8307f9d779c2ca5  URI-Title-1.85.tar.gz
+c3bf145bdc908c2b0ba8a596b82f2976  URI-Title-1.86.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File MooseX-MarkAsMethods-0.15.tar.gz uploaded to lookaside cache by ppisar

2012-06-04 Thread Petr Pisar
A file has been added to the lookaside cache for perl-MooseX-MarkAsMethods:

7f8ed6a2e5ae4bb8e00e4952dc98078d  MooseX-MarkAsMethods-0.15.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-MooseX-MarkAsMethods] 0.15 bump

2012-06-04 Thread Petr Pisar
commit 0a404fd48ea4900c333e19b8b3de92835ffbdc7e
Author: Petr Písař 
Date:   Mon Jun 4 16:23:04 2012 +0200

0.15 bump

 .gitignore |1 +
 perl-MooseX-MarkAsMethods.spec |9 ++---
 sources|2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index ebdbcee..b575c0a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 MooseX-MarkAsMethods-0.10.tar.gz
 /MooseX-MarkAsMethods-0.13.tar.gz
 /MooseX-MarkAsMethods-0.14.tar.gz
+/MooseX-MarkAsMethods-0.15.tar.gz
diff --git a/perl-MooseX-MarkAsMethods.spec b/perl-MooseX-MarkAsMethods.spec
index eaa7882..e5e9c5d 100644
--- a/perl-MooseX-MarkAsMethods.spec
+++ b/perl-MooseX-MarkAsMethods.spec
@@ -1,6 +1,6 @@
 Name:   perl-MooseX-MarkAsMethods
-Version:0.14
-Release:2%{?dist}
+Version:0.15
+Release:1%{?dist}
 Summary:Mark overload code symbols as methods
 License:LGPLv2+
 Group:  Development/Libraries
@@ -46,11 +46,14 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 make test
 
 %files
-%doc Changes LICENSE README
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 0.15-1
+- 0.15 bump
+
 * Fri Jan 13 2012 Fedora Release Engineering  
- 0.14-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
diff --git a/sources b/sources
index 158f48d..96f4da5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d822f8063e5850bc512c8c4f73b61210  MooseX-MarkAsMethods-0.14.tar.gz
+7f8ed6a2e5ae4bb8e00e4952dc98078d  MooseX-MarkAsMethods-0.15.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-OpenSSH/f17] (2 commits) ...Do not require specific architecture of openssh-clients

2012-06-04 Thread stevetraylen
Summary of changes:

  b7ba293... Rebuild for bad _isa rpm macro. (*)
  96b4081... Do not require specific architecture of openssh-clients (*)

(*) 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-Net-OpenSSH] Created tag perl-Net-OpenSSH-0.57-4.fc17

2012-06-04 Thread stevetraylen
The unsigned tag 'perl-Net-OpenSSH-0.57-4.fc17' was created.

Tagger: Steve Traylen 
Date: Mon Jun 4 18:15:28 2012 +0200

Do not require specific architecture of openssh-clients

Changes since the last tag 'perl-Net-OpenSSH-0.57-3.fc18':

Petr Písař (1):
  Do not require specific architecture of openssh-clients
--
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-OpenSSH/f16] (2 commits) ...Do not require specific architecture of openssh-clients

2012-06-04 Thread stevetraylen
Summary of changes:

  b7ba293... Rebuild for bad _isa rpm macro. (*)
  96b4081... Do not require specific architecture of openssh-clients (*)

(*) 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-Net-OpenSSH] Created tag perl-Net-OpenSSH-0.57-4.fc16

2012-06-04 Thread stevetraylen
The unsigned tag 'perl-Net-OpenSSH-0.57-4.fc16' was created.

Tagger: Steve Traylen 
Date: Mon Jun 4 18:15:58 2012 +0200

Do not require specific architecture of openssh-clients

Changes since the last tag 'perl-Net-OpenSSH-0.57-3.fc18':

Petr Písař (1):
  Do not require specific architecture of openssh-clients
--
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-OpenSSH/el6] (2 commits) ...Do not require specific architecture of openssh-clients

2012-06-04 Thread stevetraylen
Summary of changes:

  b7ba293... Rebuild for bad _isa rpm macro. (*)
  96b4081... Do not require specific architecture of openssh-clients (*)

(*) 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-Net-OpenSSH] Created tag perl-Net-OpenSSH-0.57-4.el6

2012-06-04 Thread stevetraylen
The unsigned tag 'perl-Net-OpenSSH-0.57-4.el6' was created.

Tagger: Steve Traylen 
Date: Mon Jun 4 18:16:28 2012 +0200

Do not require specific architecture of openssh-clients

Changes since the last tag 'perl-Net-OpenSSH-0.57-3.fc18':

Petr Písař (1):
  Do not require specific architecture of openssh-clients
--
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-OpenSSH] Created tag perl-Net-OpenSSH-0.57-4.el5

2012-06-04 Thread stevetraylen
The unsigned tag 'perl-Net-OpenSSH-0.57-4.el5' was created.

Tagger: Steve Traylen 
Date: Mon Jun 4 18:16:54 2012 +0200

Do not require specific architecture of openssh-clients

Changes since the last tag 'perl-Net-OpenSSH-0.57-3.fc18':

Petr Písař (1):
  Do not require specific architecture of openssh-clients
--
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-OpenSSH/el5] (2 commits) ...Do not require specific architecture of openssh-clients

2012-06-04 Thread stevetraylen
Summary of changes:

  b7ba293... Rebuild for bad _isa rpm macro. (*)
  96b4081... Do not require specific architecture of openssh-clients (*)

(*) 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 PPIx-Regexp-0.027.tar.gz uploaded to lookaside cache by ppisar

2012-06-04 Thread Petr Pisar
A file has been added to the lookaside cache for perl-PPIx-Regexp:

fdd89a2c9132f30ed0c50e53affe6344  PPIx-Regexp-0.027.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-PPIx-Regexp] 0.027 bump

2012-06-04 Thread Petr Pisar
commit e41e1d7f4f3f3c71f6d61dddf77d0e1a974eb3f8
Author: Petr Písař 
Date:   Mon Jun 4 16:37:22 2012 +0200

0.027 bump

 .gitignore|1 +
 perl-PPIx-Regexp.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c269d6d..573d165 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@ PPIx-Regexp-0.007.tar.gz
 /PPIx-Regexp-0.024.tar.gz
 /PPIx-Regexp-0.025.tar.gz
 /PPIx-Regexp-0.026.tar.gz
+/PPIx-Regexp-0.027.tar.gz
diff --git a/perl-PPIx-Regexp.spec b/perl-PPIx-Regexp.spec
index c094bfc..dec5567 100644
--- a/perl-PPIx-Regexp.spec
+++ b/perl-PPIx-Regexp.spec
@@ -1,5 +1,5 @@
 Name:   perl-PPIx-Regexp
-Version:0.026
+Version:0.027
 Release:1%{?dist}
 Summary:Represent a regular expression of some sort
 License:GPL+ or Artistic
@@ -46,6 +46,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Petr Pisar  - 0.027-1
+- 0.027 bump
+
 * Mon Feb 27 2012 Petr Pisar  - 0.026-1
 - 0.026 bump
 
diff --git a/sources b/sources
index 6d08e7b..e352102 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-931e98dc04fce70918839760132a537f  PPIx-Regexp-0.026.tar.gz
+fdd89a2c9132f30ed0c50e53affe6344  PPIx-Regexp-0.027.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-URI-Title/f17] 1.86 bump

2012-06-04 Thread Petr Šabata
Summary of changes:

  ac961e4... 1.86 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

[Bug 828234] perl-URI-Title-1.86 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828234

--- Comment #1 from Fedora Update System  ---
perl-URI-Title-1.86-1.fc17 has been submitted as an update for Fedora 17.
https://admin.fedoraproject.org/updates/perl-URI-Title-1.86-1.fc17

-- 
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 828233] perl-Unicode-Casing-0.12 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828233

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Unicode-Casing-0.12-1.
   ||fc18
 Resolution|--- |RAWHIDE
Last Closed||2012-06-04 10:55:42

-- 
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 828236] perl-XML-LibXML-1.99 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828236

Petr Šabata  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.
--
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 XML-LibXML-1.99.tar.gz uploaded to lookaside cache by psabata

2012-06-04 Thread Petr Šabata
A file has been added to the lookaside cache for perl-XML-LibXML:

271eae7f79871f83d4d4b01f841bfd66  XML-LibXML-1.99.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-XML-LibXML] 1.99 bump

2012-06-04 Thread Petr Šabata
commit cb4942ef3d056dcac227f1794a3127b7a8443bac
Author: Petr Šabata 
Date:   Mon Jun 4 17:17:27 2012 +0200

1.99 bump

 .gitignore   |1 +
 perl-XML-LibXML.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 02db6fa..fff0ae0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ XML-LibXML-1.70.tar.gz
 /XML-LibXML-1.96.tar.gz
 /XML-LibXML-1.97.tar.gz
 /XML-LibXML-1.98.tar.gz
+/XML-LibXML-1.99.tar.gz
diff --git a/perl-XML-LibXML.spec b/perl-XML-LibXML.spec
index 2256672..c439b1a 100644
--- a/perl-XML-LibXML.spec
+++ b/perl-XML-LibXML.spec
@@ -3,7 +3,7 @@ Name:   perl-XML-LibXML
 # https://bugzilla.redhat.com/show_bug.cgi?id=469480
 # it might not be needed anymore
 # this module is maintained, the other is not
-Version:1.98
+Version:1.99
 Release:1%{?dist}
 Epoch:  1
 Summary:Perl interface to the libxml2 library
@@ -102,6 +102,9 @@ fi
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Jun 04 2012 Petr Šabata  - 1:1.99-1
+- 1.99 bump, test updates
+
 * Mon May 28 2012 Jitka Plesnikova  - 1:1.98-1
 - 1.98 bump
 
diff --git a/sources b/sources
index e8d86f9..66b0844 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-78c2e293d02e92ca99b07e9a768380ca  XML-LibXML-1.98.tar.gz
+271eae7f79871f83d4d4b01f841bfd66  XML-LibXML-1.99.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 828236] perl-XML-LibXML-1.99 is available

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828236

Petr Šabata  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-XML-LibXML-1.99-1.fc18
 Resolution|--- |RAWHIDE
Last Closed||2012-06-04 11:28:44

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File MIME-Charset-1.009.2.tar.gz uploaded to lookaside cache by xavierb

2012-06-04 Thread Xavier Bachelot
A file has been added to the lookaside cache for perl-MIME-Charset:

5e08a317206a84f3bf2e9e40a6bb2bb1  MIME-Charset-1.009.2.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-MIME-Charset] 1.009.2

2012-06-04 Thread Xavier Bachelot
commit 016a9e75956f2ec45aee612d6bf082b999b2d6e5
Author: Xavier Bachelot 
Date:   Mon Jun 4 21:25:17 2012 +0200

1.009.2

 .gitignore |1 +
 perl-MIME-Charset.spec |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f330693..63baa51 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ MIME-Charset-1.006.2.tar.gz
 /MIME-Charset-1.008.1.tar.gz
 /MIME-Charset-1.008.2.tar.gz
 /MIME-Charset-1.009.1.tar.gz
+/MIME-Charset-1.009.2.tar.gz
diff --git a/perl-MIME-Charset.spec b/perl-MIME-Charset.spec
index 8929ca8..2810c1a 100644
--- a/perl-MIME-Charset.spec
+++ b/perl-MIME-Charset.spec
@@ -1,6 +1,6 @@
 Name:   perl-MIME-Charset
-Version:1.009.1
-Release:5%{?dist}
+Version:1.009.2
+Release:1%{?dist}
 Summary:Charset Informations for MIME
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 04 2012 Xavier Bachelot  1.009.2-1
+- Update to 1.009.2.
+
 * Fri Jan 06 2012 Xavier Bachelot  1.009.1-5
 - Add BR: for perl(Encode::EUCJPASCII) for better test coverage.
 
diff --git a/sources b/sources
index 2baae67..781c4ec 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ee982e66423738b1b13f45cdde4fe1cf  MIME-Charset-1.009.1.tar.gz
+5e08a317206a84f3bf2e9e40a6bb2bb1  MIME-Charset-1.009.2.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 828512] CVE-2011-5092 rt3: remote arbitrary code execution and privilege elevation flaw

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828512

Vincent Danen  changed:

   What|Removed |Added

 CC||mma...@redhat.com,
   ||perl-devel@lists.fedoraproj
   ||ect.org,
   ||rc040...@freenet.de,
   ||trem...@tremble.org.uk,
   ||xav...@bachelot.org

-- 
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 828517] New: CVE-2011-5092 rt3: remote arbitrary code execution and privilege elevation flaw [epel-6]

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828517

Bug ID: 828517
  Keywords: Security, SecurityTracking
Blocks: 828512
QA Contact: extras...@fedoraproject.org
  Severity: high
   Version: el6
  Priority: high
CC: mma...@redhat.com, perl-devel@lists.fedoraproject.org,
trem...@tremble.org.uk, xav...@bachelot.org
  Assignee: xav...@bachelot.org
   Summary: CVE-2011-5092 rt3: remote arbitrary code execution and
privilege elevation flaw [epel-6]
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Linux
  Reporter: vda...@redhat.com
  Type: ---
 Documentation: ---
  Hardware: All
Mount Type: ---
Status: NEW
 Component: rt3
   Product: Fedora EPEL


This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected Fedora
versions.

For comments that are specific to the vulnerability please use bugs filed
against "Security Response" product referenced in the "Blocks" field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When creating a Bodhi update request, please include this bug ID and the
bug IDs of this bug's parent bugs filed against the "Security Response"
product (the top-level CVE bugs).  Please mention the CVE IDs being fixed
in the RPM changelog when available.

Bodhi update submission link:
https://admin.fedoraproject.org/updates/new/?type_=security&bugs=828512

epel-6 tracking bug for rt3: see blocks bug list for full details of the
security issue(s).

[bug automatically created by: add-tracking-bugs]

-- 
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 828512] CVE-2011-5092 rt3: remote arbitrary code execution and privilege elevation flaw

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828512

Vincent Danen  changed:

   What|Removed |Added

 Depends On||828517

--- Comment #1 from Vincent Danen  ---
Created rt3 tracking bugs for this issue

Affects: epel-6 [bug 828517]

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File abi-compliance-checker-1.97.7.tar.gz uploaded to lookaside cache by hobbes1069

2012-06-04 Thread Richard Shaw
A file has been added to the lookaside cache for abi-compliance-checker:

dd4d97ea93462e71c04da4fa36998633  abi-compliance-checker-1.97.7.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

[abi-compliance-checker] Update to latest upstream release.

2012-06-04 Thread Richard Shaw
commit 691c0192f6be865900011e288d0b71a6e701bfb2
Author: Richard M. Shaw 
Date:   Mon Jun 4 16:22:32 2012 -0500

Update to latest upstream release.

 .gitignore  |1 +
 abi-compliance-checker.spec |5 -
 sources |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7ac4130..7231968 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /abi-compliance-checker-1.96.1.tar.gz
 /abi-compliance-checker-1.97.4.tar.gz
 /abi-compliance-checker-1.97.5.tar.gz
+/abi-compliance-checker-1.97.7.tar.gz
diff --git a/abi-compliance-checker.spec b/abi-compliance-checker.spec
index 2e9844a..ad57d08 100644
--- a/abi-compliance-checker.spec
+++ b/abi-compliance-checker.spec
@@ -1,5 +1,5 @@
 Name:   abi-compliance-checker
-Version:1.97.5
+Version:1.97.7
 Release:1%{?dist}
 Summary:An ABI Compliance Checker
 
@@ -39,6 +39,9 @@ perl Makefile.pl -install --prefix=%{_prefix} 
--destdir=%{buildroot}
 
 
 %changelog
+* Mon Jun 04 2012 Richard Shaw  - 1.97.7-1
+- Update to latest upstream release.
+
 * Tue May 15 2012 Richard Shaw  - 1.97.5-1
 - Update to latest upstream release.
 
diff --git a/sources b/sources
index 492bb8e..902e7e8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ae95d6c4d0b52f7186abf951af7b5dcf  abi-compliance-checker-1.97.5.tar.gz
+dd4d97ea93462e71c04da4fa36998633  abi-compliance-checker-1.97.7.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

[rt3/el6] (17 commits) ...merge with Fedora master (3.8.13)

2012-06-04 Thread Xavier Bachelot
Summary of changes:

  00db16f... Perl mass rebuild (*)
  217e6ff... RPM 4.9 dependency filtering added (*)
  8411701... use perl_default filter, not filter_setup (*)
  82ec733... Fix broken dependency filtering having been added in *-4. S (*)
  9c99e50... Upstream update. (*)
  e345589... Remove redundant R: config(rt3), Remove P: config(rt3). Rew (*)
  2b1b581... Fix typo in filter rules. Add lexdir, manualdir, RT3_LEXDIR (*)
  3917e42... Rename rpmbuild option with_tests into with_runtests. (*)
  f177ee5... Rewrite *-tests package (Don't use tests macros). (*)
  1b6b3e3... Fix changelog entry typo. (*)
  271bb9e... Misc. specfile improvements. (*)
  e3c498c... Fix typo. (*)
  9e46a6d... Fix shebangs. (*)
  24e4097... New. (*)
  878d730... Upstream update. (*)
  395eb05... Upstream update. (*)
  38cb08b... merge with Fedora master (3.8.13)

(*) 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

[rt3/el6: 17/17] merge with Fedora master (3.8.13)

2012-06-04 Thread Xavier Bachelot
commit 38cb08bc331c2bc82af60e161db4fbc0c93adf6e
Merge: fa04589 395eb05
Author: Xavier Bachelot 
Date:   Mon Jun 4 23:42:31 2012 +0200

merge with Fedora master (3.8.13)

 .gitignore |5 +-
 README.tests   |   12 +
 rt-3.8.10-Makefile.diff => rt-3.8.11-Makefile.diff |0
 rt-3.8.10-config.diff => rt-3.8.11-config.diff |0
 rt-3.8.11-shebang.diff |  360 
 ...encies.diff => rt-3.8.11-test-dependencies.diff |0
 rt3.spec   |  225 +
 sources|2 +-
 8 files changed, 539 insertions(+), 65 deletions(-)
---
diff --cc rt3.spec
index 00bfeb8,3b4aa32..1680605
--- a/rt3.spec
+++ b/rt3.spec
@@@ -19,28 -19,29 +19,33 @@@
  # --with devel_mode/--without devel_mode
  # enable/disable building/installing devel files
  # Default: --with
++%if 0%{?fedora}
  %bcond_without devel_mode
++%else
++%bcond_with devel_mode
++%endif
  
  # --with gpg/--without gpg
  # enable/disable building gpg support
  # Default: --without
  %bcond_with gpg
  
- # --with tests
+ # --with runtests
  # run testsuite when building the rpm
  # Default: without (doesn't work in chroots.)
- %bcond_with tests
+ %bcond_with runtests
  
- %define RT3_BINDIR%{_sbindir}
- %define RT3_LIBDIR%{perl_vendorlib}
- %define RT3_WWWDIR%{_datadir}/rt3/html
- %define RT3_LOGDIR%{_localstatedir}/log/rt3
- %define RT3_CACHEDIR  %{_localstatedir}/cache/rt3
- %define RT3_LOCALSTATEDIR %{_localstatedir}/lib/rt3
+ %global RT3_BINDIR%{_sbindir}
+ %global RT3_LIBDIR%{perl_vendorlib}
+ %global RT3_WWWDIR%{_datadir}/rt3/html
+ %global RT3_LEXDIR%{_datadir}/rt3/po
+ %global RT3_LOGDIR%{_localstatedir}/log/rt3
+ %global RT3_CACHEDIR  %{_localstatedir}/cache/rt3
+ %global RT3_LOCALSTATEDIR %{_localstatedir}/lib/rt3
  
  Name: rt3
- Version:  3.8.10
- Release:  2%{?dist}.1
+ Version:  3.8.13
 -Release:  1%{?dist}
++Release:  1%{?dist}.1
  Summary:  Request tracker 3
  
  Group:Applications/Internet
@@@ -448,9 -495,55 +499,61 @@@ f
  %endif
  
  %changelog
++* Mon Jun 04 2012 Xavier Bachelot  - 3.8.13-1.1
++- Default to non-devel mode for non-Fedora builds.
++
+ * Sat Jun 02 2012 Ralf Corsépius  - 3.8.13-1
+ - Upstream update.
+ 
+ * Tue May 22 2012 Ralf Corsépius  - 3.8.12-1
+ - Upstream update.
+ - Address various CVEs (BZ 824082).
+ 
+ * Tue Feb 02 2012 Ralf Corsépius  - 3.8.11-7
+ - Fix shebangs.
+ - Make testsuite files executable (enables rpm's perl module dep tracking).
+ - Build *-tests, iff devel_mode was given.
+ - Misc. specfile massaging.
+ 
+ * Tue Jan 31 2012 Ralf Corsépius  - 3.8.11-6
+ - Misc. specfile improvements.
+ 
+ * Tue Jan 31 2012 Ralf Corsépius  - 3.8.11-5
+ - Rewrite *-tests package (Don't use tests macros).
+ 
+ * Mon Jan 30 2012 Ralf Corsépius  - 3.8.11-4
+ - Rename rpmbuild option with_tests into with_runtests.
+ - Add rt3-tests subpackage.
+ - Add README.tests.
+ - Remove removal of ${RT3_LIBDIR}/t (Fixed by upstream).
+ - Rework R:/BR:.
+ - Use %%{__rm} instead of /bin/rm.
+ - Misc minor spec file cleanup.
+ 
+ * Wed Jan 18 2012 Ralf Corsépius  - 3.8.11-3
+ - Fix typo in filter rules.
+ - Add lexdir, manualdir, RT3_LEXDIR.
+ 
+ * Mon Jan 16 2012 Ralf Corsépius  - 3.8.11-2
+ - Remove redundant R: config(rt3), Remove P: config(rt3).
+ - Rewrite filter rules.
+ 
+ * Sun Jan 15 2012 Ralf Corsépius  - 3.8.11-1
+ - Upstream update.
+ 
+ * Tue Jan 10 2012 Ralf Corsépius  - 3.8.10-5
+ - Fix broken dependency filtering having been added in *-4.
+ - Spec file cleanup.
+ 
+ * Mon Jul 25 2011 Petr Pisar  - 3.8.10-4
+ - RPM 4.9 dependency filtering added
+ 
+ * Wed Jul 20 2011 Petr Sabata  - 3.8.10-3
+ - Perl mass rebuild
+ 
 +* Tue May 03 2011 Xavier Bachelot  - 3.8.10-2.1
 +- Add BR: perl(Digest::SHA).
 +
  * Sat Apr 16 2011 Ralf Corsépius  - 3.8.10-2
  - Work-around rpm's depgenerator defect: 
Filter Requires: perl(DBIx::SearchBuilder::Handle::).
--
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/f17] Update to latest upstream release.

2012-06-04 Thread Richard Shaw
Summary of changes:

  691c019... Update to latest upstream release. (*)

(*) 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/f16] Update to latest upstream release.

2012-06-04 Thread Richard Shaw
Summary of changes:

  691c019... Update to latest upstream release. (*)

(*) 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/f15] Update to latest upstream release.

2012-06-04 Thread Richard Shaw
Summary of changes:

  691c019... Update to latest upstream release. (*)

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

[Bug 823390] Please upgrade to FC16's perl-URI to >= 1.59

2012-06-04 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=823390

--- Comment #3 from Ralf Corsepius  ---
Ping?

This package now seems to be in testing for over 2 weeks, but still hasn't
landed in stable.

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