From 4d869213d84bafa9c65809852b923b2d26468432 Mon Sep 17 00:00:00 2001 From: Jose Pedro Oliveira Date: Mon, 22 Jan 2007 14:03:50 +0000 Subject: [PATCH 01/49] auto-import perl-B-Keywords-1.05-1 on branch devel from perl-B-Keywords-1.05-1.src.rpm --- .cvsignore | 1 + perl-B-Keywords.spec | 61 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 63 insertions(+) create mode 100644 perl-B-Keywords.spec diff --git a/.cvsignore b/.cvsignore index e69de29..277b4b6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +B-Keywords-1.05.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec new file mode 100644 index 0000000..afe24e0 --- /dev/null +++ b/perl-B-Keywords.spec @@ -0,0 +1,61 @@ +Name: perl-B-Keywords +Version: 1.05 +Release: 1%{?dist} +Summary: Lists of reserved barewords and symbol names + +Group: Development/Libraries +License: GPL or Artistic +URL: http://search.cpan.org/dist/B-Keywords/ +Source0: http://www.cpan.org/authors/id/J/JJ/JJORE/B-Keywords-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl(YAML) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +%{summary}. + + +%prep +%setup -q -n B-Keywords-%{version} + + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make pure_install PERL_INSTALL_ROOT=$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 ';' +chmod -R u+w $RPM_BUILD_ROOT/* + + +%check +# Skip the Perl::Critic tests for two reasons: +# 1) it fails a couple of tests +# 2) it causes bootstrap problems +# (Perl::Critic 0.23 requires this module) +mv t/05critic.t t/05critic.t.skip +AUTHOR_TESTS=1 make test + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc Changes LICENSE +%{perl_vendorlib}/B/ +%{_mandir}/man3/*.3pm* + + +%changelog +* Sat Jan 20 2007 Jose Pedro Oliveira - 1.05-1 +- First build. diff --git a/sources b/sources index e69de29..c318597 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f8b40e7dc864fc27fc69638e58cc651c B-Keywords-1.05.tar.gz From 5fc7eaa00e1efab6be484e471971360b66ed0a26 Mon Sep 17 00:00:00 2001 From: Jose Pedro Oliveira Date: Thu, 15 Feb 2007 17:01:42 +0000 Subject: [PATCH 02/49] Update to 1.06. --- .cvsignore | 2 +- perl-B-Keywords.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 277b4b6..4f4b3e5 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -B-Keywords-1.05.tar.gz +B-Keywords-1.06.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index afe24e0..4809e7c 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,5 +1,5 @@ Name: perl-B-Keywords -Version: 1.05 +Version: 1.06 Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names @@ -57,5 +57,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 15 2007 Jose Pedro Oliveira - 1.06-1 +- Update to 1.06. + * Sat Jan 20 2007 Jose Pedro Oliveira - 1.05-1 - First build. diff --git a/sources b/sources index c318597..eceaa1f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f8b40e7dc864fc27fc69638e58cc651c B-Keywords-1.05.tar.gz +24f311df8a5f0174cc465e1949082db3 B-Keywords-1.06.tar.gz From 518434ec607e085ceaa2d324618e55c088fd0cd0 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Fri, 11 Jan 2008 19:23:21 +0000 Subject: [PATCH 03/49] rebuild, pass one --- perl-B-Keywords.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 4809e7c..d7269fc 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,17 +1,17 @@ Name: perl-B-Keywords Version: 1.06 -Release: 1%{?dist} +Release: 1%{?dist}.1 Summary: Lists of reserved barewords and symbol names Group: Development/Libraries -License: GPL or Artistic +License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://www.cpan.org/authors/id/J/JJ/JJORE/B-Keywords-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::Pod) -BuildRequires: perl(Test::Pod::Coverage) +# BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -42,7 +42,7 @@ chmod -R u+w $RPM_BUILD_ROOT/* # 2) it causes bootstrap problems # (Perl::Critic 0.23 requires this module) mv t/05critic.t t/05critic.t.skip -AUTHOR_TESTS=1 make test +# AUTHOR_TESTS=1 make test %clean @@ -57,6 +57,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 11 2008 Tom "spot" Callaway - 1.06-1.1 +- rebuild for new perl +- disable Test-Pod-Coverage, tests for first pass + * Thu Feb 15 2007 Jose Pedro Oliveira - 1.06-1 - Update to 1.06. From 2193e1da276cfcf9066a462079f2edcdd73e2f57 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Mon, 14 Jan 2008 22:32:09 +0000 Subject: [PATCH 04/49] Rebuild normally, second pass --- perl-B-Keywords.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index d7269fc..30e11d4 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.06 -Release: 1%{?dist}.1 +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::Pod) -# BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -42,7 +42,7 @@ chmod -R u+w $RPM_BUILD_ROOT/* # 2) it causes bootstrap problems # (Perl::Critic 0.23 requires this module) mv t/05critic.t t/05critic.t.skip -# AUTHOR_TESTS=1 make test +AUTHOR_TESTS=1 make test %clean @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jan 14 2008 Tom "spot" Callaway - 1.06-2 +- rebuild normally, second pass + * Fri Jan 11 2008 Tom "spot" Callaway - 1.06-1.1 - rebuild for new perl - disable Test-Pod-Coverage, tests for first pass From 180972b1bdec60a1e7ba1f84452803889c9aeb9a Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Wed, 27 Feb 2008 21:43:23 +0000 Subject: [PATCH 05/49] perl 5.10.0 rebuild, second minor chain --- perl-B-Keywords.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 30e11d4..fb15239 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::Pod) -BuildRequires: perl(Test::Pod::Coverage) +# BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -42,7 +42,7 @@ chmod -R u+w $RPM_BUILD_ROOT/* # 2) it causes bootstrap problems # (Perl::Critic 0.23 requires this module) mv t/05critic.t t/05critic.t.skip -AUTHOR_TESTS=1 make test +# AUTHOR_TESTS=1 make test %clean @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 27 2008 Tom "spot" Callaway - 1.06-3 +- Rebuild for perl 5.10 (again), disable tests for first pass + * Mon Jan 14 2008 Tom "spot" Callaway - 1.06-2 - rebuild normally, second pass From 701b25b0caa6c2d0133c9d5ff6006329ccd8ac54 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Thu, 28 Feb 2008 12:59:41 +0000 Subject: [PATCH 06/49] perl rebuild, third small chain --- perl-B-Keywords.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index fb15239..40743df 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::Pod) -# BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -42,7 +42,7 @@ chmod -R u+w $RPM_BUILD_ROOT/* # 2) it causes bootstrap problems # (Perl::Critic 0.23 requires this module) mv t/05critic.t t/05critic.t.skip -# AUTHOR_TESTS=1 make test +AUTHOR_TESTS=1 make test %clean @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 28 2008 Tom "spot" Callaway - 1.06-4 +- Rebuild normally, second pass + * Wed Feb 27 2008 Tom "spot" Callaway - 1.06-3 - Rebuild for perl 5.10 (again), disable tests for first pass From 49376c31a7aa215b0fcb169207074b6a9c588756 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Sat, 15 Mar 2008 17:42:38 +0000 Subject: [PATCH 07/49] - update to 1.08 --- .cvsignore | 2 +- perl-B-Keywords.spec | 16 +++++++--------- sources | 2 +- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.cvsignore b/.cvsignore index 4f4b3e5..1dbd246 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -B-Keywords-1.06.tar.gz +B-Keywords-1.08.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 40743df..66e7796 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords -Version: 1.06 -Release: 4%{?dist} +Version: 1.08 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -33,16 +33,11 @@ rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$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 ';' -chmod -R u+w $RPM_BUILD_ROOT/* +%{_fixperms} $RPM_BUILD_ROOT/* %check -# Skip the Perl::Critic tests for two reasons: -# 1) it fails a couple of tests -# 2) it causes bootstrap problems -# (Perl::Critic 0.23 requires this module) -mv t/05critic.t t/05critic.t.skip -AUTHOR_TESTS=1 make test +make test %clean @@ -57,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Mar 15 2008 Chris Weyl 1.08-1 +- update to 1.08 + * Thu Feb 28 2008 Tom "spot" Callaway - 1.06-4 - Rebuild normally, second pass diff --git a/sources b/sources index eceaa1f..4a39751 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -24f311df8a5f0174cc465e1949082db3 B-Keywords-1.06.tar.gz +92f0d9d63d6ee2a6a2d4c5e1a90c5367 B-Keywords-1.08.tar.gz From a49892508cb62051d4411507b1e0e243327b14da Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Sat, 31 May 2008 23:31:01 +0000 Subject: [PATCH 08/49] - update to 1.08 --- perl-B-Keywords.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 66e7796..9e48510 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -10,8 +10,6 @@ Source0: http://www.cpan.org/authors/id/J/JJ/JJORE/B-Keywords-%{version}. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: perl(Test::Pod) -BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) From ceb687d800f50152702c74348c0433944f912359 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Sat, 31 May 2008 23:38:09 +0000 Subject: [PATCH 09/49] - update buildrequires --- perl-B-Keywords.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 9e48510..44c196c 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -13,6 +13,9 @@ BuildArch: noarch BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test) + %description %{summary}. @@ -50,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat May 31 2008 Chris Weyl 1.08-2 +- update buildrequires + * Sat Mar 15 2008 Chris Weyl 1.08-1 - update to 1.08 From 710a281abf166ac5ed7c12ba0749efeaac2ed672 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 11:17:42 +0000 Subject: [PATCH 10/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 44c196c..204e343 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 1.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat May 31 2008 Chris Weyl 1.08-2 - update buildrequires From 822884d8c686b15cca4cd3b57dacd6f4eb35ed23 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Sun, 29 Mar 2009 01:26:43 +0000 Subject: [PATCH 11/49] - update to 1.09 --- .cvsignore | 2 +- perl-B-Keywords.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 1dbd246..fff09d6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -B-Keywords-1.08.tar.gz +B-Keywords-1.09.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 204e343..13fb057 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords -Version: 1.08 -Release: 3%{?dist} +Version: 1.09 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Mar 28 2009 Chris Weyl 1.09-1 +- update to 1.09 + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild diff --git a/sources b/sources index 4a39751..263b445 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -92f0d9d63d6ee2a6a2d4c5e1a90c5367 B-Keywords-1.08.tar.gz +ac42096fcde918eda4a3c47c9b71e8d5 B-Keywords-1.09.tar.gz From cc577b002cc5181a1118d06ea591f1fc88c835bd Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Sun, 29 Mar 2009 01:32:34 +0000 Subject: [PATCH 12/49] - BR Test -> Test::More --- perl-B-Keywords.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 13fb057..3a4c05b 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -14,7 +14,7 @@ BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(Test) +BuildRequires: perl(Test::More) %description %{summary}. @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Mar 28 2009 Chris Weyl 1.09-2 +- BR Test -> Test::More + * Sat Mar 28 2009 Chris Weyl 1.09-1 - update to 1.09 From 0773036b6e899e81dc43514bd5bc0c8a5c0d0c75 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sun, 26 Jul 2009 01:48:05 +0000 Subject: [PATCH 13/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 3a4c05b..e4bda7f 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Chris Weyl 1.09-2 - BR Test -> Test::More From 7f820ee004afc373f2b0e45841eb32a609ec0d96 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:30:25 +0000 Subject: [PATCH 14/49] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e67134b..81ae251 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-B-Keywords SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 51294cd324c6faf0a70cb0ff71cc47a4dcc70582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Mon, 7 Dec 2009 10:26:17 +0000 Subject: [PATCH 15/49] - rebuild against perl 5.10.1 --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index e4bda7f..459aa52 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.09 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Dec 7 2009 Stepan Kasal - 1.09-4 +- rebuild against perl 5.10.1 + * Sat Jul 25 2009 Fedora Release Engineering - 1.09-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 6457f5635b6196e044389a95af09da6f57b64140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Thu, 29 Apr 2010 20:46:14 +0000 Subject: [PATCH 16/49] - Mass rebuild with perl-5.12.0 --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 459aa52..b2eff10 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Apr 29 2010 Marcela Maslanova - 1.09-5 +- Mass rebuild with perl-5.12.0 + * Mon Dec 7 2009 Stepan Kasal - 1.09-4 - rebuild against perl 5.10.1 From 82c7687f528d739090ab9e3255935726f9e8ecb2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 05:49:46 +0000 Subject: [PATCH 17/49] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 81ae251..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-B-Keywords -# $Id$ -NAME := perl-B-Keywords -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From 98937fd2990e7cffbf81c17db3daf11c6260108c Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Tue, 30 Nov 2010 20:46:51 +0000 Subject: [PATCH 18/49] Update to 1.10 - New upstream release 1.10 (fix typo in SYNOPSIS) - This release by FLORA -> update source URL --- .gitignore | 2 +- perl-B-Keywords.spec | 12 ++++++++---- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index fff09d6..2d61b55 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -B-Keywords-1.09.tar.gz +/B-Keywords-1.10.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index b2eff10..07113db 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,12 +1,12 @@ Name: perl-B-Keywords -Version: 1.09 -Release: 5%{?dist} +Version: 1.10 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ -Source0: http://www.cpan.org/authors/id/J/JJ/JJORE/B-Keywords-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Keywords-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -49,10 +49,14 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc Changes LICENSE %{perl_vendorlib}/B/ -%{_mandir}/man3/*.3pm* +%{_mandir}/man3/B::Keywords.3pm* %changelog +* Sun Sep 5 2010 Paul Howarth - 1.10-1 +- Update to 1.10 (fix typo in SYNOPSIS) +- This release by FLORA -> update source URL + * Thu Apr 29 2010 Marcela Maslanova - 1.09-5 - Mass rebuild with perl-5.12.0 diff --git a/sources b/sources index 263b445..2e11697 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ac42096fcde918eda4a3c47c9b71e8d5 B-Keywords-1.09.tar.gz +3f4e7319083a348972c38a10b944a7a1 B-Keywords-1.10.tar.gz From fc27df4b61d4b4b0c3da1e4df328946d51fd8973 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 10:39:10 -0600 Subject: [PATCH 19/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 07113db..6887e57 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 1.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Sep 5 2010 Paul Howarth - 1.10-1 - Update to 1.10 (fix typo in SYNOPSIS) - This release by FLORA -> update source URL From 7ddbffa73a0b19deca3e84611b9e592ee7721fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Wed, 29 Jun 2011 11:54:28 +0200 Subject: [PATCH 20/49] Perl mass rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 6887e57..9c7e0e7 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jun 29 2011 Marcela Mašláňová - 1.10-3 +- Perl mass rebuild + * Tue Feb 08 2011 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From b9e902e208c8aeebedd99d6b8a77071bd8d8ded1 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Wed, 11 Jan 2012 11:45:53 +0000 Subject: [PATCH 21/49] Update to 1.11 - New upstream release 1.11 - Add new keywords for 5.16: __SUB__ and evalbytes - Use DESTDIR rather than PERL_INSTALL_ROOT --- .gitignore | 2 +- perl-B-Keywords.spec | 21 ++++++++++++--------- sources | 2 +- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 2d61b55..2276391 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/B-Keywords-1.10.tar.gz +/B-Keywords-[0-9.]*.tar.gz diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 9c7e0e7..c71ec3a 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,20 +1,18 @@ Name: perl-B-Keywords -Version: 1.10 -Release: 3%{?dist} +Version: 1.11 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names - Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Keywords-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) BuildRequires: perl(YAML) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(Test::More) %description %{summary}. @@ -31,10 +29,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +make pure_install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' -find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' -%{_fixperms} $RPM_BUILD_ROOT/* +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} ';' 2>/dev/null +%{_fixperms} $RPM_BUILD_ROOT %check @@ -53,6 +51,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jan 11 2012 Paul Howarth - 1.11-1 +- Update to 1.11 + - Add new keywords for 5.16: __SUB__ and evalbytes +- Use DESTDIR rather than PERL_INSTALL_ROOT + * Wed Jun 29 2011 Marcela Mašláňová - 1.10-3 - Perl mass rebuild diff --git a/sources b/sources index 2e11697..9d16b94 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3f4e7319083a348972c38a10b944a7a1 B-Keywords-1.10.tar.gz +2c957056281623ad76ed65517e1c82c2 B-Keywords-1.11.tar.gz From eec588400d26b6a34c6201b222d3aff414a1b435 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Fri, 10 Feb 2012 10:09:49 +0000 Subject: [PATCH 22/49] Update to 1.12 - New upstream release 1.12 - Add new keyword fc (Unicode casefolding) for 5.16 - Added diag before each big t/11keywords.t loop - This release by RURBAN -> update source URL - Don't use macros for commands --- perl-B-Keywords.spec | 17 ++++++++++++----- sources | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index c71ec3a..2d0a563 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,17 +1,17 @@ Name: perl-B-Keywords -Version: 1.11 +Version: 1.12 Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ -Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Keywords-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) BuildRequires: perl(YAML) -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %description @@ -23,7 +23,7 @@ Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $versi %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} @@ -51,6 +51,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2012 Paul Howarth - 1.12-1 +- Update to 1.12 + - Add new keyword fc (Unicode casefolding) for 5.16 + - Added diag before each big t/11keywords.t loop +- This release by RURBAN -> update source URL +- Don't use macros for commands + * Wed Jan 11 2012 Paul Howarth - 1.11-1 - Update to 1.11 - Add new keywords for 5.16: __SUB__ and evalbytes diff --git a/sources b/sources index 9d16b94..b3f2a72 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2c957056281623ad76ed65517e1c82c2 B-Keywords-1.11.tar.gz +47b5a1ca5388fe1ceb3338c0a43259d8 B-Keywords-1.12.tar.gz From 3cce61be39038f27b487b1f899a238156772f455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 11 Jun 2012 10:16:51 +0200 Subject: [PATCH 23/49] Perl 5.16 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 2d0a563..1af8be4 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 11 2012 Petr Pisar - 1.12-2 +- Perl 5.16 rebuild + * Fri Feb 10 2012 Paul Howarth - 1.12-1 - Update to 1.12 - Add new keyword fc (Unicode casefolding) for 5.16 From 4d16e50cb14946d63984384db43bb71d32caa652 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 20 Jul 2012 05:39:05 -0500 Subject: [PATCH 24/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 1af8be4..6fe50ad 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 20 2012 Fedora Release Engineering - 1.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Mon Jun 11 2012 Petr Pisar - 1.12-2 - Perl 5.16 rebuild From d22dab880db3a6e20a67a51cb757e0352a6407ba Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 1 Aug 2012 15:22:10 +0200 Subject: [PATCH 25/49] Specify all dependencies --- perl-B-Keywords.spec | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 6fe50ad..c76c451 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,16 +1,20 @@ Name: perl-B-Keywords Version: 1.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(Test::More) +BuildRequires: perl(Exporter) BuildRequires: perl(YAML) +# Tests +BuildRequires: perl(File::Spec) +BuildRequires: perl(lib) +BuildRequires: perl(Test) +BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) @@ -28,7 +32,6 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT make pure_install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} ';' 2>/dev/null @@ -39,18 +42,17 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} ';' 2>/dev/null make test -%clean -rm -rf $RPM_BUILD_ROOT - - %files -%defattr(-,root,root,-) %doc Changes LICENSE %{perl_vendorlib}/B/ %{_mandir}/man3/B::Keywords.3pm* %changelog +* Wed Aug 1 2012 Jitka Plesnikova - 1.12-4 +- Add BR: perl(File::Spec), perl(lib), perl(Test), perl(Exporter) +- Clean up for modern rpmbuild + * Fri Jul 20 2012 Fedora Release Engineering - 1.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 2e22ff626dea01a54493af38cfc5dd41022670d0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 04:19:40 -0600 Subject: [PATCH 26/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index c76c451..35163ca 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Aug 1 2012 Jitka Plesnikova - 1.12-4 - Add BR: perl(File::Spec), perl(lib), perl(Test), perl(Exporter) - Clean up for modern rpmbuild From eb75def31d26c95c915e46a1c498be072f82750e Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Sat, 6 Apr 2013 19:53:20 +0100 Subject: [PATCH 27/49] Update to 1.13 (#949146) - New upstream release 1.13 - Removed diag before each big t/11keywords.t loop - Added lots of suggested keywords from CPAN RT#62382 - Moved exp from @Barewords to @Functions - Added $^CHILD_ERROR_NATIVE $^GLOBAL_PHASE $^LAST_FH $^MATCH $^PREMATCH $^POSTMATCH $^UTF8CACHE $^WIN32_SLOPPY_STAT to @Scalars - Added English names for %!, @F (perlrun) and @ARG for @_ - Added %+ %- and $LAST_SUBMATCH_RESULT - BR: perl(Test::Pod) - Don't need to remove empty directories from the buildroot --- perl-B-Keywords.spec | 18 +++++++++++++++--- sources | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 35163ca..dbead8d 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords -Version: 1.12 -Release: 5%{?dist} +Version: 1.13 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -15,6 +15,7 @@ BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test) BuildRequires: perl(Test::More) +BuildRequires: perl(Test::Pod) >= 1.0 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) @@ -34,7 +35,6 @@ make %{?_smp_mflags} %install 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 @@ -49,6 +49,18 @@ make test %changelog +* Sat Apr 6 2013 Paul Howarth - 1.13-1 +- Update to 1.13 + - Removed diag before each big t/11keywords.t loop + - Added lots of suggested keywords from CPAN RT#62382 + - Moved exp from @Barewords to @Functions + - Added $^CHILD_ERROR_NATIVE $^GLOBAL_PHASE $^LAST_FH $^MATCH $^PREMATCH + $^POSTMATCH $^UTF8CACHE $^WIN32_SLOPPY_STAT to @Scalars + - Added English names for %%!, @F (perlrun) and @ARG for @_ + - Added %%+ %%- and $LAST_SUBMATCH_RESULT +- BR: perl(Test::Pod) +- Don't need to remove empty directories from the buildroot + * Thu Feb 14 2013 Fedora Release Engineering - 1.12-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index b3f2a72..cd08c95 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -47b5a1ca5388fe1ceb3338c0a43259d8 B-Keywords-1.12.tar.gz +fe57415a76a423645c31281fe508bf46 B-Keywords-1.13.tar.gz From 4ee5d74b2cbf513ed65d0cdadbc79e3e6f6d8013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Thu, 18 Jul 2013 11:45:22 +0200 Subject: [PATCH 28/49] Perl 5.18 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index dbead8d..773189b 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %changelog +* Thu Jul 18 2013 Petr Pisar - 1.13-2 +- Perl 5.18 rebuild + * Sat Apr 6 2013 Paul Howarth - 1.13-1 - Update to 1.13 - Removed diag before each big t/11keywords.t loop From 0a44ad288056f03ce50662bdeb9fcd8e53499c39 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 12:27:50 -0500 Subject: [PATCH 29/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 773189b..3acab84 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Jul 18 2013 Petr Pisar - 1.13-2 - Perl 5.18 rebuild From 6f7ddd11cb15307e976067b880582641573457b5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:40:17 -0500 Subject: [PATCH 30/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 3acab84..eb6caf4 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.13 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 2b907e5249d0f0d3260b8bd1540325ff68c29e26 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 28 Aug 2014 09:06:07 +0200 Subject: [PATCH 31/49] Perl 5.20 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index eb6caf4..f2fd525 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %changelog +* Thu Aug 28 2014 Jitka Plesnikova - 1.13-5 +- Perl 5.20 rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 58c50eff74f2c0efa5d15210736d22bdc5452f36 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Sun, 22 Feb 2015 11:11:34 +0000 Subject: [PATCH 32/49] Update to 1.14 - New upstream release 1.14 - Removed err from Barewords (CPAN RT#102259) - Run the maintainer tests if we're not bootstrapping - Expand %description - Use %license --- perl-B-Keywords.spec | 50 +++++++++++++++++++++++++++++++++++++------- sources | 2 +- 2 files changed, 43 insertions(+), 9 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index f2fd525..58f84c2 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,26 +1,52 @@ Name: perl-B-Keywords -Version: 1.13 -Release: 5%{?dist} +Version: 1.14 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz BuildArch: noarch +# Module Build +BuildRequires: perl +BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) +# Module Runtime BuildRequires: perl(Exporter) -BuildRequires: perl(YAML) -# Tests +BuildRequires: perl(strict) +BuildRequires: perl(vars) +# Test Suite BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test) BuildRequires: perl(Test::More) +# Optional Tests BuildRequires: perl(Test::Pod) >= 1.0 +# Maintainer Tests +%if 0%{!?perl_bootstrap:1} +BuildRequires: perl(File::Copy) +BuildRequires: perl(Perl::MinimumVersion) >= 1.20 +BuildRequires: perl(Test::CPAN::Meta) >= 0.12 +BuildRequires: perl(Test::Kwalitee) +BuildRequires: perl(Test::MinimumVersion) >= 0.008 +BuildRequires: perl(Test::More) >= 0.88 +BuildRequires: perl(Test::Pod::Coverage) >= 1.04 +BuildRequires: perl(warnings) +%endif +# Runtime Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %description -%{summary}. +B::Keywords supplies several arrays of exportable keywords: @Scalars, @Arrays, +@Hashes, @Filehandles, @Symbols, @Functions, @Barewords, @TieIOMethods, +@UNIVERSALMethods and @ExporterSymbols. + +The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes, +@Functions and @Filehandles. + +Similarly, @Barewords adds a few non-function keywords and operators to the +@Functions array. %prep @@ -39,16 +65,24 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' %check -make test +make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %files -%doc Changes LICENSE +%license LICENSE +%doc Changes %{perl_vendorlib}/B/ -%{_mandir}/man3/B::Keywords.3pm* +%{_mandir}/man3/B::Keywords.3* %changelog +* Sun Feb 22 2015 Paul Howarth - 1.14-1 +- Update to 1.14 + - Removed err from Barewords (CPAN RT#102259) +- Run the maintainer tests if we're not bootstrapping +- Expand %%description +- Use %%license + * Thu Aug 28 2014 Jitka Plesnikova - 1.13-5 - Perl 5.20 rebuild diff --git a/sources b/sources index cd08c95..7c2b99a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fe57415a76a423645c31281fe508bf46 B-Keywords-1.13.tar.gz +d7845a15def72af92d15c27de48997df B-Keywords-1.14.tar.gz From dd4bccac7afee8976f8bf7270a19b2b9ccaee4fe Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 5 Jun 2015 12:36:45 +0200 Subject: [PATCH 33/49] Perl 5.22 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 58f84c2..9c01d19 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -76,6 +76,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Fri Jun 05 2015 Jitka Plesnikova - 1.14-2 +- Perl 5.22 rebuild + * Sun Feb 22 2015 Paul Howarth - 1.14-1 - Update to 1.14 - Removed err from Barewords (CPAN RT#102259) From bde6216a8fded8c6db451cce46bd1e6607bdf96e Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 10 Jun 2015 15:19:38 +0200 Subject: [PATCH 34/49] Perl 5.22 re-rebuild of bootstrapped packages --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 9c01d19..eb20c39 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -76,6 +76,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Wed Jun 10 2015 Jitka Plesnikova - 1.14-3 +- Perl 5.22 re-rebuild of bootstrapped packages + * Fri Jun 05 2015 Jitka Plesnikova - 1.14-2 - Perl 5.22 rebuild From 036a5f06a49e6ca84436a05984ddb16a96f87f4a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 01:17:54 +0000 Subject: [PATCH 35/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index eb20c39..5b415a3 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -76,6 +76,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Jun 10 2015 Jitka Plesnikova - 1.14-3 - Perl 5.22 re-rebuild of bootstrapped packages From e50f92b43dd05ddf6083f68a44fce461e5528710 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Wed, 11 Nov 2015 18:46:14 +0000 Subject: [PATCH 36/49] Update to 1.15 - New upstream release 1.15 - Fixed $OUTPUT_AUTOFLUSH (CPAN RT#108572) - Made $* $MULTILINE_MATCHING version specific, deprecated with 5.8.1, removed with 5.10 - Explicitly require perl-devel, for CORE/keywords.h --- perl-B-Keywords.spec | 15 +++++++++++++-- sources | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 5b415a3..318671d 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords -Version: 1.14 -Release: 4%{?dist} +Version: 1.15 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -8,6 +8,9 @@ URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz BuildArch: noarch # Module Build +BuildRequires: coreutils +BuildRequires: findutils +BuildRequires: make BuildRequires: perl BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) @@ -16,6 +19,7 @@ BuildRequires: perl(Exporter) BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite +BuildRequires: perl-devel BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test) @@ -76,6 +80,13 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Wed Nov 11 2015 Paul Howarth - 1.15-1 +- Update to 1.15 + - Fixed $OUTPUT_AUTOFLUSH (CPAN RT#108572) + - Made $* $MULTILINE_MATCHING version specific, deprecated with 5.8.1, + removed with 5.10 +- Explicitly require perl-devel, for CORE/keywords.h + * Thu Jun 18 2015 Fedora Release Engineering - 1.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 7c2b99a..d2b4fab 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d7845a15def72af92d15c27de48997df B-Keywords-1.14.tar.gz +ec1d4909cc76294fa3a3e279d170e778 B-Keywords-1.15.tar.gz From 48f5a87b1d7fec4b1b8c1786dd0eba19757666fd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 12:19:38 +0000 Subject: [PATCH 37/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 318671d..8fea7be 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -80,6 +80,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Nov 11 2015 Paul Howarth - 1.15-1 - Update to 1.15 - Fixed $OUTPUT_AUTOFLUSH (CPAN RT#108572) From e8540419a023b44e003c9bebcd70c081891c6a6c Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 15 May 2016 11:09:35 +0200 Subject: [PATCH 38/49] Perl 5.24 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 8fea7be..10a98a7 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -80,6 +80,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Sun May 15 2016 Jitka Plesnikova - 1.15-3 +- Perl 5.24 rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 0a5c0c547d457e06fcb8376f3162cc181b40a054 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 18 May 2016 18:48:14 +0200 Subject: [PATCH 39/49] Perl 5.24 re-rebuild of bootstrapped packages --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 10a98a7..c225561 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -80,6 +80,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Wed May 18 2016 Jitka Plesnikova - 1.15-4 +- Perl 5.24 re-rebuild of bootstrapped packages + * Sun May 15 2016 Jitka Plesnikova - 1.15-3 - Perl 5.24 rebuild From 75bef22487d3f5f2070d8b6865c65fe7b91654c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 24 Jun 2016 09:41:35 +0200 Subject: [PATCH 40/49] Mandatory Perl build-requires added --- perl-B-Keywords.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index c225561..07c01fa 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -20,6 +20,7 @@ BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite BuildRequires: perl-devel +BuildRequires: perl-generators BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test) From 6e696dfc13249047bee2e25abdd83a8b3dac647b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 01:40:23 +0000 Subject: [PATCH 41/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 07c01fa..00dc2eb 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -81,6 +81,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed May 18 2016 Jitka Plesnikova - 1.15-4 - Perl 5.24 re-rebuild of bootstrapped packages From fce64b6927076268634b5a9f266b85da8ee8661f Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 4 Jun 2017 19:08:17 +0200 Subject: [PATCH 42/49] Perl 5.26 rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 00dc2eb..61e7122 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -81,6 +81,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Sun Jun 04 2017 Jitka Plesnikova - 1.15-6 +- Perl 5.26 rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 56427899d86920e3042ae3b8c2e3ff581d14607c Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 7 Jun 2017 16:17:38 +0200 Subject: [PATCH 43/49] Perl 5.26 re-rebuild of bootstrapped packages --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 61e7122..0a1b3e4 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -81,6 +81,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Wed Jun 07 2017 Jitka Plesnikova - 1.15-7 +- Perl 5.26 re-rebuild of bootstrapped packages + * Sun Jun 04 2017 Jitka Plesnikova - 1.15-6 - Perl 5.26 rebuild From bb3b10045cce6325d95fd2a99d919f93ca7cf78e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 12 Jul 2017 14:17:07 +0200 Subject: [PATCH 44/49] perl dependency renamed to perl-interpreter --- perl-B-Keywords.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 0a1b3e4..25d5ab9 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -11,7 +11,7 @@ BuildArch: noarch BuildRequires: coreutils BuildRequires: findutils BuildRequires: make -BuildRequires: perl +BuildRequires: perl-interpreter BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime From 10bfd219594aaefc64700bf5614dc93072408086 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 02:35:57 +0000 Subject: [PATCH 45/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index 25d5ab9..a0b62fc 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.15 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries License: GPL+ or Artistic @@ -81,6 +81,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Jun 07 2017 Jitka Plesnikova - 1.15-7 - Perl 5.26 re-rebuild of bootstrapped packages From eaa782cf99121b4a6649c2e3965c0606e180d579 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Sun, 31 Dec 2017 20:24:43 +0000 Subject: [PATCH 46/49] Update to 1.16 - New upstream release 1.16 - Added 5.27.7 changes (CPAN RT#123948) - Added cperl class keywords - Added keywords per version back to 5.004 - Drop legacy Group: tag - Simplify find command using -delete --- .rpmlint | 3 +++ perl-B-Keywords.spec | 28 ++++++++++++++-------------- sources | 2 +- 3 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 .rpmlint diff --git a/.rpmlint b/.rpmlint new file mode 100644 index 0000000..d226598 --- /dev/null +++ b/.rpmlint @@ -0,0 +1,3 @@ +from Config import * + +addFilter("spelling-error Summary\(en_US\) barewords -> ") diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index a0b62fc..df23b0c 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,8 +1,7 @@ Name: perl-B-Keywords -Version: 1.15 -Release: 8%{?dist} +Version: 1.16 +Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names -Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz @@ -11,6 +10,7 @@ BuildArch: noarch BuildRequires: coreutils BuildRequires: findutils BuildRequires: make +BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) @@ -20,7 +20,6 @@ BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite BuildRequires: perl-devel -BuildRequires: perl-generators BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test) @@ -41,7 +40,6 @@ BuildRequires: perl(warnings) # Runtime Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) - %description B::Keywords supplies several arrays of exportable keywords: @Scalars, @Arrays, @Hashes, @Filehandles, @Symbols, @Functions, @Barewords, @TieIOMethods, @@ -53,34 +51,36 @@ The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes, Similarly, @Barewords adds a few non-function keywords and operators to the @Functions array. - %prep %setup -q -n B-Keywords-%{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 - +make pure_install DESTDIR=%{buildroot} +find %{buildroot} -type f -name .packlist -delete +%{_fixperms} -c %{buildroot} %check make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} - %files %license LICENSE %doc Changes %{perl_vendorlib}/B/ %{_mandir}/man3/B::Keywords.3* - %changelog +* Sun Dec 31 2017 Paul Howarth - 1.16-1 +- Update to 1.16 + - Added 5.27.7 changes (CPAN RT#123948) + - Added cperl class keywords + - Added keywords per version back to 5.004 +- Drop legacy Group: tag +- Simplify find command using -delete + * Thu Jul 27 2017 Fedora Release Engineering - 1.15-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild diff --git a/sources b/sources index d2b4fab..2b5b3fd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ec1d4909cc76294fa3a3e279d170e778 B-Keywords-1.15.tar.gz +SHA512 (B-Keywords-1.16.tar.gz) = 052511b3ab0afce3fd2011412c3902fd468209d4352c72620d0d4259ed13eb07c2b11bd9aec60bb41f161ff62f7bf272abba11cb333b679c8fd4e40a4d3d3f93 From 6707ec44ab060619065af729a4138fdfd2bbced5 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Tue, 30 Jan 2018 11:03:10 +0000 Subject: [PATCH 47/49] Update to 1.18 - New upstream release 1.18 - Added 5.27.8 changes: no whereis/-so --- perl-B-Keywords.spec | 6 +++++- sources | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index df23b0c..e5f16f6 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,5 +1,5 @@ Name: perl-B-Keywords -Version: 1.16 +Version: 1.18 Release: 1%{?dist} Summary: Lists of reserved barewords and symbol names License: GPL+ or Artistic @@ -73,6 +73,10 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %{_mandir}/man3/B::Keywords.3* %changelog +* Tue Jan 30 2018 Paul Howarth - 1.18-1 +- Update to 1.18 + - Added 5.27.8 changes: no whereis/-so + * Sun Dec 31 2017 Paul Howarth - 1.16-1 - Update to 1.16 - Added 5.27.7 changes (CPAN RT#123948) diff --git a/sources b/sources index 2b5b3fd..edd562d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (B-Keywords-1.16.tar.gz) = 052511b3ab0afce3fd2011412c3902fd468209d4352c72620d0d4259ed13eb07c2b11bd9aec60bb41f161ff62f7bf272abba11cb333b679c8fd4e40a4d3d3f93 +SHA512 (B-Keywords-1.18.tar.gz) = b1a6b4f8d1a557168257c4b8648e5f0e98e91dde7ba9122ba9a99cfb8b399a6857a2ee005ff26c4908d7f01e1e2ffb1dafae3aa6fe5acd3773588911ef159ff4 From de0fc21908e374d06ac24bf9c9654dcc5346e46d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 8 Feb 2018 18:56:45 +0000 Subject: [PATCH 48/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-B-Keywords.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index e5f16f6..b0e040a 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names License: GPL+ or Artistic URL: http://search.cpan.org/dist/B-Keywords/ @@ -73,6 +73,9 @@ make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} %{_mandir}/man3/B::Keywords.3* %changelog +* Thu Feb 08 2018 Fedora Release Engineering - 1.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Tue Jan 30 2018 Paul Howarth - 1.18-1 - Update to 1.18 - Added 5.27.8 changes: no whereis/-so From b3b9a7e2f961da9d31b754d27518f963d5814dc4 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Wed, 11 Apr 2018 16:30:19 +0200 Subject: [PATCH 49/49] Do not run optional tests on RHEL --- perl-B-Keywords.spec | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec index b0e040a..4bc3d0e 100644 --- a/perl-B-Keywords.spec +++ b/perl-B-Keywords.spec @@ -1,3 +1,10 @@ +# Run extra test +%if ! (0%{?rhel}) +%bcond_without perl_B_Keywords_enables_extra_test +%else +%bcond_with perl_B_Keywords_enables_extra_test +%endif + Name: perl-B-Keywords Version: 1.18 Release: 2%{?dist} @@ -27,7 +34,7 @@ BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::Pod) >= 1.0 # Maintainer Tests -%if 0%{!?perl_bootstrap:1} +%if 0%{!?perl_bootstrap:1} && %{with perl_B_Keywords_enables_extra_test} BuildRequires: perl(File::Copy) BuildRequires: perl(Perl::MinimumVersion) >= 1.20 BuildRequires: perl(Test::CPAN::Meta) >= 0.12 @@ -64,7 +71,11 @@ find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check -make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1} +%if 0%{!?perl_bootstrap:1} && %{with perl_B_Keywords_enables_extra_test} +make test IS_MAINTAINER=1 AUTHOR_TESTING=1 +%else +make test +%endif %files %license LICENSE