till pushed to ale (master). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks."

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 16:18:24 UTC 2015


>From 068a32940f09e64aa000150879cd967af5ab7cf6 Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 18:18:08 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks.


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 <cstring>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
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 <rel-eng at lists.fedoraproject.org> - 0.9.0.3-16
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-15
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Sun Apr 13 2014 Pavel Alexeev <Pahan at Hubbitus.info> - 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 <rel-eng at lists.fedoraproject.org> - 0.9.0.3-13
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Wed Jul 17 2013 Petr Pisar <ppisar at redhat.com> - 0.9.0.3-12
-- Perl 5.18 rebuild
-
-* Sat Mar 30 2013 Kevin Fenzi <kevin at scrye.com> - 0.9.0.3-11
-- Rebuild for broken deps in rawhide
-
-* Wed Feb 13 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Wed Jul 18 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Fri Apr 13 2012 Tom Callaway <spot at fedoraproject.org> - 0.9.0.3-8
-- rebuild for new ImageMagick
-
-* Tue Feb 28 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-7
-- Rebuilt for c++ ABI breakage
-
-* Thu Jan 12 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Mon Feb 07 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 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 <tcallawa at redhat.com> - 0.9.0.3-3
-- rebuild for new ImageMagick
-
-* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Tue Mar 31 2009 Douglas E. Warner <silfreed at silfreed.net> - 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 <silfreed at silfreed.net> - 0.9.0.1-4
-- rebuilt for libMagickCore soname bump
-
-* Mon Feb 23 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.0.1-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Tue Sep 23 2008 Douglas E. Warner <silfreed at silfreed.net> 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 <silfreed at silfreed.net> 0.9.0.1-1
-- updating to ale 0.9.0.1
-
-* Fri May 09 2008 Douglas E. Warner <silfreed at silfreed.net> 0.9.0-3
-- adding Requires perl-Image-ExifTool, dcraw
-
-* Mon Apr 21 2008 Douglas E. Warner <silfreed at silfreed.net> 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 <silfreed at silfreed.net> 0.9.0-1
-- update to 0.9.0
-- added GCC 4.3 compilation patch
-
-* Wed Mar 19 2008 Douglas E. Warner <silfreed at silfreed.net> 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 <silfreed at silfreed.net> 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
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/ale.git/commit/?h=master&id=068a32940f09e64aa000150879cd967af5ab7cf6


More information about the scm-commits mailing list