File Time-Local-1.2300.tar.gz uploaded to lookaside cache by ppisar

2013-03-18 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Time-Local:

68e1be54c151cf131f9d4168b3e662f9  Time-Local-1.2300.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-Time-Local] Import

2013-03-18 Thread Petr Pisar
commit af2ec26ce1a42b16e7e5944dd442bed091f051cf
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 18 08:18:04 2013 +0100

Import

 .gitignore   |1 +
 perl-Time-Local.spec |   56 ++
 sources  |1 +
 3 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d83ea2c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Time-Local-1.2300.tar.gz
diff --git a/perl-Time-Local.spec b/perl-Time-Local.spec
new file mode 100644
index 000..72e7903
--- /dev/null
+++ b/perl-Time-Local.spec
@@ -0,0 +1,56 @@
+Name:   perl-Time-Local
+Version:1.2300
+Release:1%{?dist}
+Summary:Efficiently compute time from local and GMT time
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Time-Local/
+Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/Time-Local-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Config)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(vars)
+# Tests:
+BuildRequires:  perl(Test::More) = 0.88
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+#Requires:   perl(Carp)
+#Requires:   perl(Config)
+
+%description
+This module provides functions that are the inverse of built-in perl functions
+localtime() and gmtime(). They accept a date as a six-element array, and
+return the corresponding time(2) value in seconds since the system epoch
+(Midnight, January 1, 1970 GMT on Unix, for example). This value can be
+positive or negative, though POSIX only requires support for positive values,
+so dates before the system's epoch may not work on all operating systems.
+
+%prep
+%setup -q -n Time-Local-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 15 2013 Petr Pisar ppi...@redhat.com 1.2300-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..8c6f9a8 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+68e1be54c151cf131f9d4168b3e662f9  Time-Local-1.2300.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-Maketext-Gettext/f19] Add patch to convert gettext %1 to maketext [_1]

2013-03-18 Thread Rüdiger Landmann
commit cbffe79b9866ef13766915695542650239b385c2
Author: Ruediger Landmann r.landm...@redhat.com
Date:   Mon Mar 18 17:39:31 2013 +1000

Add patch to convert gettext %1 to maketext [_1]

 gettexttomakettext.patch  |   14 ++
 perl-Locale-Maketext-Gettext.spec |7 ++-
 2 files changed, 20 insertions(+), 1 deletions(-)
---
diff --git a/gettexttomakettext.patch b/gettexttomakettext.patch
new file mode 100644
index 000..d6e71e0
--- /dev/null
+++ b/gettexttomakettext.patch
@@ -0,0 +1,14 @@
+diff -ru Locale-Maketext-Gettext-1.27/lib/Locale/Maketext/Gettext.pm 
Locale-Maketext-Gettext-1.27-patched/lib/Locale/Maketext/Gettext.pm
+--- Locale-Maketext-Gettext-1.27/lib/Locale/Maketext/Gettext.pm
2009-04-28 03:46:23.0 +1000
 Locale-Maketext-Gettext-1.27-patched/lib/Locale/Maketext/Gettext.pm
2013-03-08 12:31:37.166997436 +1000
+@@ -354,6 +354,10 @@
+ # Translated message
+ $strt = substr($content, $off, $len);
+ 
++# Convert gettext params %1 to maketext params [_1]
++$stro =~ s/\%(\d+)/\[_$1\]/g;
++$strt =~ s/\%(\d+)/\[_$1\]/g;
++
+ # Hash it
+ $_{$stro} = $strt;
+ }
diff --git a/perl-Locale-Maketext-Gettext.spec 
b/perl-Locale-Maketext-Gettext.spec
index 6bfbcf6..94bcdbb 100644
--- a/perl-Locale-Maketext-Gettext.spec
+++ b/perl-Locale-Maketext-Gettext.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Maketext-Gettext
 Version:1.27
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:Joins the gettext and Maketext frameworks
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,6 +13,7 @@ BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Pod)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Patch0: gettexttomakettext.patch
 
 %description
 Locale::Maketext::Gettext joins the GNU gettext and Maketext frameworks. It
