From 54147d7408c76ac2bf5f1437ce2b48adc0fbbd20 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 22 Apr 2008 02:50:02 +0000 Subject: [PATCH 01/17] Initialize branch F-9 for xlhtml --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From 07f68c7109b82c40dc08b1c089625c298b8fa894 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 09:49:30 +0000 Subject: [PATCH 02/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 412ea73..0e3e337 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Text @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 0.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Feb 18 2008 Fedora Release Engineering - 0.5-8 - Autorebuild for GCC 4.3 From f370927fca372b034bc1da614c8e1d2b2dd42387 Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Sun, 1 Mar 2009 16:29:51 +0000 Subject: [PATCH 03/17] Solve the x86_64-redhat-linux-gnu configure target error --- xlhtml.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 0e3e337..ab39fe1 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Text @@ -22,6 +22,7 @@ internet. pptHtml program converts PowerPoint files to HTML. %setup -q %build +rm -f config.{guess,sub} aclocal autoconf automake -a @@ -45,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Mar 01 2009 Robert Scheck 0.5-10 +- Solve the x86_64-redhat-linux-gnu configure target error + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 014268ae5ec4a8c0e8c2c3b4605e7b15d8d6535a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 08:08:12 +0000 Subject: [PATCH 04/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index ab39fe1..9aa8565 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck 0.5-10 - Solve the x86_64-redhat-linux-gnu configure target error From 45603b25b23e7bf6623c1863d02a1ddc189d3c41 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:59 +0000 Subject: [PATCH 05/17] 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 09251b8..f5bcdfb 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xlhtml -# $Id: Makefile,v 1.1 2004/11/08 05:34:16 cvsextras Exp $ +# $Id: Makefile,v 1.2 2004/11/24 05:08:56 gafton Exp $ NAME := xlhtml 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 aafcef20206bbe9b987f348009758419530934a3 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:33:55 +0000 Subject: [PATCH 06/17] 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 09251b8..f5bcdfb 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xlhtml -# $Id: Makefile,v 1.1 2004/11/08 05:34:16 cvsextras Exp $ +# $Id: Makefile,v 1.2 2004/11/24 05:08:56 gafton Exp $ NAME := xlhtml 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 1a3e291ceee2b9a18472c4fbdfd4259f9d9f21d8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:54:37 +0000 Subject: [PATCH 07/17] 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 f5bcdfb..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xlhtml -# $Id: Makefile,v 1.2 2004/11/24 05:08:56 gafton Exp $ -NAME := xlhtml -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 eb198f95b164ad32817a8c29aff3cbe545f8d494 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:54:38 +0000 Subject: [PATCH 08/17] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch 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 f5bcdfb..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xlhtml -# $Id: Makefile,v 1.2 2004/11/24 05:08:56 gafton Exp $ -NAME := xlhtml -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/branch b/branch deleted file mode 100644 index 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 From 2c9f1f2c8acac78a331ddde68015990256e7b46d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 23:21:35 -0600 Subject: [PATCH 09/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 9aa8565..d7ef5bd 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 0.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 50cb12d9bd5684d975c9eba9b93ad7e805975104 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 03:00:27 -0600 Subject: [PATCH 10/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index d7ef5bd..999f8e9 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 0.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 94b6ea6bb53d374fdf99c66cf2ee9c1cdc68ab72 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 22 Jul 2012 00:40:47 -0500 Subject: [PATCH 11/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 999f8e9..6eb1c5c 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0.5-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 0.5-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 35273777760816340533371fade9733d1fcb5c4f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:46:56 -0600 Subject: [PATCH 12/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 6eb1c5c..d0829d5 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.5-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 0.5-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From e6cc12000a82bcc96f48c4f299c42efb035d7ef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 17 Jul 2013 12:05:26 +0200 Subject: [PATCH 13/17] Perl 5.18 rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index d0829d5..ee4dca3 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Wed Jul 17 2013 Petr Pisar - 0.5-16 +- Perl 5.18 rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 0.5-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From adee8ee5fc59d3cb01f8a602a16fa893761a9c77 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 03:23:01 -0500 Subject: [PATCH 14/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index ee4dca3..1c03d1a 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.5-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Jul 17 2013 Petr Pisar - 0.5-16 - Perl 5.18 rebuild From e5aaa9c5b928c379f60fd87e51cdbd15e54b0c70 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 01:00:07 -0500 Subject: [PATCH 15/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index 1c03d1a..b7835ef 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.5-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.5-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 05ba4352356631f413b49edf5196061688a3ad21 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 10:09:49 +0000 Subject: [PATCH 16/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xlhtml.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xlhtml.spec b/xlhtml.spec index b7835ef..b81e588 100644 --- a/xlhtml.spec +++ b/xlhtml.spec @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.5-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.5-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 11f2782bd74accf55e659b30e65d8770d4e37e0d Mon Sep 17 00:00:00 2001 From: Till Maas Date: Tue, 12 May 2015 02:30:16 +0200 Subject: [PATCH 17/17] 2015-05-12: Retired orphaned package, because it was orphaned for more than six weeks. --- .gitignore | 1 - dead.package | 2 + sources | 1 - xlhtml.spec | 105 --------------------------------------------------- 4 files changed, 2 insertions(+), 107 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xlhtml.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 0534263..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -xlhtml-0.5.tgz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..91c452b --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +2015-05-12: Retired orphaned package, because it was orphaned for more than six weeks. + diff --git a/sources b/sources deleted file mode 100644 index e57c43b..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -2ff805c5384bdde9675cb136f54df32e xlhtml-0.5.tgz diff --git a/xlhtml.spec b/xlhtml.spec deleted file mode 100644 index b81e588..0000000 --- a/xlhtml.spec +++ /dev/null @@ -1,105 +0,0 @@ -Name: xlhtml -Summary: Excel 95/97 and PowerPoint to HTML converter -Version: 0.5 -Release: 19%{?dist} - -License: GPLv2+ -Group: Applications/Text -Source0: http://dl.sf.net/chicago/xlhtml-%{version}.tgz -URL: http://chicago.sourceforge.net/xlhtml/ -BuildRequires: autoconf -BuildRequires: automake -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -%description -The xlhtml program will take an Excel 95, or 97 file as input and -convert it to HTML. The output is via standard out so it can be -re-directed to files or piped to filters or used as a gateway to the -internet. pptHtml program converts PowerPoint files to HTML. - - -%prep -%setup -q - -%build -rm -f config.{guess,sub} -aclocal -autoconf -automake -a -%configure -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -rm -rf xlhtml/contrib/CVS - - -%clean -rm -rf $RPM_BUILD_ROOT - -%files -%defattr(-,root,root) -%doc xlhtml/contrib xlhtml/{README,THANKS,TODO,ChangeLog} -%{_bindir}/* -%{_mandir}/man1/* - -%changelog -* Mon Aug 18 2014 Fedora Release Engineering - 0.5-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 0.5-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 0.5-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Jul 17 2013 Petr Pisar - 0.5-16 -- Perl 5.18 rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 0.5-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 0.5-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 0.5-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 0.5-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Jul 27 2009 Fedora Release Engineering - 0.5-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Sun Mar 01 2009 Robert Scheck 0.5-10 -- Solve the x86_64-redhat-linux-gnu configure target error - -* Thu Feb 26 2009 Fedora Release Engineering - 0.5-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Feb 18 2008 Fedora Release Engineering - 0.5-8 -- Autorebuild for GCC 4.3 - -* Sun Aug 26 2007 Aurelien Bompard 0.5-7 -- fix license tag -- rebuild for BuildID - -* Thu Aug 31 2006 Aurelien Bompard 0.5-6 -- rebuild - -* Tue Feb 21 2006 Aurelien Bompard 0.5-5 -- rebuild for FC5 - -* Sun May 22 2005 Jeremy Katz - 0.5-4 -- rebuild on all arches - -* Fri Apr 7 2005 Michael Schwendt -- rebuilt - -* Fri Jun 25 2004 Aurelien Bompard 0:0.5-0.fdr.2 -- cleanup spec file - -* Thu May 13 2004 Aurelien Bompard 0:0.5-0.fdr.1 -- initial Fedora RPM (from PLD)