From 9179701855c58082bf34403d175407e70e0d5898 Mon Sep 17 00:00:00 2001 From: Bill Nottingham <[email protected]> Date: Wed, 25 Nov 2009 23:30:54 +0000 Subject: Fix typo that causes a failure to update the common directory. (releng #2781)
--- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 526bd0f..f410ae1 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: perl-HTML-StripScripts-Parser -# $Id$ +# $Id: Makefile,v 1.1 2009/05/01 20:56:54 ausil Exp $ NAME := perl-HTML-StripScripts-Parser 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)) -- cgit v0.12 From 9b98faba4bebf2803369361c8d3a69f7cfc2b483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= <[email protected]> Date: Mon, 7 Dec 2009 14:51:43 +0000 Subject: - rebuild against perl 5.10.1 --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index dadc02b..933db16 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Dec 7 2009 Stepan Kasal <[email protected]> - 1.02-3 +- rebuild against perl 5.10.1 + * Sat Jul 25 2009 Fedora Release Engineering <[email protected]> - 1.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -- cgit v0.12 From c61b8ce3acb16368760ba9e3beb34dbd4e5afd2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= <[email protected]> Date: Sun, 2 May 2010 14:06:06 +0000 Subject: - Mass rebuild with perl-5.12.0 --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 933db16..7a90f38 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun May 02 2010 Marcela Maslanova <[email protected]> - 1.02-4 +- Mass rebuild with perl-5.12.0 + * Mon Dec 7 2009 Stepan Kasal <[email protected]> - 1.02-3 - rebuild against perl 5.10.1 -- cgit v0.12 From bbd870f1d662fefd0c293750ca4cc46892613d64 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <[email protected]> Date: Thu, 29 Jul 2010 06:53:45 +0000 Subject: dist-git conversion --- .cvsignore | 1 - .gitignore | 1 + Makefile | 21 --------------------- import.log | 1 - 4 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 .cvsignore create mode 100644 .gitignore delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index 220c0bf..0000000 --- a/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -HTML-StripScripts-Parser-1.02.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..220c0bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +HTML-StripScripts-Parser-1.02.tar.gz diff --git a/Makefile b/Makefile deleted file mode 100644 index f410ae1..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: perl-HTML-StripScripts-Parser -# $Id: Makefile,v 1.1 2009/05/01 20:56:54 ausil Exp $ -NAME := perl-HTML-StripScripts-Parser -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) diff --git a/import.log b/import.log deleted file mode 100644 index 583f3dc..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -perl-HTML-StripScripts-Parser-1_02-1_fc10:HEAD:perl-HTML-StripScripts-Parser-1.02-1.fc10.src.rpm:1241385897 -- cgit v0.12 From f85818750d481dd4590df91a45eacb293fd424cb Mon Sep 17 00:00:00 2001 From: Iain Arnell <[email protected]> Date: Sun, 12 Dec 2010 08:23:49 +0100 Subject: doesn't require perl(Test::More) --- perl-HTML-StripScripts-Parser.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 7a90f38..13946b3 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -14,7 +14,6 @@ BuildRequires: perl(HTML::StripScripts) >= 1.04 BuildRequires: perl(Test::More) Requires: perl(HTML::Parser) >= 3.56 Requires: perl(HTML::StripScripts) >= 1.04 -Requires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description @@ -51,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Dec 12 2010 Iain Arnell <[email protected]> 1.02-5 +- doesn't require perl(Test::More) + * Sun May 02 2010 Marcela Maslanova <[email protected]> - 1.02-4 - Mass rebuild with perl-5.12.0 -- cgit v0.12 From dd3e9013e26489f30cb5fd1bb06adb1838816801 Mon Sep 17 00:00:00 2001 From: Xavier Bachelot <[email protected]> Date: Tue, 14 Dec 2010 23:35:39 +0100 Subject: update to 1.03 --- .gitignore | 1 + perl-HTML-StripScripts-Parser.spec | 13 ++++++++++--- sources | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 220c0bf..dcb76c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ HTML-StripScripts-Parser-1.02.tar.gz +/HTML-StripScripts-Parser-1.03.tar.gz diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 13946b3..44ec117 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,17 +1,19 @@ Name: perl-HTML-StripScripts-Parser -Version: 1.02 -Release: 5%{?dist} +Version: 1.03 +Release: 1%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/HTML-StripScripts-Parser/ -Source0: http://www.cpan.org/modules/by-module/HTML/HTML-StripScripts-Parser-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/HTML-StripScripts-Parser-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(HTML::Parser) >= 3.56 BuildRequires: perl(HTML::StripScripts) >= 1.04 BuildRequires: perl(Test::More) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) Requires: perl(HTML::Parser) >= 3.56 Requires: perl(HTML::StripScripts) >= 1.04 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -50,6 +52,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Dec 14 2010 Xavier Bachelot <[email protected]> 1.03-1 +- Update to 1.03. +- Update Source0 URL. +- BuildRequires perl(Test::Pod) and perl(Test::Pod::Coverage). + * Sun Dec 12 2010 Iain Arnell <[email protected]> 1.02-5 - doesn't require perl(Test::More) diff --git a/sources b/sources index a00c531..cfbad5b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0fb38dc2c632844883f3e716b056a88a HTML-StripScripts-Parser-1.02.tar.gz +b4c169034be56590a53f8835529627ba HTML-StripScripts-Parser-1.03.tar.gz -- cgit v0.12 From 9151a239c0cfb3aeb3467f81810e3c4fe5c91765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= <[email protected]> Date: Fri, 17 Dec 2010 06:01:11 +0100 Subject: - 661697 rebuild for fixing problems with vendorach/lib --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 44ec117..a6768c9 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Dec 17 2010 Marcela Maslanova <[email protected]> - 1.03-2 +- 661697 rebuild for fixing problems with vendorach/lib + * Tue Dec 14 2010 Xavier Bachelot <[email protected]> 1.03-1 - Update to 1.03. - Update Source0 URL. -- cgit v0.12 From 4140946a40bf587383ef9835b26db743d57dfd4e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Tue, 8 Feb 2011 18:53:09 -0600 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index a6768c9..f013f13 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Dec 17 2010 Marcela Maslanova <[email protected]> - 1.03-2 - 661697 rebuild for fixing problems with vendorach/lib -- cgit v0.12 From 4a9dabbb381c9bf024c7fb7bf7978c40dd3d3fd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= <[email protected]> Date: Tue, 21 Jun 2011 00:26:13 +0200 Subject: Perl mass rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index f013f13..09feea2 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Jun 21 2011 Marcela Mašláňová <[email protected]> - 1.03-4 +- Perl mass rebuild + * Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 1.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild -- cgit v0.12 From 201ea6cc17c9602923ab53622486fd7545d57ade Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Fri, 13 Jan 2012 08:09:34 -0600 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 09feea2..77aede5 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jan 13 2012 Fedora Release Engineering <[email protected]> - 1.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Jun 21 2011 Marcela Mašláňová <[email protected]> - 1.03-4 - Perl mass rebuild -- cgit v0.12 From 888246df0feb20a0247e57ecc041ae749c7a8682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <[email protected]> Date: Wed, 13 Jun 2012 14:41:57 +0200 Subject: Perl 5.16 rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 77aede5..8f5f6ac 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 5%{?dist} +Release: 6%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jun 13 2012 Petr Pisar <[email protected]> - 1.03-6 +- Perl 5.16 rebuild + * Fri Jan 13 2012 Fedora Release Engineering <[email protected]> - 1.03-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild -- cgit v0.12 From c9892081f32284601cd50a602ad3e7efac6fc7dc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Fri, 20 Jul 2012 10:51:24 -0500 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 8f5f6ac..8bc8a10 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 20 2012 Fedora Release Engineering <[email protected]> - 1.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Wed Jun 13 2012 Petr Pisar <[email protected]> - 1.03-6 - Perl 5.16 rebuild -- cgit v0.12 From 9fa1e85a7fb2dbe5deb8a47b7244fe101a53e7b8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Thu, 14 Feb 2013 06:46:53 -0600 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 8bc8a10..9389dce 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Feb 14 2013 Fedora Release Engineering <[email protected]> - 1.03-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jul 20 2012 Fedora Release Engineering <[email protected]> - 1.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild -- cgit v0.12 From 936e6beb2b802477801f511ddd9499b5b6e886b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <[email protected]> Date: Mon, 22 Jul 2013 06:48:51 +0200 Subject: Perl 5.18 rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 9389dce..3a369b6 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Jul 22 2013 Petr Pisar <[email protected]> - 1.03-9 +- Perl 5.18 rebuild + * Thu Feb 14 2013 Fedora Release Engineering <[email protected]> - 1.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild -- cgit v0.12 From 65d60a89ae860f0acc31b7c090f5ec525cae9e2a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Sat, 3 Aug 2013 16:42:52 -0500 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 3a369b6..0c254ba 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 9%{?dist} +Release: 10%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Aug 03 2013 Fedora Release Engineering <[email protected]> - 1.03-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Mon Jul 22 2013 Petr Pisar <[email protected]> - 1.03-9 - Perl 5.18 rebuild -- cgit v0.12 From 54dba05396e957daa247ce56e3da72ef0eab13e4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Sat, 7 Jun 2014 00:12:02 -0500 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 0c254ba..877be2f 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 10%{?dist} +Release: 11%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 1.03-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering <[email protected]> - 1.03-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild -- cgit v0.12 From 2e1955da84acb3a40deb9386f4bfecf2578110ed Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova <[email protected]> Date: Thu, 28 Aug 2014 09:42:17 +0200 Subject: Perl 5.20 rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 877be2f..3145a2a 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 11%{?dist} +Release: 12%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Aug 28 2014 Jitka Plesnikova <[email protected]> - 1.03-12 +- Perl 5.20 rebuild + * Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 1.03-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild -- cgit v0.12 From 64743bac3c45172df567caad3521158ab533c328 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova <[email protected]> Date: Sat, 6 Jun 2015 06:51:08 +0200 Subject: Perl 5.22 rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 3145a2a..27aaccf 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 12%{?dist} +Release: 13%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jun 06 2015 Jitka Plesnikova <[email protected]> - 1.03-13 +- Perl 5.22 rebuild + * Thu Aug 28 2014 Jitka Plesnikova <[email protected]> - 1.03-12 - Perl 5.20 rebuild -- cgit v0.12 From a0597a2242a93609a45181cf443aaa3b8230e9f8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore <[email protected]> Date: Thu, 18 Jun 2015 03:35:13 +0000 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 27aaccf..5f5026f 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 13%{?dist} +Release: 14%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jun 18 2015 Fedora Release Engineering <[email protected]> - 1.03-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jun 06 2015 Jitka Plesnikova <[email protected]> - 1.03-13 - Perl 5.22 rebuild -- cgit v0.12 From 34584029c7cc4d4c6c817d667391b188df3ff606 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering <[email protected]> Date: Thu, 4 Feb 2016 13:57:57 +0000 Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- perl-HTML-StripScripts-Parser.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-HTML-StripScripts-Parser.spec b/perl-HTML-StripScripts-Parser.spec index 5f5026f..fd944e9 100644 --- a/perl-HTML-StripScripts-Parser.spec +++ b/perl-HTML-StripScripts-Parser.spec @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.03 -Release: 14%{?dist} +Release: 15%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 1.03-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jun 18 2015 Fedora Release Engineering <[email protected]> - 1.03-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild -- cgit v0.12 http://pkgs.fedoraproject.org/cgit/perl-HTML-StripScripts-Parser.git/commit/?h=el6&id=f4f72dff52a98279cca05af35ed8f8369e81472a -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list [email protected] http://lists.fedoraproject.org/admin/lists/[email protected]
