From d96f959190dc2fdb4ad4ee4bc9fbc82f8b185be5 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 7 Nov 2008 04:51:21 +0000 Subject: [PATCH 1/5] Initialize branch F-10 for ale --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..dc32377 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-10 From de1b7fe6d89fd87ed1b8b22620d6a04cdef7a53a Mon Sep 17 00:00:00 2001 From: "Douglas E. Warner" Date: Tue, 31 Mar 2009 14:58:56 +0000 Subject: [PATCH 2/5] - 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. --- .cvsignore | 2 +- ale.spec | 12 ++++++++++-- sources | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index de30d24..50517fe 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ale-0.9.0.1.tar.gz +ale-0.9.0.3.tar.gz diff --git a/ale.spec b/ale.spec index d58e344..97eefd4 100644 --- a/ale.spec +++ b/ale.spec @@ -1,6 +1,6 @@ Name: ale -Version: 0.9.0.1 -Release: 2%{?dist} +Version: 0.9.0.3 +Release: 1%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,14 @@ rm -rf %{buildroot} %changelog +* Wed Mar 11 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 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 diff --git a/sources b/sources index 99a9811..cdc2972 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a4e595cfa52485eebd57e4de112b0609 ale-0.9.0.1.tar.gz +ace3d9874577085112adbf409f27b069 ale-0.9.0.3.tar.gz From 5fd6c8d52b4f41fe61c573e144f7f4e8491ba7de Mon Sep 17 00:00:00 2001 From: "Douglas E. Warner" Date: Tue, 31 Mar 2009 15:06:45 +0000 Subject: [PATCH 3/5] fixing changelog date --- ale.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale.spec b/ale.spec index 97eefd4..634edb6 100644 --- a/ale.spec +++ b/ale.spec @@ -60,7 +60,7 @@ rm -rf %{buildroot} %changelog -* Wed Mar 11 2009 Douglas E. Warner - 0.9.0.3-1 +* 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. From ef8cdadc5244c25be80ba97d42673eda53bf5e24 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:26:00 +0000 Subject: [PATCH 4/5] 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 733b36fb85ea0fcd6c83ebcfbaa58083bc4005c7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:41:13 +0000 Subject: [PATCH 5/5] 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 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) diff --git a/branch b/branch deleted file mode 100644 index dc32377..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-10