@@ -52,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/*
 
 %changelog
+* Mon Mar 18 2013 Rüdiger Landmann rland...@redhat.com 1.27-11
+- Add patch to convert gettext %1 to maketext [_1]
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.27-10
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
@@ -78,5 +82,6 @@ rm -rf $RPM_BUILD_ROOT
 
 * Mon Sep 21 2009 Rüdiger Landmann rland...@redhat.com 1.27-2
 - added BuildRequires:  perl(Test::More) and BuildRequires:  perl(Test::Pod)
+
 * Mon Sep 07 2009 Rüdiger Landmann rland...@redhat.com 1.27-1
 - Specfile autogenerated by cpanspec 1.78.
--
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 gettexttomakettext.patch uploaded to lookaside cache by rlandmann

2013-03-18 Thread Rüdiger Landmann
A file has been added to the lookaside cache for perl-Locale-Maketext-Gettext:

bd16fb000fbf042b220d7a990368c0b2  gettexttomakettext.patch
--
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-Maketext-Gettext/f19] Add patch to convert gettext %1 to maketext [_1]

2013-03-18 Thread Rüdiger Landmann
commit 7aca8c25cfae1b0cf2f303b2edaf5f17b9129d41
Author: Ruediger Landmann r.landm...@redhat.com
Date:   Mon Mar 18 17:41:21 2013 +1000

Add patch to convert gettext %1 to maketext [_1]

 .gitignore   |1 +
 gettexttomakettext.patch |   14 --
 sources  |1 +
 3 files changed, 2 insertions(+), 14 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0add32c..4b1b4f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Locale-Maketext-Gettext-1.27.tar.gz
+/gettexttomakettext.patch
diff --git a/sources b/sources
index 5077cf7..7c6a814 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
 58019c37c8ad1c4526476a7fb98b64c6  Locale-Maketext-Gettext-1.27.tar.gz
+bd16fb000fbf042b220d7a990368c0b2  gettexttomakettext.patch
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

File Data-Dumper-2.145.tar.gz uploaded to lookaside cache by ppisar

2013-03-18 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Data-Dumper:

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

[perl-Data-Dumper] 2.145 bump

2013-03-18 Thread Petr Pisar
commit b5871e7d38d9936d6635396895bdb9b3d2030d62
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 18 09:25:39 2013 +0100

2.145 bump

 .gitignore|1 +
 perl-Data-Dumper.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b8acbfb..d54d295 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
 /Data-Dumper-2.136.tar.gz
 /Data-Dumper-2.139.tar.gz
 /Data-Dumper-2.143.tar.gz
+/Data-Dumper-2.145.tar.gz
diff --git a/perl-Data-Dumper.spec b/perl-Data-Dumper.spec
index e23f4c7..ee0e4e6 100644
--- a/perl-Data-Dumper.spec
+++ b/perl-Data-Dumper.spec
@@ -1,4 +1,4 @@
-%global cpan_version 2.143
+%global cpan_version 2.145
 Name:   perl-Data-Dumper
 Version:%(echo '%{cpan_version}' | tr '_' '.')
 Release:1%{?dist}
@@ -24,7 +24,7 @@ BuildRequires:  perl(XSLoader)
 BuildRequires:  perl(Config)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(strict)
-BuildRequires:  perl(Test::More) = 0.60
+BuildRequires:  perl(Test::More) = 0.98
 # Optional tests:
 BuildRequires:  perl(Encode)
 %endif
@@ -68,6 +68,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 18 2013 Petr Pisar ppi...@redhat.com - 2.145-1
+- 2.145 bump
+
 * Thu Feb 28 2013 Petr Pisar ppi...@redhat.com - 2.143-1
 - 2.143 bump
 
diff --git a/sources b/sources
index d878424..1c2410f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6c02ac5a2da9892667909b1c2f04a7a6  Data-Dumper-2.143.tar.gz
+b773c875afcca866faf8481adc3464b0  Data-Dumper-2.145.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 922376] perl-Data-Dumper-2.145 is available

2013-03-18 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=922376

--- Comment #1 from Petr Pisar ppi...@redhat.com ---
Internal test suite fixes. This release is suitable for F≥19.

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

[perl-Data-Dumper/f19] 2.145 bump

2013-03-18 Thread Petr Pisar
Summary of changes:

  b5871e7... 2.145 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

File Perl-Critic-Pulp-78.tar.gz uploaded to lookaside cache by ppisar

2013-03-18 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Perl-Critic-Pulp:

85f1c3796c40539ba14aa89a6addf540  Perl-Critic-Pulp-78.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-Perl-Critic-Pulp] 78 bump

2013-03-18 Thread Petr Pisar
commit 58da8a04514cd734173594c575f2e132e6cf259d
Author: Petr Písař ppi...@redhat.com
Date:   Mon Mar 18 09:36:17 2013 +0100

78 bump

 .gitignore |1 +
 perl-Perl-Critic-Pulp.spec |5 -
 sources|2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 330513f..83f14ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@
 /Perl-Critic-Pulp-75.tar.gz
 /Perl-Critic-Pulp-76.tar.gz
 /Perl-Critic-Pulp-77.tar.gz
+/Perl-Critic-Pulp-78.tar.gz
diff --git a/perl-Perl-Critic-Pulp.spec b/perl-Perl-Critic-Pulp.spec
index 306b5af..db005aa 100644
--- a/perl-Perl-Critic-Pulp.spec
+++ b/perl-Perl-Critic-Pulp.spec
@@ -1,5 +1,5 @@
 Name:   perl-Perl-Critic-Pulp
-Version:77
+Version:78
 Release:1%{?dist}
 Summary:Some add-on perlcritic policies
 License:GPLv3+
@@ -92,6 +92,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Mar 18 2013 Petr Pisar ppi...@redhat.com - 78-1
+- 78 bump
+
 * Thu Feb 28 2013 Petr Pisar ppi...@redhat.com - 77-1
 - 77 bump
 
diff --git a/sources b/sources
index 8becf0b..12c47cb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-eddb335189ad68b8581a871692831782  Perl-Critic-Pulp-77.tar.gz
+85f1c3796c40539ba14aa89a6addf540  Perl-Critic-Pulp-78.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 922376] perl-Data-Dumper-2.145 is available

2013-03-18 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=922376

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Data-Dumper-2.145-1.fc
   ||20
 Resolution|--- |RAWHIDE
Last Closed||2013-03-18 04:37:58

--- Comment #2 from Petr Pisar ppi...@redhat.com ---
Fixed as perl-Data-Dumper-2.145-1.fc19 in F19.

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

[Bug 922443] [abrt] perl-Padre-0.90-6.fc18: wxTimerBase::Notify: Process /usr/bin/perl was killed by signal 11 (SIGSEGV)

2013-03-18 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=922443

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

   What|Removed |Added

 CC||tcall...@redhat.com
  Component|perl-Padre  |perl-Wx
   Assignee|mmasl...@redhat.com |tcall...@redhat.com

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

[Bug 922378] perl-Perl-Critic-Pulp-78 is available

2013-03-18 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=922378

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Perl-Critic-Pulp-78-1.
   ||fc20
 Resolution|--- |RAWHIDE
Last Closed||2013-03-18 04:53:04

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

Broken dependencies: perl-Math-Clipper

2013-03-18 Thread buildsys


perl-Math-Clipper has broken dependencies in the rawhide tree:
On x86_64:
perl-Math-Clipper-1.17-3.fc19.x86_64 requires 
libpolyclipping.so.5()(64bit)
On i386:
perl-Math-Clipper-1.17-3.fc19.i686 requires libpolyclipping.so.5
Please resolve this as soon as possible.


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

Broken dependencies: perl-Bio-SamTools

2013-03-18 Thread buildsys


perl-Bio-SamTools has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-03-18 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Math-Clipper

2013-03-18 Thread buildsys


perl-Math-Clipper has broken dependencies in the F-19 tree:
On x86_64:
perl-Math-Clipper-1.17-3.fc19.x86_64 requires 
libpolyclipping.so.5()(64bit)
On i386:
perl-Math-Clipper-1.17-3.fc19.i686 requires libpolyclipping.so.5
Please resolve this as soon as possible.


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

Broken dependencies: perl-Bio-SamTools

2013-03-18 Thread buildsys


perl-Bio-SamTools has broken dependencies in the F-19 tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-03-18 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the F-19 tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


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

[perl-Locale-Maketext-Gettext/f18] Add patch to convert gettext %1 to maketext [_1]

2013-03-18 Thread Rüdiger Landmann
commit 0fa139c3bd4b1aa40c79f8ad6b48c3307dbe35f2
Author: Ruediger Landmann r.landm...@redhat.com
Date:   Tue Mar 19 14:46:15 2013 +1000

Add patch to convert gettext %1 to maketext [_1]

 .gitignore|1 +
 perl-Locale-Maketext-Gettext.spec |6 +-
 sources   |1 +
 3 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0add32c..4b1b4f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Locale-Maketext-Gettext-1.27.tar.gz
+/gettexttomakettext.patch
diff --git a/perl-Locale-Maketext-Gettext.spec 
b/perl-Locale-Maketext-Gettext.spec
index 0cfb8a4..a1a1898 100644
--- a/perl-Locale-Maketext-Gettext.spec
+++ b/perl-Locale-Maketext-Gettext.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Maketext-Gettext
 Version:1.27
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Joins the gettext and Maketext frameworks
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,6 +13,7 @@ BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Pod)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Patch0: gettexttomakettext.patch
 
 %description
 Locale::Maketext::Gettext joins the GNU gettext and Maketext frameworks. It
@@ -52,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/*
 
 %changelog
+* Mon Mar 18 2013 Rüdiger Landmann rland...@redhat.com 1.27-11
+- Add patch to convert gettext %1 to maketext [_1]
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.27-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 5077cf7..7c6a814 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
 58019c37c8ad1c4526476a7fb98b64c6  Locale-Maketext-Gettext-1.27.tar.gz
+bd16fb000fbf042b220d7a990368c0b2  gettexttomakettext.patch
--
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-Maketext-Gettext/f17] Add patch to convert gettext %1 to maketext [_1]

2013-03-18 Thread Rüdiger Landmann
commit 198508458233169e8a9e68606aa5b6c4ba3bfe34
Author: Ruediger Landmann r.landm...@redhat.com
Date:   Tue Mar 19 14:51:05 2013 +1000

Add patch to convert gettext %1 to maketext [_1]

 .gitignore|1 +
 perl-Locale-Maketext-Gettext.spec |6 +-
 sources   |1 +
 3 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0add32c..4b1b4f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Locale-Maketext-Gettext-1.27.tar.gz
+/gettexttomakettext.patch
diff --git a/perl-Locale-Maketext-Gettext.spec 
b/perl-Locale-Maketext-Gettext.spec
index 18f850a..ca6bb08 100644
--- a/perl-Locale-Maketext-Gettext.spec
+++ b/perl-Locale-Maketext-Gettext.spec
@@ -1,6 +1,6 @@
 Name:   perl-Locale-Maketext-Gettext
 Version:1.27
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Joins the gettext and Maketext frameworks
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -13,6 +13,7 @@ BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Pod)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Patch0: gettexttomakettext.patch
 
 %description
 Locale::Maketext::Gettext joins the GNU gettext and Maketext frameworks. It
@@ -52,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man1/*
 
 %changelog
+* Mon Mar 18 2013 Rüdiger Landmann rland...@redhat.com 1.27-8
+- Add patch to convert gettext %1 to maketext [_1]
+
 * Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.27-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
diff --git a/sources b/sources
index 5077cf7..7c6a814 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
 58019c37c8ad1c4526476a7fb98b64c6  Locale-Maketext-Gettext-1.27.tar.gz
+bd16fb000fbf042b220d7a990368c0b2  gettexttomakettext.patch
--
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