From ee5c5b8f32e1ac3390ef28582b19105a8e4744fa Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:41:48 +0000 Subject: [PATCH 01/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index d7c8551..fea90b4 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Douglas E. Warner - 0.9.0.3-1 - update to 0.9.0.3 - Revise --version to include ImageMagick library information. From 02e36ce2760718f48209a7aaa6540464461a0b09 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:39:00 +0000 Subject: [PATCH 02/18] 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 6d5baef..0ea7c95 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: ale -# $Id$ +# $Id: Makefile,v 1.1 2008/06/02 03:31:07 kevin Exp $ NAME := ale 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 f5372a54e994a33520b84beb6b598cbe20721ab9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:41:14 +0000 Subject: [PATCH 03/18] 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 0ea7c95..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: ale -# $Id: Makefile,v 1.1 2008/06/02 03:31:07 kevin Exp $ -NAME := ale -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 cbc1bda9b9aefb6735160ad8a62605e0743412c8 Mon Sep 17 00:00:00 2001 From: "Tom \"spot\" Callaway" Date: Sun, 19 Sep 2010 23:58:24 +0200 Subject: [PATCH 04/18] Rebuild for new ImageMagick --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index fea90b4..1177144 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sun Sep 15 2010 Tom "spot" Callaway - 0.9.0.3-3 +- rebuild for new ImageMagick + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From bec4bafd82d9bd5019a2d0d1b38d97ce74d21bf5 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 29 Sep 2010 13:54:27 -0700 Subject: [PATCH 05/18] - Rebuilt for gcc bug 634757 --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 1177144..4854457 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Wed Sep 29 2010 jkeating - 0.9.0.3-4 +- Rebuilt for gcc bug 634757 + * Sun Sep 15 2010 Tom "spot" Callaway - 0.9.0.3-3 - rebuild for new ImageMagick From 976883568f06da57cd7e49d2d081103679bfec49 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:46:39 -0600 Subject: [PATCH 06/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 4854457..024df1a 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.9.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Wed Sep 29 2010 jkeating - 0.9.0.3-4 - Rebuilt for gcc bug 634757 From 22106368459c468c2c6d6834f5b28ded1a939e9a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 15:08:08 -0600 Subject: [PATCH 07/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 024df1a..4297590 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 0.9.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 0.9.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 4eeb6156b338ba7b8e5431f9093cee9911501cbf Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 28 Feb 2012 11:42:21 -0600 Subject: [PATCH 08/18] - Rebuilt for c++ ABI breakage --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 4297590..bbee55b 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Tue Feb 28 2012 Fedora Release Engineering - 0.9.0.3-7 +- Rebuilt for c++ ABI breakage + * Thu Jan 12 2012 Fedora Release Engineering - 0.9.0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 21d8f64cfbbe8182f08aab8088884c75168f7c3e Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Fri, 13 Apr 2012 10:10:02 -0400 Subject: [PATCH 09/18] rebuild for new ImageMagick --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index bbee55b..13b7949 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Fri Apr 13 2012 Tom Callaway - 0.9.0.3-8 +- rebuild for new ImageMagick + * Tue Feb 28 2012 Fedora Release Engineering - 0.9.0.3-7 - Rebuilt for c++ ABI breakage From 75ddcb68ffb8965527b160ec81e740f2c1df2309 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:45:21 -0500 Subject: [PATCH 10/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 13b7949..fbf611e 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 0.9.0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Apr 13 2012 Tom Callaway - 0.9.0.3-8 - rebuild for new ImageMagick From 40514bfe47c3a97bb41ac1edbddda112ca942f75 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 10:26:03 -0600 Subject: [PATCH 11/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index fbf611e..6d65ec3 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 0.9.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Jul 18 2012 Fedora Release Engineering - 0.9.0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 6e0df7d7c005fd3f0ba80cea04b5cd4b5843d8f3 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 30 Mar 2013 11:35:22 -0600 Subject: [PATCH 12/18] Rebuild for broken deps in rawhide --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 6d65ec3..02829e2 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sat Mar 30 2013 Kevin Fenzi - 0.9.0.3-11 +- Rebuild for broken deps in rawhide + * Wed Feb 13 2013 Fedora Release Engineering - 0.9.0.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 0346a7460874911c5bb4f0952b7024abbddf92d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Thu, 18 Jul 2013 01:27:36 +0200 Subject: [PATCH 13/18] Perl 5.18 rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 02829e2..f7512c9 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 17 2013 Petr Pisar - 0.9.0.3-12 +- Perl 5.18 rebuild + * Sat Mar 30 2013 Kevin Fenzi - 0.9.0.3-11 - Rebuild for broken deps in rawhide From 8a7597d8c2a6cd5843b5fa9bce2136df11f949c8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:31:30 -0500 Subject: [PATCH 14/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index f7512c9..7d2cee3 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.9.0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Jul 17 2013 Petr Pisar - 0.9.0.3-12 - Perl 5.18 rebuild From 419c693e8c666e5a543ea30b2c8a1db96442743c Mon Sep 17 00:00:00 2001 From: Hubbitus Date: Sun, 13 Apr 2014 16:42:57 +0400 Subject: [PATCH 15/18] - ImageMagick 6.8.8.10-3 rebuild. - Apply patch Patch1: ale-0.9.0.3-format-security.patch to build with -Werror=format-security" flag used in rawhide (bz#1036985) - Fix bogus dates in changelog. --- ale-0.9.0.3-format-security.patch | 33 +++++++++++++++++++++++++++++++ ale.spec | 14 ++++++++++--- 2 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 ale-0.9.0.3-format-security.patch diff --git a/ale-0.9.0.3-format-security.patch b/ale-0.9.0.3-format-security.patch new file mode 100644 index 0000000..e9fa9d4 --- /dev/null +++ b/ale-0.9.0.3-format-security.patch @@ -0,0 +1,33 @@ +--- a/ui/implication.h ++++ a/ui/implication.h +@@ -33,16 +33,16 @@ public: + static void changed(const char *description, const char *changes, const char *option = NULL) { + fprintf(stderr, "\n\n"); + fprintf(stderr, "Program options have been automatically modified to satisfy the following:\n\n"); +- fprintf(stderr, description); ++ fprintf(stderr, "%s", description); + fprintf(stderr, "\n\n"); + + fprintf(stderr, "Changes are as follows:\n\n"); +- fprintf(stderr, changes); ++ fprintf(stderr, "%s", changes); + fprintf(stderr, "\n\n"); + + if (option) { + fprintf(stderr, "This is equivalent to manually setting the following options:\n\n"); +- fprintf(stderr, option); ++ fprintf(stderr, "%s", option); + fprintf(stderr, "\n\n"); + } + } +--- a/ui/unsupported.h ++++ a/ui/unsupported.h +@@ -32,7 +32,7 @@ public: + static void fornow(const char *description) { + fprintf(stderr, "\n\n"); + fprintf(stderr, "The following feature is currently unsupported:\n\n"); +- fprintf(stderr, description); ++ fprintf(stderr, "%s", description); + fprintf(stderr, "\n\n"); + #if 0 + fprintf(stderr, "For more information, see http://auricle.dyndns.org/ALE/unsupported/currently/\n\n"); diff --git a/ale.spec b/ale.spec index 7d2cee3..4cc110e 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -9,6 +9,8 @@ URL: http://auricle.dyndns.org/ALE/ Source0: http://auricle.dyndns.org/ALE/download/%{name}-%{version}.tar.gz # sent patch to upstream mailing list on 2008.09.23 Patch0: ale-0.9.0.1-gcc43.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=1036985 +Patch1: ale-0.9.0.3-format-security.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ImageMagick-devel @@ -26,6 +28,7 @@ multiple inputs representing the same scene. %prep %setup -q %patch0 -p1 +%patch1 -p1 -b.format-security %build @@ -60,6 +63,11 @@ rm -rf %{buildroot} %changelog +* Sun Apr 13 2014 Pavel Alexeev - 0.9.0.3-14 +- ImageMagick 6.8.8.10-3 rebuild. +- Apply patch Patch1: ale-0.9.0.3-format-security.patch to build with -Werror=format-security" flag used in rawhide (bz#1036985) +- Fix bogus dates in changelog. + * Sat Aug 03 2013 Fedora Release Engineering - 0.9.0.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild @@ -90,7 +98,7 @@ rm -rf %{buildroot} * Wed Sep 29 2010 jkeating - 0.9.0.3-4 - Rebuilt for gcc bug 634757 -* Sun Sep 15 2010 Tom "spot" Callaway - 0.9.0.3-3 +* Wed Sep 15 2010 Tom "spot" Callaway - 0.9.0.3-3 - rebuild for new ImageMagick * Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.3-2 @@ -110,7 +118,7 @@ rm -rf %{buildroot} * Mon Feb 23 2009 Fedora Release Engineering - 0.9.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Wed Sep 23 2008 Douglas E. Warner 0.9.0.1-2 +* Tue Sep 23 2008 Douglas E. Warner 0.9.0.1-2 - updated gcc4.3 patch for 0.9.0.1 to compile w/ new fuzz settings * Wed Jun 18 2008 Douglas E. Warner 0.9.0.1-1 From 5c0b39226b9e436a9671d81f1acf46606bd33769 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:23:58 -0500 Subject: [PATCH 16/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 4cc110e..a1c80df 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.9.0.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Apr 13 2014 Pavel Alexeev - 0.9.0.3-14 - ImageMagick 6.8.8.10-3 rebuild. - Apply patch Patch1: ale-0.9.0.3-format-security.patch to build with -Werror=format-security" flag used in rawhide (bz#1036985) From 0628f828ea26d2088c83a1b27a1a13371179f22d Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 15 Aug 2014 20:15:05 +0000 Subject: [PATCH 17/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- ale.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index a1c80df..5b9dac5 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Fri Aug 15 2014 Fedora Release Engineering - 0.9.0.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.9.0.3-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 068a32940f09e64aa000150879cd967af5ab7cf6 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Mon, 13 Apr 2015 18:18:08 +0200 Subject: [PATCH 18/18] 2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. --- .gitignore | 1 - ale-0.9.0.1-gcc43.patch | 11 --- ale-0.9.0.3-format-security.patch | 33 ------- ale.spec | 155 ------------------------------ dead.package | 2 + sources | 1 - 6 files changed, 2 insertions(+), 201 deletions(-) delete mode 100644 .gitignore delete mode 100644 ale-0.9.0.1-gcc43.patch delete mode 100644 ale-0.9.0.3-format-security.patch delete mode 100644 ale.spec create mode 100644 dead.package delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 50517fe..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -ale-0.9.0.3.tar.gz diff --git a/ale-0.9.0.1-gcc43.patch b/ale-0.9.0.1-gcc43.patch deleted file mode 100644 index 87c8e27..0000000 --- a/ale-0.9.0.1-gcc43.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -ruN ale-0.9.0.1-orig/ui/ui.h ale-0.9.0.1/ui/ui.h ---- ale-0.9.0.1-orig/ui/ui.h 2008-06-13 18:20:56.000000000 -0400 -+++ ale-0.9.0.1/ui/ui.h 2008-09-24 09:32:51.000000000 -0400 -@@ -21,6 +21,7 @@ - #ifndef __ui_h__ - #define __ui_h__ - -+#include - #include - #include - #include diff --git a/ale-0.9.0.3-format-security.patch b/ale-0.9.0.3-format-security.patch deleted file mode 100644 index e9fa9d4..0000000 --- a/ale-0.9.0.3-format-security.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- a/ui/implication.h -+++ a/ui/implication.h -@@ -33,16 +33,16 @@ public: - static void changed(const char *description, const char *changes, const char *option = NULL) { - fprintf(stderr, "\n\n"); - fprintf(stderr, "Program options have been automatically modified to satisfy the following:\n\n"); -- fprintf(stderr, description); -+ fprintf(stderr, "%s", description); - fprintf(stderr, "\n\n"); - - fprintf(stderr, "Changes are as follows:\n\n"); -- fprintf(stderr, changes); -+ fprintf(stderr, "%s", changes); - fprintf(stderr, "\n\n"); - - if (option) { - fprintf(stderr, "This is equivalent to manually setting the following options:\n\n"); -- fprintf(stderr, option); -+ fprintf(stderr, "%s", option); - fprintf(stderr, "\n\n"); - } - } ---- a/ui/unsupported.h -+++ a/ui/unsupported.h -@@ -32,7 +32,7 @@ public: - static void fornow(const char *description) { - fprintf(stderr, "\n\n"); - fprintf(stderr, "The following feature is currently unsupported:\n\n"); -- fprintf(stderr, description); -+ fprintf(stderr, "%s", description); - fprintf(stderr, "\n\n"); - #if 0 - fprintf(stderr, "For more information, see http://auricle.dyndns.org/ALE/unsupported/currently/\n\n"); diff --git a/ale.spec b/ale.spec deleted file mode 100644 index 5b9dac5..0000000 --- a/ale.spec +++ /dev/null @@ -1,155 +0,0 @@ -Name: ale -Version: 0.9.0.3 -Release: 16%{?dist} -Summary: Combines multiple inputs of the same scene - -Group: Applications/Multimedia -License: GPLv3 -URL: http://auricle.dyndns.org/ALE/ -Source0: http://auricle.dyndns.org/ALE/download/%{name}-%{version}.tar.gz -# sent patch to upstream mailing list on 2008.09.23 -Patch0: ale-0.9.0.1-gcc43.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=1036985 -Patch1: ale-0.9.0.3-format-security.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: ImageMagick-devel -BuildRequires: fftw-devel >= 3.0.0 -Requires: perl-Image-ExifTool -Requires: dcraw - -%description -ALE is an image-processing program used for tasks such as image mosaicking, -super-resolution, deblurring, noise reduction, anti-aliasing, and scene -reconstruction. Its principle of operation is synthetic capture, combining -multiple inputs representing the same scene. - - -%prep -%setup -q -%patch0 -p1 -%patch1 -p1 -b.format-security - - -%build -%configure \ - --enable-wmx \ - --with-hashmap=gnu \ - --with-imagemagick \ - --with-fftw3 -make %{_smp_mflags} - - -%install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} install - -# install scripts -%{__install} -p -m 0755 scripts/ale-psf-calibrate %{buildroot}%{_bindir} -%{__install} -p -m 0755 scripts/cpfmerge %{buildroot}%{_bindir} -%{__install} -p -m 0755 scripts/sko2cpf %{buildroot}%{_bindir} -%{__install} -p -m 0755 scripts/transform %{buildroot}%{_bindir}/ale-transform - - -%clean -rm -rf %{buildroot} - - -%files -%defattr(-, root, root) -%doc AUTHORS COPYING ChangeLog NEWS README TODO -%{_bindir}/* -%{_mandir}/man1/*.1* - - -%changelog -* Fri Aug 15 2014 Fedora Release Engineering - 0.9.0.3-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.9.0.3-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Apr 13 2014 Pavel Alexeev - 0.9.0.3-14 -- ImageMagick 6.8.8.10-3 rebuild. -- Apply patch Patch1: ale-0.9.0.3-format-security.patch to build with -Werror=format-security" flag used in rawhide (bz#1036985) -- Fix bogus dates in changelog. - -* Sat Aug 03 2013 Fedora Release Engineering - 0.9.0.3-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Jul 17 2013 Petr Pisar - 0.9.0.3-12 -- Perl 5.18 rebuild - -* Sat Mar 30 2013 Kevin Fenzi - 0.9.0.3-11 -- Rebuild for broken deps in rawhide - -* Wed Feb 13 2013 Fedora Release Engineering - 0.9.0.3-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Jul 18 2012 Fedora Release Engineering - 0.9.0.3-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Apr 13 2012 Tom Callaway - 0.9.0.3-8 -- rebuild for new ImageMagick - -* Tue Feb 28 2012 Fedora Release Engineering - 0.9.0.3-7 -- Rebuilt for c++ ABI breakage - -* Thu Jan 12 2012 Fedora Release Engineering - 0.9.0.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 0.9.0.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Sep 29 2010 jkeating - 0.9.0.3-4 -- Rebuilt for gcc bug 634757 - -* Wed Sep 15 2010 Tom "spot" Callaway - 0.9.0.3-3 -- rebuild for new ImageMagick - -* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Mar 31 2009 Douglas E. Warner - 0.9.0.3-1 -- update to 0.9.0.3 -- Revise --version to include ImageMagick library information. -- Add ditz issue database and package document BUG-REPORTING. -- Refine warnings for 8-bit output when --16bpc (incl. default). -- Fix --16bpc default behavior. -- Fixed serious memory leak in alignment code, and less serious leaks. - -* Wed Mar 11 2009 Douglas E. Warner - 0.9.0.1-4 -- rebuilt for libMagickCore soname bump - -* Mon Feb 23 2009 Fedora Release Engineering - 0.9.0.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Sep 23 2008 Douglas E. Warner 0.9.0.1-2 -- updated gcc4.3 patch for 0.9.0.1 to compile w/ new fuzz settings - -* Wed Jun 18 2008 Douglas E. Warner 0.9.0.1-1 -- updating to ale 0.9.0.1 - -* Fri May 09 2008 Douglas E. Warner 0.9.0-3 -- adding Requires perl-Image-ExifTool, dcraw - -* Mon Apr 21 2008 Douglas E. Warner 0.9.0-2 -- adding additional configuration options (imagemagick, fftw3, wmx, - gnu hashmap) and build requires to satisfy them -- installing scripts - -* Mon Apr 21 2008 Douglas E. Warner 0.9.0-1 -- update to 0.9.0 -- added GCC 4.3 compilation patch - -* Wed Mar 19 2008 Douglas E. Warner 0.8.11-1 -- update to 0.8.11 -- updating spec to fedora standards -- updating License to GPLv3 -- removing Requires ldconfig -- shortened summary -- added dist tag - -* Mon Apr 30 2007 Douglas E. Warner 0.8.7-1 -- Initial RPM release. - diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..9263c07 --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. + diff --git a/sources b/sources deleted file mode 100644 index cdc2972..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -ace3d9874577085112adbf409f27b069 ale-0.9.0.3.tar.gz