From e70f5dd6e48867a906ddeabd10864ed470f4e4ff Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 23 Nov 2008 04:07:51 +0000 Subject: [PATCH 01/42] Setup of module perl-Regexp-Assemble --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cf4224b --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: perl-Regexp-Assemble +# $Id$ +NAME := perl-Regexp-Assemble +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 +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) diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 89b7600fda55db5093fdf888b3d78debccc03f03 Mon Sep 17 00:00:00 2001 From: Iain Arnell Date: Sun, 23 Nov 2008 07:47:01 +0000 Subject: [PATCH 02/42] initial import --- .cvsignore | 1 + perl-Regexp-Assemble.spec | 58 +++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 60 insertions(+) create mode 100644 perl-Regexp-Assemble.spec diff --git a/.cvsignore b/.cvsignore index e69de29..8892273 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +Regexp-Assemble-0.34.tar.gz diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec new file mode 100644 index 0000000..8306d33 --- /dev/null +++ b/perl-Regexp-Assemble.spec @@ -0,0 +1,58 @@ +Name: perl-Regexp-Assemble +Version: 0.34 +Release: 1%{?dist} +Summary: Assemble multiple Regular Expressions into a single RE +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Regexp-Assemble/ +Source0: http://www.cpan.org/authors/id/D/DL/DLAND/Regexp-Assemble-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::File::Contents) +BuildRequires: perl(Test::Warn) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +Regexp::Assemble takes an arbitrary number of regular expressions and +assembles them into a single regular expression (or RE) that matches all +that the individual REs match. + +%prep +%setup -q -n Regexp-Assemble-%{version} +# tidy up the examples +find eg -type f | xargs chmod -x +find eg -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' +for f in Changes eg/ircwatcher; do + iconv -f iso8859-1 -t utf-8 $f >$f.conf && mv $f.conf $f +done + +%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 \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc Changes eg README TODO +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Tue Nov 18 2008 Iain Arnell 0.34-1 +- Specfile autogenerated by cpanspec 1.77. diff --git a/sources b/sources index e69de29..57555cc 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ddbf21d4d2e03798d351a34e79cafa30 Regexp-Assemble-0.34.tar.gz From 4d74067013f688b9ff9627a6ddbb910602e78f2c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 27 Feb 2009 00:57:50 +0000 Subject: [PATCH 03/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 8306d33..3d0c9f2 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 0.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Nov 18 2008 Iain Arnell 0.34-1 - Specfile autogenerated by cpanspec 1.77. From b15275e9fa6494d570ee1769ce4eb3d3ce7d16c3 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sun, 26 Jul 2009 16:21:01 +0000 Subject: [PATCH 04/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 3d0c9f2..522c257 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.34-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.34-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 43c90f3eaaa3aa47c2964f97f2aa7684f9596b65 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:31:17 +0000 Subject: [PATCH 05/42] 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 cf4224b..3bd3e9c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := perl-Regexp-Assemble 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 cf7f873aaf57f375d470ac06a54baa5fa1b02ebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Mon, 7 Dec 2009 06:24:41 +0000 Subject: [PATCH 06/42] - rebuild against perl 5.10.1 --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 522c257..fd5a70f 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Dec 7 2009 Stepan Kasal - 0.34-4 +- rebuild against perl 5.10.1 + * Sun Jul 26 2009 Fedora Release Engineering - 0.34-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 12a060e0d55104fd82220ea3c58d7a338880a4a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Thu, 6 May 2010 10:11:05 +0000 Subject: [PATCH 07/42] - Mass rebuild with perl-5.12.0 --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index fd5a70f..6d76764 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu May 06 2010 Marcela Maslanova - 0.34-5 +- Mass rebuild with perl-5.12.0 + * Mon Dec 7 2009 Stepan Kasal - 0.34-4 - rebuild against perl 5.10.1 From 39060ef1c0d5b3de6d3793cdedf8e59751d76fa4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 07:51:54 +0000 Subject: [PATCH 08/42] 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 3bd3e9c..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-Regexp-Assemble -# $Id$ -NAME := perl-Regexp-Assemble -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 9b39116bddbba0589fb82aee24508d9ca60c448a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 21 Dec 2010 20:51:03 +0100 Subject: [PATCH 09/42] - 661697 rebuild for fixing problems with vendorach/lib --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 6d76764..b446f05 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Dec 21 2010 Marcela Maslanova - 0.34-6 +- 661697 rebuild for fixing problems with vendorach/lib + * Thu May 06 2010 Marcela Maslanova - 0.34-5 - Mass rebuild with perl-5.12.0 From 101a46a5c454d5e940b093f596596ddae0aceffa Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 00:19:10 -0600 Subject: [PATCH 10/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index b446f05..891093b 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 0.34-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Dec 21 2010 Marcela Maslanova - 0.34-6 - 661697 rebuild for fixing problems with vendorach/lib From 204087557b76d8aae0cd9e52d0841fa0e44f5d61 Mon Sep 17 00:00:00 2001 From: Iain Arnell Date: Sat, 9 Apr 2011 10:13:00 +0200 Subject: [PATCH 11/42] update to 0.35 --- .gitignore | 1 + perl-Regexp-Assemble.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8892273..a5b3d54 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ Regexp-Assemble-0.34.tar.gz +/Regexp-Assemble-0.35.tar.gz diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 891093b..788a88d 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble -Version: 0.34 -Release: 7%{?dist} +Version: 0.35 +Release: 1%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Apr 09 2011 Iain Arnell 0.35-1 +- update to latest upstream version + * Wed Feb 09 2011 Fedora Release Engineering - 0.34-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/sources b/sources index 57555cc..c5e1a15 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ddbf21d4d2e03798d351a34e79cafa30 Regexp-Assemble-0.34.tar.gz +315796ece5bfb69b166846ced911cf0e Regexp-Assemble-0.35.tar.gz From a9bf638abd00a78eb425eb227a60d60ae5b5a3da Mon Sep 17 00:00:00 2001 From: Petr Sabata Date: Wed, 20 Jul 2011 02:23:11 +0200 Subject: [PATCH 12/42] Perl mass rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 788a88d..1d05abe 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 20 2011 Petr Sabata - 0.35-2 +- Perl mass rebuild + * Sat Apr 09 2011 Iain Arnell 0.35-1 - update to latest upstream version From afae7c72a87ae394382d7560c80b7c3f7d361dd7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 10:58:53 -0600 Subject: [PATCH 13/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 1d05abe..2a669f0 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.35-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Jul 20 2011 Petr Sabata - 0.35-2 - Perl mass rebuild From fdff96b84b0aa06ef2424f09453a1cd6622a6085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Thu, 14 Jun 2012 02:05:25 +0200 Subject: [PATCH 14/42] Perl 5.16 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 2a669f0..0010237 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jun 14 2012 Petr Pisar - 0.35-4 +- Perl 5.16 rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.35-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 463c9b84dae85dd44420543335d053239763abeb Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 20 Jul 2012 13:54:31 -0500 Subject: [PATCH 15/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 0010237..a563364 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 20 2012 Fedora Release Engineering - 0.35-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jun 14 2012 Petr Pisar - 0.35-4 - Perl 5.16 rebuild From 7fc27369206ec6f58571fc9530d30f37d77eb13d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 08:54:28 -0600 Subject: [PATCH 16/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index a563364..817dde7 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.35-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jul 20 2012 Fedora Release Engineering - 0.35-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 418113a336696609a01017f6b2a6e062f76973af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 22 Jul 2013 07:15:08 +0200 Subject: [PATCH 17/42] Perl 5.18 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 817dde7..895f2ed 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Jul 22 2013 Petr Pisar - 0.35-7 +- Perl 5.18 rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.35-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From dd7bb62ef69fea5fad5d7772fa8e3fd90a9a546c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 19:36:49 -0500 Subject: [PATCH 18/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 895f2ed..f6fe616 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.35-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Mon Jul 22 2013 Petr Pisar - 0.35-7 - Perl 5.18 rebuild From c0185dfcd1bb4aa0dde61fe79742af8a1c6c2c01 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 04:28:33 -0500 Subject: [PATCH 19/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index f6fe616..e643d0c 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.35-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.35-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From d7b19b735d5b0a131a6e0efa39ca8891879f5293 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 28 Aug 2014 04:24:33 +0200 Subject: [PATCH 20/42] Perl 5.20 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index e643d0c..b1e0a36 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Aug 28 2014 Jitka Plesnikova - 0.35-10 +- Perl 5.20 rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.35-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 919e6acf411eafa560cfdc7a766e6502df8e7860 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Thu, 27 Nov 2014 17:34:14 +0000 Subject: [PATCH 21/42] Add patch to fix POD errors (CPAN RT#85686) - Add patch to fix POD errors (CPAN RT#85686) - Classify buildreqs by usage - General clean-up --- Regexp-Assemble-0.35-pod.patch | 32 +++++++++++++++ Regexp-Assemble-0.35-utf8.patch | 40 +++++++++++++++++++ perl-Regexp-Assemble.spec | 71 ++++++++++++++++++++++----------- 3 files changed, 120 insertions(+), 23 deletions(-) create mode 100644 Regexp-Assemble-0.35-pod.patch create mode 100644 Regexp-Assemble-0.35-utf8.patch diff --git a/Regexp-Assemble-0.35-pod.patch b/Regexp-Assemble-0.35-pod.patch new file mode 100644 index 0000000..fe2a034 --- /dev/null +++ b/Regexp-Assemble-0.35-pod.patch @@ -0,0 +1,32 @@ +--- Assemble.pm ++++ Assemble.pm +@@ -1575,24 +1575,24 @@ carefully formatted output. + + =over 8 + +-=item 0 ++=item * 0 + + Off. Turns off all debugging output. + +-=item 1 ++=item * 1 + + Add. Trace the addition of patterns. + +-=item 2 ++=item * 2 + + Reduce. Trace the process of reduction and assembly. + +-=item 4 ++=item * 4 + + Lex. Trace the lexing of the input patterns into its constituent + tokens. + +-=item 8 ++=item * 8 + + Time. Print to STDOUT the time taken to load all the patterns. This is + nothing more than the difference between the time the object was diff --git a/Regexp-Assemble-0.35-utf8.patch b/Regexp-Assemble-0.35-utf8.patch new file mode 100644 index 0000000..c29e51e --- /dev/null +++ b/Regexp-Assemble-0.35-utf8.patch @@ -0,0 +1,40 @@ +--- Changes ++++ Changes +@@ -7,7 +7,7 @@ Revision history for Perl extension Rege + 0.34 2008-06-17 20:20:14 UTC + - Rewrite the usage of _re_sort() in order to deal + with blead change #33874. Bug smoked out by Andreas +- König. ++ König. + + 0.33 2008-06-07 14:40:57 UTC + - Tweaked _fastlex() to fix bug #36399 spotted by Yves +@@ -163,7 +163,7 @@ Revision history for Perl extension Rege + t/00_basic.t and t/07_warning.t was born. + - Added an eg/ircwatcher script that demonstrates how to set up a + dispatch table on a tracked regular expression. Credit to David +- Rigaudière for the idea. ++ Rigaudière for the idea. + - Made sure all routines use an explicit return when it makes + sense to do so. (I have a tendency to use implicit returns, + which is evil). +@@ -171,7 +171,7 @@ Revision history for Perl extension Rege + - eg/naive updated to bring its idea of $Single_Char in line with + Assemble.pm. + - Cleaned up typos and PODos in the documentation. Fixed minor +- typo noted by David Rigaudière. ++ typo noted by David Rigaudière. + - Reworked as_string() and re() to play nicely with Devel::Cover, + but alas, the module no longer runs under D::C at all. Something + to do with the overloading of "" for re()? +--- eg/ircwatcher ++++ eg/ircwatcher +@@ -9,7 +9,7 @@ + # + # Try changing the read of STDIN to DATA for a quick demo. + # +-# Acknowledgements to David "Sniper" Rigaudière for the ++# Acknowledgements to David "Sniper" Rigaudière for the + # idea. + # + # Copyright (C) David Landgren 2005 diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index b1e0a36..baa300d 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,17 +1,38 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Regexp-Assemble/ Source0: http://www.cpan.org/authors/id/D/DL/DLAND/Regexp-Assemble-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: Regexp-Assemble-0.35-utf8.patch +Patch1: Regexp-Assemble-0.35-pod.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch +# Module Build +BuildRequires: perl BuildRequires: perl(ExtUtils::MakeMaker) +# Module Runtime +BuildRequires: perl(Carp) +BuildRequires: perl(constant) +BuildRequires: perl(overload) +BuildRequires: perl(re) +BuildRequires: perl(Storable) +BuildRequires: perl(strict) +BuildRequires: perl(Time::HiRes) +BuildRequires: perl(vars) +# Test Suite +BuildRequires: perl(Test::More) +# Optional Tests BuildRequires: perl(Test::File::Contents) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(Test::Warn) -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +# Runtime +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(Storable) +Requires: perl(Time::HiRes) %description Regexp::Assemble takes an arbitrary number of regular expressions and @@ -20,40 +41,44 @@ that the individual REs match. %prep %setup -q -n Regexp-Assemble-%{version} -# tidy up the examples -find eg -type f | xargs chmod -x -find eg -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' -for f in Changes eg/ircwatcher; do - iconv -f iso8859-1 -t utf-8 $f >$f.conf && mv $f.conf $f -done -%build -%{__perl} Makefile.PL INSTALLDIRS=vendor -make %{?_smp_mflags} +# Re-code docs as UTF8 +%patch0 -%install -rm -rf $RPM_BUILD_ROOT +# Fix POD errors (CPAN RT#85686) +%patch1 -make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +# Tidy up the examples (note that eg/file.3 is required to have DOS line endings) +find eg/ -type f | xargs chmod -c -x +find eg/ -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' -find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; -find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; +%build +perl Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} -%{_fixperms} $RPM_BUILD_ROOT/* +%install +rm -rf %{buildroot} +make pure_install DESTDIR=%{buildroot} +find %{buildroot} -type f -name .packlist -exec rm -f {} \; +%{_fixperms} %{buildroot} %check make test %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files -%defattr(-,root,root,-) -%doc Changes eg README TODO -%{perl_vendorlib}/* -%{_mandir}/man3/* +%doc Changes eg/ README TODO +%{perl_vendorlib}/Regexp/ +%{_mandir}/man3/Regexp::Assemble.3* %changelog +* Thu Nov 27 2014 Paul Howarth - 0.35-11 +- Add patch to fix POD errors (CPAN RT#85686) +- Classify buildreqs by usage +- General clean-up + * Thu Aug 28 2014 Jitka Plesnikova - 0.35-10 - Perl 5.20 rebuild From 824c9a08217b8c5b46432ac219e06017a50955ac Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 5 Jun 2015 15:57:11 +0200 Subject: [PATCH 22/42] Perl 5.22 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index baa300d..d1b5885 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri Jun 05 2015 Jitka Plesnikova - 0.35-12 +- Perl 5.22 rebuild + * Thu Nov 27 2014 Paul Howarth - 0.35-11 - Add patch to fix POD errors (CPAN RT#85686) - Classify buildreqs by usage From 6b7f934275b631e1689d68f27e362d090d407d41 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 05:44:07 +0000 Subject: [PATCH 23/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index d1b5885..1617c95 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.35 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 0.35-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Fri Jun 05 2015 Jitka Plesnikova - 0.35-12 - Perl 5.22 rebuild From 6babc464b5cbe0de03516f36211259aa6f7fa5df Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Mon, 17 Aug 2015 16:07:49 +0100 Subject: [PATCH 24/42] Update to 0.36 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - New upstream release 0.36 - Ron Savage is now co-maintainer - Move eg/ to examples/ - Add examples/failure.01.pl from CPAN RT#104897 - Move pod tests into xt/author/pod.t by cutting them out of t/00_basic.t (CPAN RT#85686, CPAN RT#85209) - Add repository https://github.com/ronsavage/Regexp-Assemble.git - Fix some spelling errors in the pod (CPAN RT#84336) - Move Assemble.pm into lib/Regexp/ - Move the contents of the TODO file into the docs, and delete that file - Rearrange pod, but not by running this module over it :-) - Update Makefile.PL - Add Changelog.ini - Update MANIFEST.SKIP - This release by RSAVAGE → update source URL - Update character coding patch --- .gitignore | 3 +- Regexp-Assemble-0.35-pod.patch | 32 -------------- ...8.patch => Regexp-Assemble-0.36-utf8.patch | 10 ++--- perl-Regexp-Assemble.spec | 42 +++++++++++++------ sources | 2 +- 5 files changed, 38 insertions(+), 51 deletions(-) delete mode 100644 Regexp-Assemble-0.35-pod.patch rename Regexp-Assemble-0.35-utf8.patch => Regexp-Assemble-0.36-utf8.patch (85%) diff --git a/.gitignore b/.gitignore index a5b3d54..3ef21d9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ -Regexp-Assemble-0.34.tar.gz +/Regexp-Assemble-0.34.tar.gz /Regexp-Assemble-0.35.tar.gz +/Regexp-Assemble-0.36.tgz diff --git a/Regexp-Assemble-0.35-pod.patch b/Regexp-Assemble-0.35-pod.patch deleted file mode 100644 index fe2a034..0000000 --- a/Regexp-Assemble-0.35-pod.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- Assemble.pm -+++ Assemble.pm -@@ -1575,24 +1575,24 @@ carefully formatted output. - - =over 8 - --=item 0 -+=item * 0 - - Off. Turns off all debugging output. - --=item 1 -+=item * 1 - - Add. Trace the addition of patterns. - --=item 2 -+=item * 2 - - Reduce. Trace the process of reduction and assembly. - --=item 4 -+=item * 4 - - Lex. Trace the lexing of the input patterns into its constituent - tokens. - --=item 8 -+=item * 8 - - Time. Print to STDOUT the time taken to load all the patterns. This is - nothing more than the difference between the time the object was diff --git a/Regexp-Assemble-0.35-utf8.patch b/Regexp-Assemble-0.36-utf8.patch similarity index 85% rename from Regexp-Assemble-0.35-utf8.patch rename to Regexp-Assemble-0.36-utf8.patch index c29e51e..d366d7c 100644 --- a/Regexp-Assemble-0.35-utf8.patch +++ b/Regexp-Assemble-0.36-utf8.patch @@ -1,6 +1,6 @@ --- Changes +++ Changes -@@ -7,7 +7,7 @@ Revision history for Perl extension Rege +@@ -29,7 +29,7 @@ Revision history for Perl extension Rege 0.34 2008-06-17 20:20:14 UTC - Rewrite the usage of _re_sort() in order to deal with blead change #33874. Bug smoked out by Andreas @@ -9,7 +9,7 @@ 0.33 2008-06-07 14:40:57 UTC - Tweaked _fastlex() to fix bug #36399 spotted by Yves -@@ -163,7 +163,7 @@ Revision history for Perl extension Rege +@@ -185,7 +185,7 @@ Revision history for Perl extension Rege t/00_basic.t and t/07_warning.t was born. - Added an eg/ircwatcher script that demonstrates how to set up a dispatch table on a tracked regular expression. Credit to David @@ -18,7 +18,7 @@ - Made sure all routines use an explicit return when it makes sense to do so. (I have a tendency to use implicit returns, which is evil). -@@ -171,7 +171,7 @@ Revision history for Perl extension Rege +@@ -193,7 +193,7 @@ Revision history for Perl extension Rege - eg/naive updated to bring its idea of $Single_Char in line with Assemble.pm. - Cleaned up typos and PODos in the documentation. Fixed minor @@ -27,8 +27,8 @@ - Reworked as_string() and re() to play nicely with Devel::Cover, but alas, the module no longer runs under D::C at all. Something to do with the overloading of "" for re()? ---- eg/ircwatcher -+++ eg/ircwatcher +--- examples/ircwatcher ++++ examples/ircwatcher @@ -9,7 +9,7 @@ # # Try changing the read of STDIN to DATA for a quick demo. diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 1617c95..9000395 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,16 +1,18 @@ Name: perl-Regexp-Assemble -Version: 0.35 -Release: 13%{?dist} +Version: 0.36 +Release: 1%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Regexp-Assemble/ -Source0: http://www.cpan.org/authors/id/D/DL/DLAND/Regexp-Assemble-%{version}.tar.gz -Patch0: Regexp-Assemble-0.35-utf8.patch -Patch1: Regexp-Assemble-0.35-pod.patch +Source0: http://www.cpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz +Patch0: Regexp-Assemble-0.36-utf8.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch # Module Build +BuildRequires: coreutils +BuildRequires: findutils +BuildRequires: make BuildRequires: perl BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime @@ -22,15 +24,16 @@ BuildRequires: perl(Storable) BuildRequires: perl(strict) BuildRequires: perl(Time::HiRes) BuildRequires: perl(vars) +BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::File::Contents) -BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(Test::Warn) # Runtime Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(Carp) Requires: perl(Storable) Requires: perl(Time::HiRes) @@ -45,12 +48,9 @@ that the individual REs match. # Re-code docs as UTF8 %patch0 -# Fix POD errors (CPAN RT#85686) -%patch1 - # Tidy up the examples (note that eg/file.3 is required to have DOS line endings) -find eg/ -type f | xargs chmod -c -x -find eg/ -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' +find examples/ -type f | xargs chmod -c -x +find examples/ -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' %build perl Makefile.PL INSTALLDIRS=vendor @@ -69,11 +69,29 @@ make test rm -rf %{buildroot} %files -%doc Changes eg/ README TODO +%doc Changes examples/ README %{perl_vendorlib}/Regexp/ %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Mon Aug 17 2015 Paul Howarth - 0.36-1 +- Update to 0.36 + - Ron Savage is now co-maintainer + - Move eg/ to examples/ + - Add examples/failure.01.pl from CPAN RT#104897 + - Move pod tests into xt/author/pod.t by cutting them out of t/00_basic.t + (CPAN RT#85686, CPAN RT#85209) + - Add repository https://github.com/ronsavage/Regexp-Assemble.git + - Fix some spelling errors in the pod (CPAN RT#84336) + - Move Assemble.pm into lib/Regexp/ + - Move the contents of the TODO file into the docs, and delete that file + - Rearrange pod, but not by running this module over it :-) + - Update Makefile.PL + - Add Changelog.ini + - Update MANIFEST.SKIP +- This release by RSAVAGE → update source URL +- Update character coding patch + * Thu Jun 18 2015 Fedora Release Engineering - 0.35-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index c5e1a15..c810a79 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -315796ece5bfb69b166846ced911cf0e Regexp-Assemble-0.35.tar.gz +52ad88fd82ce92250631041d34492414 Regexp-Assemble-0.36.tgz From 41e689cf00d70d609c9ee0320e4c9a7a1585ccda Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 15:33:54 +0000 Subject: [PATCH 25/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 9000395..ea535a2 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.36 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.36-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Aug 17 2015 Paul Howarth - 0.36-1 - Update to 0.36 - Ron Savage is now co-maintainer From d17e6cc51aefc283b39997e8658f139a2c2d72ec Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Mon, 18 Apr 2016 10:50:45 +0100 Subject: [PATCH 26/42] Update to 0.37 - New upstream release 0.37 - No code changes - Add a LICENCE; this activity is part of the CPAN PR Challenge 2016 - Update MANIFEST to include LICENCE file - Remove unicode characters from Changes and Changelog.ini files - Add TODO and update MANIFEST to note unicode issues - Add .gitignore to MANIFEST.SKIP - Simplify find command using -delete - Drop character coding patch, no longer needed --- .gitignore | 1 + Regexp-Assemble-0.36-utf8.patch | 40 --------------------------------- perl-Regexp-Assemble.spec | 28 ++++++++++++++++------- sources | 2 +- 4 files changed, 22 insertions(+), 49 deletions(-) delete mode 100644 Regexp-Assemble-0.36-utf8.patch diff --git a/.gitignore b/.gitignore index 3ef21d9..39f11d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /Regexp-Assemble-0.34.tar.gz /Regexp-Assemble-0.35.tar.gz /Regexp-Assemble-0.36.tgz +/Regexp-Assemble-0.37.tgz diff --git a/Regexp-Assemble-0.36-utf8.patch b/Regexp-Assemble-0.36-utf8.patch deleted file mode 100644 index d366d7c..0000000 --- a/Regexp-Assemble-0.36-utf8.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- Changes -+++ Changes -@@ -29,7 +29,7 @@ Revision history for Perl extension Rege - 0.34 2008-06-17 20:20:14 UTC - - Rewrite the usage of _re_sort() in order to deal - with blead change #33874. Bug smoked out by Andreas -- König. -+ König. - - 0.33 2008-06-07 14:40:57 UTC - - Tweaked _fastlex() to fix bug #36399 spotted by Yves -@@ -185,7 +185,7 @@ Revision history for Perl extension Rege - t/00_basic.t and t/07_warning.t was born. - - Added an eg/ircwatcher script that demonstrates how to set up a - dispatch table on a tracked regular expression. Credit to David -- Rigaudière for the idea. -+ Rigaudière for the idea. - - Made sure all routines use an explicit return when it makes - sense to do so. (I have a tendency to use implicit returns, - which is evil). -@@ -193,7 +193,7 @@ Revision history for Perl extension Rege - - eg/naive updated to bring its idea of $Single_Char in line with - Assemble.pm. - - Cleaned up typos and PODos in the documentation. Fixed minor -- typo noted by David Rigaudière. -+ typo noted by David Rigaudière. - - Reworked as_string() and re() to play nicely with Devel::Cover, - but alas, the module no longer runs under D::C at all. Something - to do with the overloading of "" for re()? ---- examples/ircwatcher -+++ examples/ircwatcher -@@ -9,7 +9,7 @@ - # - # Try changing the read of STDIN to DATA for a quick demo. - # --# Acknowledgements to David "Sniper" Rigaudière for the -+# Acknowledgements to David "Sniper" Rigaudière for the - # idea. - # - # Copyright (C) David Landgren 2005 diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index ea535a2..da88d27 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,12 +1,11 @@ Name: perl-Regexp-Assemble -Version: 0.36 -Release: 2%{?dist} +Version: 0.37 +Release: 1%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Regexp-Assemble/ Source0: http://www.cpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz -Patch0: Regexp-Assemble-0.36-utf8.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch # Module Build @@ -45,9 +44,6 @@ that the individual REs match. %prep %setup -q -n Regexp-Assemble-%{version} -# Re-code docs as UTF8 -%patch0 - # Tidy up the examples (note that eg/file.3 is required to have DOS line endings) find examples/ -type f | xargs chmod -c -x find examples/ -type f | xargs perl -pi -e 's|^#!\s*/usr/local/bin/perl\S*|%{__perl}|' @@ -59,7 +55,7 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install DESTDIR=%{buildroot} -find %{buildroot} -type f -name .packlist -exec rm -f {} \; +find %{buildroot} -type f -name .packlist -delete %{_fixperms} %{buildroot} %check @@ -69,11 +65,27 @@ make test rm -rf %{buildroot} %files -%doc Changes examples/ README +%if 0%{?_licensedir:1} +%license LICENCE +%else +%doc LICENCE +%endif +%doc Changes examples/ README TODO %{perl_vendorlib}/Regexp/ %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Mon Apr 18 2016 Paul Howarth - 0.37-1 +- Update to 0.37 + - No code changes + - Add a LICENCE; this activity is part of the CPAN PR Challenge 2016 + - Update MANIFEST to include LICENCE file + - Remove unicode characters from Changes and Changelog.ini files + - Add TODO and update MANIFEST to note unicode issues + - Add .gitignore to MANIFEST.SKIP +- Simplify find command using -delete +- Drop character coding patch, no longer needed + * Thu Feb 04 2016 Fedora Release Engineering - 0.36-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index c810a79..0a8d705 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -52ad88fd82ce92250631041d34492414 Regexp-Assemble-0.36.tgz +2f7f232642f0f30f69983ef1316ecb42 Regexp-Assemble-0.37.tgz From f4e392eee1ae11bec65aad9cf26791f6f9f4c1e2 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Sun, 15 May 2016 14:01:36 +0200 Subject: [PATCH 27/42] Perl 5.24 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index da88d27..1f858aa 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.37 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Sun May 15 2016 Jitka Plesnikova - 0.37-2 +- Perl 5.24 rebuild + * Mon Apr 18 2016 Paul Howarth - 0.37-1 - Update to 0.37 - No code changes From 52b9fad6fc09de51894a357961fccce6b82d068d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 24 Jun 2016 10:23:23 +0200 Subject: [PATCH 28/42] Mandatory Perl build-requires added --- perl-Regexp-Assemble.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 1f858aa..b6d4fe5 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -13,6 +13,7 @@ BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl +BuildRequires: perl-generators BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) From bb24018a58fc6a09e9ede44a169ace684ae1eb30 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 05:01:48 +0000 Subject: [PATCH 29/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index b6d4fe5..c65c1d2 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.37 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.37-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sun May 15 2016 Jitka Plesnikova - 0.37-2 - Perl 5.24 rebuild From 735b9ebc6ff0accdc993c6f69641bcddddc18cbb Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Mon, 5 Jun 2017 01:12:56 +0200 Subject: [PATCH 30/42] Perl 5.26 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index c65c1d2..29b455b 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.37 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Sun Jun 04 2017 Jitka Plesnikova - 0.37-4 +- Perl 5.26 rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.37-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 981be2cb842bad1d48dc41c7c54655ab9c8572de Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Wed, 21 Jun 2017 10:47:23 +0100 Subject: [PATCH 31/42] Update to 0.38 and drop EL-5 support - New upstream release 0.38 - Fix test prereqs; pod tests moved to xt/ (CPAN RT#122136, CPAN RT#122137) - Adopt new repo structure: - Delete MANIFEST and META.yml, and hereafter auto-generate them - Modernize .gitignore and MANIFEST.SKIP - The code says Perl licence but the LICENCE file says Artistic, so replace LICENCE file with LICENSE (so spelled), which says Perl - Drop EL-5 support - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %install section - Drop explicit %clean section --- .gitignore | 1 + perl-Regexp-Assemble.spec | 28 +++++++++++++++++----------- sources | 2 +- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 39f11d2..d2ae9ec 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /Regexp-Assemble-0.35.tar.gz /Regexp-Assemble-0.36.tgz /Regexp-Assemble-0.37.tgz +/Regexp-Assemble-0.38.tgz diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 29b455b..57633f3 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,12 +1,10 @@ Name: perl-Regexp-Assemble -Version: 0.37 -Release: 4%{?dist} +Version: 0.38 +Release: 1%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic -Group: Development/Libraries URL: http://search.cpan.org/dist/Regexp-Assemble/ Source0: http://www.cpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) BuildArch: noarch # Module Build BuildRequires: coreutils @@ -29,7 +27,6 @@ BuildRequires: perl(warnings) BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::File::Contents) -BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(Test::Warn) # Runtime Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) @@ -54,7 +51,6 @@ perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install -rm -rf %{buildroot} make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} %{buildroot} @@ -62,20 +58,30 @@ find %{buildroot} -type f -name .packlist -delete %check make test -%clean -rm -rf %{buildroot} - %files %if 0%{?_licensedir:1} -%license LICENCE +%license LICENSE %else -%doc LICENCE +%doc LICENSE %endif %doc Changes examples/ README TODO %{perl_vendorlib}/Regexp/ %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Wed Jun 21 2017 Paul Howarth - 0.38-1 +- Update to 0.38 + - Fix test prereqs; pod tests moved to xt/ (CPAN RT#122136, CPAN RT#122137) + - Adopt new repo structure: + - Delete MANIFEST and META.yml, and hereafter auto-generate them + - Modernize .gitignore and MANIFEST.SKIP + - The code says Perl licence but the LICENCE file says Artistic, so replace + LICENCE file with LICENSE (so spelled), which says Perl +- Drop EL-5 support + - Drop BuildRoot: and Group: tags + - Drop explicit buildroot cleaning in %%install section + - Drop explicit %%clean section + * Sun Jun 04 2017 Jitka Plesnikova - 0.37-4 - Perl 5.26 rebuild diff --git a/sources b/sources index 0a8d705..dffb405 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2f7f232642f0f30f69983ef1316ecb42 Regexp-Assemble-0.37.tgz +SHA512 (Regexp-Assemble-0.38.tgz) = 65f4fefe2ad93bda1a9a367bfd660702ad3fbdef122d4272766afa96b863b7a85850be3261162a9362dba01af8dfc055435f6b125b3268c4f48d46cfc9664ef7 From 8dda371bb7f8ae2b7c70147e5dfa3577ad528349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 12 Jul 2017 14:19:06 +0200 Subject: [PATCH 32/42] perl dependency renamed to perl-interpreter --- perl-Regexp-Assemble.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 57633f3..63ccee5 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -10,7 +10,7 @@ BuildArch: noarch BuildRequires: coreutils BuildRequires: findutils BuildRequires: make -BuildRequires: perl +BuildRequires: perl-interpreter BuildRequires: perl-generators BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime From d1b79ba0d5c94afd22cc0814d0448c93a2300819 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 05:56:29 +0000 Subject: [PATCH 33/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 63ccee5..235a82b 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: http://search.cpan.org/dist/Regexp-Assemble/ @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.38-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Jun 21 2017 Paul Howarth - 0.38-1 - Update to 0.38 - Fix test prereqs; pod tests moved to xt/ (CPAN RT#122136, CPAN RT#122137) From e518b9128c4286a51ab80733006c5a5173ffb3b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 00:24:55 +0000 Subject: [PATCH 34/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 235a82b..65fdc63 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: http://search.cpan.org/dist/Regexp-Assemble/ @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.38-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 4bdbc22f316666a4304cbf0ca77f39acd99234a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 4 Jun 2018 14:27:55 +0200 Subject: [PATCH 35/42] cpan.org addresses moved to MetaCPAN --- perl-Regexp-Assemble.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 65fdc63..18726a4 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -3,8 +3,8 @@ Version: 0.38 Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic -URL: http://search.cpan.org/dist/Regexp-Assemble/ -Source0: http://www.cpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz +URL: https://metacpan.org/release/Regexp-Assemble +Source0: https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz BuildArch: noarch # Module Build BuildRequires: coreutils From 12d87aef4a822299fef67597a79fd59c85e01e5e Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Thu, 28 Jun 2018 08:18:27 +0200 Subject: [PATCH 36/42] Perl 5.28 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 18726a4..90dd293 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Thu Jun 28 2018 Jitka Plesnikova - 0.38-4 +- Perl 5.28 rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.38-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 64839cc9042e96e64aa70a74e4e85fea00d73caa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 19:34:48 +0000 Subject: [PATCH 37/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 90dd293..26707ac 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.38-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Jun 28 2018 Jitka Plesnikova - 0.38-4 - Perl 5.28 rebuild From cf3d663bf8ea85563d462de399dbb9238fb2c10c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 23:50:08 +0000 Subject: [PATCH 38/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 26707ac..d96bbee 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.38-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.38-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 5a9367119ecfd91bdbd8e4c0a0a7842af405d2db Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 31 May 2019 07:15:25 +0200 Subject: [PATCH 39/42] Perl 5.30 rebuild --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index d96bbee..bee9e5d 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri May 31 2019 Jitka Plesnikova - 0.38-7 +- Perl 5.30 rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.38-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 92f5a44113262f4da4287e10b5a1c820de4862cf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 06:15:25 +0000 Subject: [PATCH 40/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- perl-Regexp-Assemble.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index bee9e5d..1d5bfbc 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.38 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble @@ -69,6 +69,9 @@ make test %{_mandir}/man3/Regexp::Assemble.3* %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 0.38-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri May 31 2019 Jitka Plesnikova - 0.38-7 - Perl 5.30 rebuild From 3e153c964f970e09b63645054c15a320bb11ebc5 Mon Sep 17 00:00:00 2001 From: Paul Howarth Date: Tue, 15 Oct 2019 18:39:10 +0100 Subject: [PATCH 41/42] Use author-independent source URL --- perl-Regexp-Assemble.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl-Regexp-Assemble.spec b/perl-Regexp-Assemble.spec index 1d5bfbc..dbf3ba8 100644 --- a/perl-Regexp-Assemble.spec +++ b/perl-Regexp-Assemble.spec @@ -4,14 +4,14 @@ Release: 8%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic URL: https://metacpan.org/release/Regexp-Assemble -Source0: https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/Regexp-Assemble-%{version}.tgz +Source0: https://cpan.metacpan.org/modules/by-module/Regexp/Regexp-Assemble-%{version}.tgz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make -BuildRequires: perl-interpreter BuildRequires: perl-generators +BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) @@ -53,7 +53,7 @@ make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete -%{_fixperms} %{buildroot} +%{_fixperms} -c %{buildroot} %check make test From a6120c649e96b0681530f0efcc3f2c0313db57fd Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:41:35 +0300 Subject: [PATCH 42/42] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index dffb405..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (Regexp-Assemble-0.38.tgz) = 65f4fefe2ad93bda1a9a367bfd660702ad3fbdef122d4272766afa96b863b7a85850be3261162a9362dba01af8dfc055435f6b125b3268c4f48d46cfc9664ef7