From c93a7abc0ffc91e3f9ad52de58f98706497ea09a Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 5 Nov 2008 22:28:39 +0000 Subject: [PATCH 01/50] Setup of module pngcrush --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b35f889 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: pngcrush +# $Id$ +NAME := pngcrush +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 +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/sources b/sources new file mode 100644 index 0000000..e69de29 From c1b3723e17b9f22a527a6be7cf2fe4c4ff6b61dd Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 6 Nov 2008 10:15:14 +0000 Subject: [PATCH 02/50] initial package. --- .cvsignore | 1 + import.log | 1 + pngcrush-build.patch | 12 +++++++++ pngcrush.spec | 63 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 5 files changed, 78 insertions(+) create mode 100644 import.log create mode 100644 pngcrush-build.patch create mode 100644 pngcrush.spec diff --git a/.cvsignore b/.cvsignore index e69de29..dc7a45a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +pngcrush-1.6.10.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..7d7aca0 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +pngcrush-1_6_10-3_fc10:HEAD:pngcrush-1.6.10-3.fc10.src.rpm:1225966478 diff --git a/pngcrush-build.patch b/pngcrush-build.patch new file mode 100644 index 0000000..e40a2dc --- /dev/null +++ b/pngcrush-build.patch @@ -0,0 +1,12 @@ +diff -up pngcrush-1.6.10/pngcrush.c.fix pngcrush-1.6.10/pngcrush.c +--- pngcrush-1.6.10/pngcrush.c.fix 2008-08-25 21:00:08.000000000 +0200 ++++ pngcrush-1.6.10/pngcrush.c 2008-10-30 22:51:27.000000000 +0100 +@@ -2821,7 +2821,7 @@ int main(int argc, char *argv[]) + #if !defined(PNG_cHRM_SUPPORTED) || !defined(PNG_hIST_SUPPORTED) || \ + !defined(PNG_iCCP_SUPPORTED) || !defined(PNG_sCAL_SUPPORTED) || \ + !defined(PNG_pCAL_SUPPORTED) || !defined(PNG_sPLT_SUPPORTED) || \ +- !defined(PNG_tIME_SUPPORTED) ++ !defined(PNG_sTER_SUPPORTED) || !defined(PNG_tIME_SUPPORTED) + png_byte chunk_name[5]; + chunk_name[4] = '\0'; + #endif diff --git a/pngcrush.spec b/pngcrush.spec new file mode 100644 index 0000000..c5858e8 --- /dev/null +++ b/pngcrush.spec @@ -0,0 +1,63 @@ +Summary: Optimizer for PNG (Portable Network Graphics) files +Name: pngcrush +Version: 1.6.10 +Release: 3%{?dist} +License: zlib +Group: Applications/File +URL: http://pmt.sourceforge.net/pngcrush/ +Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.bz2 + +# sent upstream 2008-10-31 (mailto:glennrp@users.sf.net) +Patch0: %{name}-build.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: libpng-devel, zlib-devel, pkgconfig + +%description +pngcrush is an optimizer for PNG (Portable Network Graphics) files. It can be +run from a commandline in an MSDOS window, or from a UNIX or LINUX commandline. + +Its main purpose is to reduce the size of the PNG IDAT datastream by trying +various compression levels an PNG filter methods. It also can be used to +remove unwanted ancillary chunks, or to add certain chunks including gAMA, +tRNS, iCCP, and textual chunks. + +%prep +%setup -q +%patch0 -p1 + +%build +rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers +pngflags=$(pkg-config --cflags --libs libpng) +gcc %{optflags} $pngflags -o pngcrush pngcrush.c + +%install +%{__rm} -rf %{buildroot} +%{__install} -D -m0755 pngcrush %{buildroot}%{_bindir}/pngcrush + +%clean +%{__rm} -rf %{buildroot} + +%files +%defattr(-, root, root, -) +%doc ChangeLog.txt +%{_bindir}/pngcrush + +%changelog +* Mon Nov 3 2008 - Gerd Hoffmann - 1.6.10-3.fc9 +- remove all unneeded (zlib/libpng copy) header files. +- fix Source: URL. +- get cflags and libs from pkg-config. + +* Fri Oct 31 2008 - Gerd Hoffmann - 1.6.10-2.fc9 +- use $RPM_OPT_FLAGS. +- use systems zlib and libpng. + +* Wed Oct 15 2008 - Gerd Hoffmann - 1.6.10-1.fc9 +- update to 1.6.10. +- add dist tag to release. +- fix license. +- fix rpmlint warnings. + +* Mon Jul 07 2008 - Patrick Steiner - 1.6.7-1 +- Initial package. diff --git a/sources b/sources index e69de29..b55c3ed 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +375d3119f7dbc53c9c9c6d7764b0fec9 pngcrush-1.6.10.tar.bz2 From da28d967c97219e7fb34ff803c78a610e2ae1358 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 27 Feb 2009 01:13:02 +0000 Subject: [PATCH 03/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index c5858e8..d6119ed 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 3%{?dist} +Release: 4%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 1.6.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Nov 3 2008 - Gerd Hoffmann - 1.6.10-3.fc9 - remove all unneeded (zlib/libpng copy) header files. - fix Source: URL. From 01a332f0c1d6cc9bc80b4bd7e711c8f94c3fdb2a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sun, 26 Jul 2009 19:00:20 +0000 Subject: [PATCH 04/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index d6119ed..a01d391 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 4%{?dist} +Release: 5%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 8cdfb308bf321d92eab4b25ca275103d9fd67a1b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:31:41 +0000 Subject: [PATCH 05/50] 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 b35f889..41bef25 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: pngcrush -# $Id$ +# $Id: Makefile,v 1.1 2008/11/05 22:28:39 kevin Exp $ NAME := pngcrush 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 1388d4cdb59c5e4278c0730e9640e1da16aaaa8e Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 16 Feb 2010 16:22:11 +0000 Subject: [PATCH 06/50] fix FTBFS --- pngcrush-build.patch | 11 ++++++++--- pngcrush.spec | 7 +++++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/pngcrush-build.patch b/pngcrush-build.patch index e40a2dc..95efede 100644 --- a/pngcrush-build.patch +++ b/pngcrush-build.patch @@ -1,6 +1,11 @@ -diff -up pngcrush-1.6.10/pngcrush.c.fix pngcrush-1.6.10/pngcrush.c ---- pngcrush-1.6.10/pngcrush.c.fix 2008-08-25 21:00:08.000000000 +0200 -+++ pngcrush-1.6.10/pngcrush.c 2008-10-30 22:51:27.000000000 +0100 +--- + pngcrush.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: pngcrush-1.6.10/pngcrush.c +=================================================================== +--- pngcrush-1.6.10.orig/pngcrush.c ++++ pngcrush-1.6.10/pngcrush.c @@ -2821,7 +2821,7 @@ int main(int argc, char *argv[]) #if !defined(PNG_cHRM_SUPPORTED) || !defined(PNG_hIST_SUPPORTED) || \ !defined(PNG_iCCP_SUPPORTED) || !defined(PNG_sCAL_SUPPORTED) || \ diff --git a/pngcrush.spec b/pngcrush.spec index a01d391..abd8548 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 5%{?dist} +Release: 6%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -29,7 +29,7 @@ tRNS, iCCP, and textual chunks. %build rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers pngflags=$(pkg-config --cflags --libs libpng) -gcc %{optflags} $pngflags -o pngcrush pngcrush.c +gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %install %{__rm} -rf %{buildroot} @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Tue Feb 16 2010 Gerd Hoffmann - 1.6.10-6 +- Fix FTBFS (#565047). + * Sun Jul 26 2009 Fedora Release Engineering - 1.6.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 3db49eaace6b0a1a33d04010d4c60fc1a389d424 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 09:32:01 +0000 Subject: [PATCH 07/50] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log 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 41bef25..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: pngcrush -# $Id: Makefile,v 1.1 2008/11/05 22:28:39 kevin Exp $ -NAME := pngcrush -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 7d7aca0..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -pngcrush-1_6_10-3_fc10:HEAD:pngcrush-1.6.10-3.fc10.src.rpm:1225966478 From 5ef45fa35b5e8b1c47768dd08189dd035f0e5531 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 09:30:47 -0600 Subject: [PATCH 08/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index abd8548..0413f1c 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 6%{?dist} +Release: 7%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 1.6.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Feb 16 2010 Gerd Hoffmann - 1.6.10-6 - Fix FTBFS (#565047). From 8d4836a9ec87a7eb0b6c4567b4ded0722c547cc9 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Dec 2011 00:51:03 -0500 Subject: [PATCH 09/50] Rebuild for new libpng --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 0413f1c..2413833 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 7%{?dist} +Release: 8%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Tue Dec 06 2011 Adam Jackson - 1.6.10-8 +- Rebuild for new libpng + * Wed Feb 09 2011 Fedora Release Engineering - 1.6.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 2807a5905e198868cd1384e074719be2a96b6819 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 19:04:49 -0600 Subject: [PATCH 10/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 2413833..f272e53 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 8%{?dist} +Release: 9%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.6.10-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Adam Jackson - 1.6.10-8 - Rebuild for new libpng From cee63ab4dea58950e642c413e8cfbbac9d13eebf Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 20 Jul 2012 21:24:44 -0500 Subject: [PATCH 11/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index f272e53..ceff90f 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 9%{?dist} +Release: 10%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 1.6.10-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.6.10-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 2369cf4c50487b9681cce1010b41db5b8c9a9238 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Tue, 31 Jul 2012 14:25:46 -0500 Subject: [PATCH 12/50] Update to 1.7.35 to fix FTBFS. --- .gitignore | 1 + pngcrush.spec | 15 +++++++++------ sources | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index dc7a45a..57812e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ pngcrush-1.6.10.tar.bz2 +/pngcrush-1.7.35.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index ceff90f..0a97fde 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,14 +1,14 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.6.10 -Release: 10%{?dist} +Version: 1.7.35 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ -Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.bz2 +Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.xz # sent upstream 2008-10-31 (mailto:glennrp@users.sf.net) -Patch0: %{name}-build.patch +#Patch0: %{name}-build.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: libpng-devel, zlib-devel, pkgconfig @@ -24,7 +24,7 @@ tRNS, iCCP, and textual chunks. %prep %setup -q -%patch0 -p1 +#%patch0 -p1 %build rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers @@ -40,10 +40,13 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %files %defattr(-, root, root, -) -%doc ChangeLog.txt +%doc ChangeLog.html %{_bindir}/pngcrush %changelog +* Tue Jul 31 2012 Jon Ciesla - 1.7.35-1 +- Update to latest to fix FTBFS. + * Sat Jul 21 2012 Fedora Release Engineering - 1.6.10-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index b55c3ed..2d06e7f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -375d3119f7dbc53c9c9c6d7764b0fec9 pngcrush-1.6.10.tar.bz2 +154e667ddee209b7943c7e649b8722d0 pngcrush-1.7.35.tar.xz From 463d516b18571b9fff59a822a392f10617b8b921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 14 Jan 2013 19:54:38 +0100 Subject: [PATCH 13/50] Update to 1.7.43 --- .gitignore | 1 + pngcrush.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 57812e9..de6a084 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.35.tar.xz +/pngcrush-1.7.43.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index 0a97fde..d26eb3e 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,6 +1,6 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.35 +Version: 1.7.43 Release: 1%{?dist} License: zlib Group: Applications/File @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Sun Jan 13 2013 François Cami - 1.7.43-1 +- New upstream release. + * Tue Jul 31 2012 Jon Ciesla - 1.7.35-1 - Update to latest to fix FTBFS. diff --git a/sources b/sources index 2d06e7f..c779e74 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -154e667ddee209b7943c7e649b8722d0 pngcrush-1.7.35.tar.xz +cd497cea44b99f18ce403c19a67ffea2 pngcrush-1.7.43.tar.xz From fa6ef056169b0466ab30a418faa45f51f07dee40 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 12:07:13 -0600 Subject: [PATCH 14/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index d26eb3e..3a4b4c8 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.43 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/pngcrush %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.7.43-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jan 13 2013 François Cami - 1.7.43-1 - New upstream release. From 77e2f42be4cc8d89a5f32d71566e26b10fea9bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Fri, 31 May 2013 01:51:09 +0200 Subject: [PATCH 15/50] update to 1.7.59 --- .gitignore | 1 + pngcrush-build.patch | 17 ----------------- pngcrush.spec | 34 +++++++++++++++++++--------------- sources | 2 +- 4 files changed, 21 insertions(+), 33 deletions(-) delete mode 100644 pngcrush-build.patch diff --git a/.gitignore b/.gitignore index de6a084..bd3dc8c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.35.tar.xz /pngcrush-1.7.43.tar.xz +/pngcrush-1.7.59.tar.xz diff --git a/pngcrush-build.patch b/pngcrush-build.patch deleted file mode 100644 index 95efede..0000000 --- a/pngcrush-build.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- - pngcrush.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: pngcrush-1.6.10/pngcrush.c -=================================================================== ---- pngcrush-1.6.10.orig/pngcrush.c -+++ pngcrush-1.6.10/pngcrush.c -@@ -2821,7 +2821,7 @@ int main(int argc, char *argv[]) - #if !defined(PNG_cHRM_SUPPORTED) || !defined(PNG_hIST_SUPPORTED) || \ - !defined(PNG_iCCP_SUPPORTED) || !defined(PNG_sCAL_SUPPORTED) || \ - !defined(PNG_pCAL_SUPPORTED) || !defined(PNG_sPLT_SUPPORTED) || \ -- !defined(PNG_tIME_SUPPORTED) -+ !defined(PNG_sTER_SUPPORTED) || !defined(PNG_tIME_SUPPORTED) - png_byte chunk_name[5]; - chunk_name[4] = '\0'; - #endif diff --git a/pngcrush.spec b/pngcrush.spec index 3a4b4c8..41121fa 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,20 +1,20 @@ -Summary: Optimizer for PNG (Portable Network Graphics) files -Name: pngcrush -Version: 1.7.43 -Release: 2%{?dist} -License: zlib -Group: Applications/File -URL: http://pmt.sourceforge.net/pngcrush/ -Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.xz -# sent upstream 2008-10-31 (mailto:glennrp@users.sf.net) -#Patch0: %{name}-build.patch +%global _hardened_build 1 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -BuildRequires: libpng-devel, zlib-devel, pkgconfig +Summary: Optimizer for PNG (Portable Network Graphics) files +Name: pngcrush +Version: 1.7.59 +Release: 1%{?dist} +License: zlib +Group: Applications/File +URL: http://pmt.sourceforge.net/pngcrush/ +Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.xz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: libpng-devel, zlib-devel, pkgconfig %description -pngcrush is an optimizer for PNG (Portable Network Graphics) files. It can be +%{pngcrush} is an optimizer for PNG (Portable Network Graphics) files. It can be run from a commandline in an MSDOS window, or from a UNIX or LINUX commandline. Its main purpose is to reduce the size of the PNG IDAT datastream by trying @@ -24,7 +24,6 @@ tRNS, iCCP, and textual chunks. %prep %setup -q -#%patch0 -p1 %build rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers @@ -41,9 +40,14 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %files %defattr(-, root, root, -) %doc ChangeLog.html -%{_bindir}/pngcrush +%{_bindir}/%{name} %changelog +* Fri May 31 2013 François Cami - 1.7.59-1 +- New upstream release. +- Use more macros. +- Switch to hardened build. + * Thu Feb 14 2013 Fedora Release Engineering - 1.7.43-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index c779e74..e69e963 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cd497cea44b99f18ce403c19a67ffea2 pngcrush-1.7.43.tar.xz +865224158ddd216f30887ca097cea738 pngcrush-1.7.59.tar.xz From 1a79aa087ddac76c9212d9c9fd8c6b8b9e4b312f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sun, 2 Jun 2013 20:44:48 +0200 Subject: [PATCH 16/50] switch to the smaller -nolib archive. --- .gitignore | 1 + pngcrush.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bd3dc8c..5b483c9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.35.tar.xz /pngcrush-1.7.43.tar.xz /pngcrush-1.7.59.tar.xz +/pngcrush-1.7.59-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index 41121fa..2d6e03b 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,11 +4,11 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.59 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ -Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}.tar.xz +Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: libpng-devel, zlib-devel, pkgconfig @@ -23,7 +23,7 @@ remove unwanted ancillary chunks, or to add certain chunks including gAMA, tRNS, iCCP, and textual chunks. %prep -%setup -q +%setup -q -n %{name}-%{version}-nolib %build rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers @@ -43,6 +43,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Sun Jun 2 2013 François Cami - 1.7.59-2 +- Switch to the smaller -nolib archive. + * Fri May 31 2013 François Cami - 1.7.59-1 - New upstream release. - Use more macros. diff --git a/sources b/sources index e69e963..90851bd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -865224158ddd216f30887ca097cea738 pngcrush-1.7.59.tar.xz +b57397564357cfa5954e04328a2c945c pngcrush-1.7.59-nolib.tar.xz From 324f565ebca057b40e5f1253c17dc327739efd89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Tue, 30 Jul 2013 19:29:49 +0200 Subject: [PATCH 17/50] Fix obvious typos in description. --- pngcrush.spec | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pngcrush.spec b/pngcrush.spec index 2d6e03b..eb14354 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.59 -Release: 2%{?dist} +Release: 3%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -14,11 +14,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: libpng-devel, zlib-devel, pkgconfig %description -%{pngcrush} is an optimizer for PNG (Portable Network Graphics) files. It can be -run from a commandline in an MSDOS window, or from a UNIX or LINUX commandline. - +pngcrush is a commandline optimizer for PNG (Portable Network Graphics) files. Its main purpose is to reduce the size of the PNG IDAT datastream by trying -various compression levels an PNG filter methods. It also can be used to +various compression levels and PNG filter methods. It also can be used to remove unwanted ancillary chunks, or to add certain chunks including gAMA, tRNS, iCCP, and textual chunks. @@ -43,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Tue Jul 30 2013 François Cami - 1.7.59-3 +- Fix obvious typos in description. + * Sun Jun 2 2013 François Cami - 1.7.59-2 - Switch to the smaller -nolib archive. From 6f0373210a22fdcac41bd89fc16f3986f0a78a81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Tue, 30 Jul 2013 19:35:58 +0200 Subject: [PATCH 18/50] New upstream release. --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5b483c9..361dee2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.43.tar.xz /pngcrush-1.7.59.tar.xz /pngcrush-1.7.59-nolib.tar.xz +/pngcrush-1.7.66-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index eb14354..60bc320 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.59 -Release: 3%{?dist} +Version: 1.7.66 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -41,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Tue Jul 30 2013 François Cami - 1.7.66-1 +- New upstream release. + * Tue Jul 30 2013 François Cami - 1.7.59-3 - Fix obvious typos in description. diff --git a/sources b/sources index 90851bd..b107eeb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b57397564357cfa5954e04328a2c945c pngcrush-1.7.59-nolib.tar.xz +3471f4413c25a043e4c2cea731ecff82 pngcrush-1.7.66-nolib.tar.xz From c84b45cabc9f0b8de1a1b458c791147e344e077f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 16 Dec 2013 22:54:32 +0100 Subject: [PATCH 19/50] New upstream release. --- .gitignore | 1 + pngcrush.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 361dee2..8779a1e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.59.tar.xz /pngcrush-1.7.59-nolib.tar.xz /pngcrush-1.7.66-nolib.tar.xz +/pngcrush-1.7.69-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index 60bc320..f11f321 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.66 +Version: 1.7.69 Release: 1%{?dist} License: zlib Group: Applications/File @@ -41,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Tue Dec 16 2013 François Cami - 1.7.69-1 +- New upstream release. + * Tue Jul 30 2013 François Cami - 1.7.66-1 - New upstream release. diff --git a/sources b/sources index b107eeb..be7b7a7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3471f4413c25a043e4c2cea731ecff82 pngcrush-1.7.66-nolib.tar.xz +ca04228fd78455b805592e78fa8ba0c8 pngcrush-1.7.69-nolib.tar.xz From ad5872026feafcd0b23bfcc602bc9a04a99abd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 16 Dec 2013 22:55:55 +0100 Subject: [PATCH 20/50] fix changelog --- pngcrush.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pngcrush.spec b/pngcrush.spec index f11f321..a58be94 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.69 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -41,7 +41,10 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog -* Tue Dec 16 2013 François Cami - 1.7.69-1 +* Mon Dec 16 2013 François Cami - 1.7.69-2 +- Fix changelog. + +* Mon Dec 16 2013 François Cami - 1.7.69-1 - New upstream release. * Tue Jul 30 2013 François Cami - 1.7.66-1 From 23966af116fe36fc2bbb226475cd1a391dee83f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 30 Dec 2013 00:49:04 +0100 Subject: [PATCH 21/50] New upstream release. --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8779a1e..6ce5e43 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.59-nolib.tar.xz /pngcrush-1.7.66-nolib.tar.xz /pngcrush-1.7.69-nolib.tar.xz +/pngcrush-1.7.70-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index a58be94..71dcf3f 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.69 -Release: 2%{?dist} +Version: 1.7.70 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -41,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Sun Dec 29 2013 François Cami - 1.7.70-1 +- New upstream release. + * Mon Dec 16 2013 François Cami - 1.7.69-2 - Fix changelog. diff --git a/sources b/sources index be7b7a7..b013b86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ca04228fd78455b805592e78fa8ba0c8 pngcrush-1.7.69-nolib.tar.xz +cd1619005f46f4032442bdc0e49d9212 pngcrush-1.7.70-nolib.tar.xz From 309ae13f1ac34a1065653ee84e0b009b3d53d948 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 11:34:14 -0500 Subject: [PATCH 22/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 71dcf3f..84949bf 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.70 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -41,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.7.70-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Dec 29 2013 François Cami - 1.7.70-1 - New upstream release. From e91d19f36d0f517a6914a8fc46f952bd34e02418 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 19:19:03 +0000 Subject: [PATCH 23/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 84949bf..e661c08 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.70 -Release: 2%{?dist} +Release: 3%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -41,6 +41,9 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %{_bindir}/%{name} %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 1.7.70-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.7.70-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 4fe42ad5cafe2302f6c828ed0c5ceec20f16d16c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Thu, 23 Oct 2014 23:00:20 +0200 Subject: [PATCH 24/50] new upstream release + add man page from Debian sid --- .gitignore | 1 + pngcrush.sgml | 549 ++++++++++++++++++++++++++++++++++++++++++++++++++ pngcrush.spec | 23 ++- sources | 2 +- 4 files changed, 567 insertions(+), 8 deletions(-) create mode 100644 pngcrush.sgml diff --git a/.gitignore b/.gitignore index 6ce5e43..149a816 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.66-nolib.tar.xz /pngcrush-1.7.69-nolib.tar.xz /pngcrush-1.7.70-nolib.tar.xz +/pngcrush-1.7.78-nolib.tar.xz diff --git a/pngcrush.sgml b/pngcrush.sgml new file mode 100644 index 0000000..b4717fd --- /dev/null +++ b/pngcrush.sgml @@ -0,0 +1,549 @@ + + David"> + Whedon"> + + Mon Apr 30, 2001"> + + 1"> + dwhedon@gordian.com"> + + pngcrush"> + pngcrush"> + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2000 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + pngcrush + + optimizes (or modifies) PNG (Portable Network Graphics) files. + + + + pngcrush + + + infile.png + outfile.png + + + pngcrush -e ext + + file1.png + file2.png + ... + + + pngcrush -d dir + + file1.png + file2.png + ... + + + + DESCRIPTION + &pngc; is an optimizer for PNG (Portable Network Graphics) files. Its +main purpose is to reduce the size of the file's IDAT chunk (or stream). &pngc; can also be used to modify a PNG's ancillary chunks (example: transparency information or textual comments). Some familiarity with the PNG (pronounced 'ping') format may be helpful to users of &pngc;. &pngc; has reasonable defaults so running with no options may produce smaller files. This document briefly describes the PNG format where necessary to understand &pngc;. For complete documentation, see : + +http://www.libpng.org/pub/png/. + + The actual pixel data of a PNG is contained in one or many IDAT chunks. To make an IDAT chunk PNG encoders take the raw pixel data, filter it with one of 5 different filters (See Section ) then compress it. &pngc; reduces the size of PNG files by choosing a different filter or compression methods from those used in the input file. &pngc; tries multiple filter/compression methods and compares the size of the resulting IDAT chunk. The filter/compression method with the smallest IDAT chunk is chosen for the output file. The filter and compression levels &pngc; tries are controlled by command line options. All of the filter methods and compression levels are lossless; they will not reduce image quality. + In addition to reducing the size of a PNG file, &pngc; can modify ancillary chunks. Ancillary chunks are optional information including transparency (tRNS), gamma (gAMMA), standard RGB color space conformance (sRGB) or textual information (iTXt, tEXt or zTXt). See the associated command line options for details on manipulating these chunks. + + + OPTIONS + + + + + + If file has an IDAT chunk greater than the integer size, it will be considered to be already crushed and will not be processed further. + + + + + + +Force output bit depth to n. See Section for bit depth restrictions. + + + + + + + +Specify the default background color for the image. Some PNG viewers will use this background when displaying the image. Background is specified by r, g and b integers between 0 and (2⁁bitdepth)-1. For output color type 0 and 4 (gray, see section ) the green index is used as the gray level of the background. + + + + + + + +Use brute force, try 114 different filter/compression methods [11-124]. This option is very time-consuming and generally not worthwhile. You can restrict this option to certain filter types, compression levels, or strategies by following it with , , or . For example: + + &pngc; -brute -f 0 infile.png + + +Will try only methods that use filter type 0. + + + + + + + +Set the output image color type to type, one of [0, 2, 4, or 6] (see section ). Future versions of &pngc; will also allow color type 3, if there are 256 or fewer colors present in the input file. Color types 4 and 6 are padded with an opaque alpha channel if the input file does not have alpha information. You can use 0 or 4 to convert color to grayscale. Use 0 or 2 to delete an unwanted alpha channel. Default is to use same color type as the input file. + + + + + + + + +Specify a directory for all output files. All output files will have the same name as their respective input files. + + + + + + + +Double the images gamma. This is used for fixing gamma in PhotoShop 5.0c5.02 files. It has been claimed that the PS5 bug is actually more complex than that, in some unspecified way. + + + + + + + +Specify a new extension ext for all output files. + + + + + + + +Forces &pngc; to call exit() rather than return() when it is finished. It is unclear to this writer why this option exists. + + + + + + + + +Specify filter (see section ) to use with the method specified in the preceding or option. Valid filter types are [0-4] : use specified filter, [5]: use adaptive filtering. + + + + + + + +Fix otherwise fatal conditions such as bad CRCs. The CRC (Cyclic Redundancy Check) is present in every chunk and can alert the decoder of corrupt data. + + + + + + + +Write a new output file even if larger than input. Otherwise the input file will be copied to output if it is smaller than any generated file and no chunk additions, removals, or changes were requested. + + + + + + + +Value to insert in gAMA chunk, only if the input file has no gAMA chunk. To replace an existing gAMA chunk, use the option. Some decoders will use the gAMA chunk to more accurately display the image. gamma relates the output intensity to the input samples (input_sample = light_out^GAMMA). gamma can be any integer between 0 and 2^32 and is interpreted as GAMMA*100000. For example, if you wanted a GAMMA of 1/2.2, you would enter 45455 for gamma. + + + + + + + +Display help and legal notices. + + + + + + + + +Insert an (uncompressed) iTXt chunk. indicates whether chunk should be inserted before or after the IDAT chunk, (see Section ). + + + + + + + +keep named chunk chunk_name even if the PNG datastream becomes invalid. Currently only dSIG is recognized as an acceptable value. + + + + + + + +zlib compression level to use on the filtered IDAT chunk with the method specified by the preceding or option. zlib compression levels are integers between 0 and 9. 0 = no compression, 1 = fastest compression, and 9 = best compression. + + + + + + + +Make the file more compressible by performing a lossless, reversible, color transformation. The resulting file is a MNG format file, not a PNG, and should be given the .mng file extension. The option has no effect on grayscale or indexed-color PNG files. + + + + + + + +&pngc; method [0-200] to try (0 means try all of 1-10). Can be repeated as in . This can be useful if you run out of memory when &pngc; tries methods 2, 3, 5, 6, 8, 9, or 10 which use filtering and are memory intensive. Method 1, 4, and 7 use no filtering; methods 11 and up use specified filter, compression level, and strategy. + + + + + + + +Set the maximum idat size to be used when creating the compression buffer.[1 through 524288] + + + + + + + +write a new MNG, do not crush embedded PNGs. + + + + + + + +Do not do compression or write output file. This is useful in conjunction with the option to get info, or to test decode speed. + + + + + + + + +This option tells &pngc; to pause and wait for [enter] key whenever the screen fills. + + + + + + + +Truncates the PLTE. The PLTE chunk contains from 1 to 256 palette entries. Be sure not to truncate it to less than the greatest index present in IDAT. + + + + + + + +quiet, the opposite of verbose. + + + + + + + +Name of an ancillary chunk or optional PLTE to be removed. Be careful with +this. Please don't use this feature to remove transparency, gamma, copyright, +or other valuable information. To remove several different chunks, repeat: +. Known chunks (those in the PNG spec or extensions document) can be named with all lower-case letters, so is +equivalent to . But note: removes all forms of text +chunks; Exact case is required to remove unknown chunks. To do surgery with a +chain-saw, removes all known ancillary chunks except for tRNS, and + removes all but tRNS and gAMA. + + + + + + + +Force a specified gamma in the output file even if gAMA is present in the input. See the for more information. + + + + + + + +Write a pHYs chunk with a resolution of dpi. The pHYs chunk indicates the desired pixel size. + + + + + + + +Force writing of unknown chunks. If the input image has chunks that are not part of the PNG specification, they should not be discarded. + + + + + + + +Set value of rendering intent for sRGB chunk to n where n is between 0 and 3. The appropriate rendering intent depends on how the image will be used: + +0 - Perceptual: when good adaptation to the output device gamut at the expense of colorimetric accuracy is desired, example: photographs. +1 - Relative colorimetric: images requiring color appearance matching (relative to the output device white point), example: logos. +2: Saturation: preservation of saturation at the expense of hue and lightness is preferred, example: charts and graphs. +3: Absolute colorimetric: images requiring preservation of absolute colorimetry, example: proofs (previews of images destined for a different output device). + + + + + + + + +Insert a tEXt chunk. indicates whether chunk should be inserted before or after the IDAT chunk, (see Section ). + + + + + + + +Reset file modification time to newer time stamp. This is the default. + + + + + + + +Retain input file modification time stamp. The default is which is the opposite of this option. + + + + + + + +Insert a tRNS (transparency) chunk, if no tRNS chunk found in file. You must give all five parameters regardless of the color type, scaled to the output bit depth. See the PNG documentation for details. + + + + + + + +Insert a tRNS (transparency) chunk, if no tRNS chunk found in file. See the PNG documentation for details. + + + + + + + +Display more detailed information. Repeat the option (use "-v -v") for even more. + + + + + + + +Specify size in kbytes (or bytes in the case of 512) of the sliding +compression window where size is one of [32, 16, 8, 4, 2, 1, or 512]. It's best to +use the default (32) unless you run out of memory. The program will use a +smaller window anyway when the uncompressed file is smaller than 16k. + + + + + + + +Specify the zlib compression strategy [0, 1, or 2] to be used on the filtered IDAT chunk for the method of the preceding . The zlib strategy parameter tunes the compression algorithm and is one of: + +0 : default, most compression is aimed towards string matching +1 : some string matching, some Huffman coding +2 : use only Huffman coding + + + + + + + + + +Insert a zTXt chunk. indicates whether chunk should be inserted before or after the IDAT chunk, (see Section ). + + + + + + + +zTXt chunk to insert (see -text). + + + + + + +Color Types + +The PNG specification provides for five color types. The color type determines how the IDAT chunk will be interpreted by the decoder. Choosing a color type appropriate for the color information in an image can in principle reduce the size. However, certain combinations of and require color counting which is currently disabled. In such cases no reduction will take place. Following are the PNG color types followed by their supported bit depths (Note &pngc; does not support changing a file to color type 3 from another color type.): + +0 : grayscale without alpha channel (1,2,4,8,16) +2 : true color without alpha channel (8,16) +3 : indexed color (1,2,4,8) +4 : grayscale with alpha channel (8,16) +6 : true color with alpha channel (8,16) + + +An alpha channel represents transparency on a per pixel basis. An alpha value of zero is completely transparent. An alpha channel of 2^bitdepth-1 is completely opaque. + + + +Filter Types + +The IDAT chunk can optionally be filtered before compression. These filters can make the IDAT chunk more compressible without losing any data and result in a smaller PNG file. These filters are applied to the bytes of the IDAT chunk, not the pixels. Following is a brief description of the filters, see the PNG specification for details: + + +0 : no filter +1 : 'sub' transmits the difference between each byte and the value of the corresponding byte of the prior pixel. +2 : 'up' transmits the difference between each byte and the value of the corresponding byte of the pixel above this pixel +3 : 'average' transmits the difference between each byte and the average of the bytes described in filters 1 and 2 +4 : 'paeth' computes a simple linear function of the corresponding byte in three neighboring pixels (paeth_predictor = left + above - upper left), then transmits the difference between the byte in question and the neighboring byte closest to the value of paeth_predictor. + + + +Text Chunks +Textual information pertaining to an image can be conveyed with the tEXt, iTXt and zTXt chunks. All text chunks consist of a keyword followed by a string. The following keywords are defined in the PNG specification: (you may invent keywords for other purposes): + +Title: Short title or caption for image +Author: Name of image's creator +Description: Longer description of image +Copyright: Copyright notice +Creation Time: Time of original image creation +Software: Software used to create the image +Disclaimer: Legal disclaimer +Warning: Warning of nature of content +Source: Device used to create the image +Comment: Miscellaneous comment. + +A tEXt chunk stores text in the ISO/IEC 8859-1 (Latin-1) character set. zTXt chunks also use the Latin-1 character set, but the text is compressed. This can be useful for large text chunks. iTXt chunks consist of text in the UTF-8 of the Unicode character set. + +keyword must be at least 1 character and less than 80 characters. text must be less than 2048 characters when using &pngc; For now, you can only add ten tEXt, iTXt, or zTXt chunks per &pngc; run. + + + + SEE ALSO + png(5), libpng(3), zlib(3). + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Much of the + information was gleaned from "PNG (Portable Network Graphics) Specification, Version 1.2" + + +
+ + diff --git a/pngcrush.spec b/pngcrush.spec index e661c08..d1562ee 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,15 +3,16 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.70 -Release: 3%{?dist} +Version: 1.7.78 +Release: 1%{?dist} License: zlib Group: Applications/File -URL: http://pmt.sourceforge.net/pngcrush/ +URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz - +# from Debian sid. +Source1: %{name}.sgml BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -BuildRequires: libpng-devel, zlib-devel, pkgconfig +BuildRequires: libpng-devel, zlib-devel, pkgconfig, docbook-utils %description pngcrush is a commandline optimizer for PNG (Portable Network Graphics) files. @@ -22,15 +23,18 @@ tRNS, iCCP, and textual chunks. %prep %setup -q -n %{name}-%{version}-nolib +cp %{SOURCE1} . %build rm -f z*.h crc32.h deflate.h inf*.h trees.h png*.h # force using system headers pngflags=$(pkg-config --cflags --libs libpng) -gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c +gcc %{optflags} $pngflags -lz -o %{name} %{name}.c +docbook2man %{name}.sgml %install %{__rm} -rf %{buildroot} -%{__install} -D -m0755 pngcrush %{buildroot}%{_bindir}/pngcrush +%{__install} -D -m0755 %{name} %{buildroot}%{_bindir}/%{name} +%{__install} -D -m0644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 %clean %{__rm} -rf %{buildroot} @@ -39,8 +43,13 @@ gcc %{optflags} $pngflags -lz -o pngcrush pngcrush.c %defattr(-, root, root, -) %doc ChangeLog.html %{_bindir}/%{name} +%doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Oct 23 2014 François Cami - 1.7.78-1 +- New upstream release. +- Add man page from Debian sid (1.7.65-0.1). + * Sun Aug 17 2014 Fedora Release Engineering - 1.7.70-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index b013b86..4dc9b46 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cd1619005f46f4032442bdc0e49d9212 pngcrush-1.7.70-nolib.tar.xz +68d83c859dccb41e11a1af121cc86e02 pngcrush-1.7.78-nolib.tar.xz From d028ee94697b389cd4886347bcff96114ef23084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 24 Nov 2014 22:17:26 +0100 Subject: [PATCH 25/50] New upstream release (1.7.81). --- .gitignore | 1 + pngcrush.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 149a816..b1d6c64 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.69-nolib.tar.xz /pngcrush-1.7.70-nolib.tar.xz /pngcrush-1.7.78-nolib.tar.xz +/pngcrush-1.7.81-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index d1562ee..3d99eab 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.78 +Version: 1.7.81 Release: 1%{?dist} License: zlib Group: Applications/File @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Nov 24 2014 François Cami - 1.7.81-1 +- New upstream release. + * Thu Oct 23 2014 François Cami - 1.7.78-1 - New upstream release. - Add man page from Debian sid (1.7.65-0.1). diff --git a/sources b/sources index 4dc9b46..a0071d3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -68d83c859dccb41e11a1af121cc86e02 pngcrush-1.7.78-nolib.tar.xz +3aeec6453c1562f4398e6e146b05a9f5 pngcrush-1.7.81-nolib.tar.xz From b67525d64af7a1765bf75a8bb82537348bf660ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 5 Jan 2015 17:08:51 +0100 Subject: [PATCH 26/50] New upstream release (1.7.82). --- .gitignore | 1 + pngcrush.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b1d6c64..92a97a4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.70-nolib.tar.xz /pngcrush-1.7.78-nolib.tar.xz /pngcrush-1.7.81-nolib.tar.xz +/pngcrush-1.7.82-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index 3d99eab..50d0a92 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.81 +Version: 1.7.82 Release: 1%{?dist} License: zlib Group: Applications/File @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Jan 05 2015 François Cami - 1.7.82-1 +- New upstream release. + * Mon Nov 24 2014 François Cami - 1.7.81-1 - New upstream release. diff --git a/sources b/sources index a0071d3..177762f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3aeec6453c1562f4398e6e146b05a9f5 pngcrush-1.7.81-nolib.tar.xz +b1124dde7af5fcd869aff379393246a5 pngcrush-1.7.82-nolib.tar.xz From 5f0145e60dd7934a5243a555e29c0ba0e4a004bd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 15:32:19 +0000 Subject: [PATCH 27/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 50d0a92..f3ef888 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.82 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.7.82-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Jan 05 2015 François Cami - 1.7.82-1 - New upstream release. From 2fd4731f9d8d1f05dff24539f116470bcfae2b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Tue, 15 Dec 2015 00:42:45 +0100 Subject: [PATCH 28/50] New upstream release. --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 92a97a4..8dac5fd 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.78-nolib.tar.xz /pngcrush-1.7.81-nolib.tar.xz /pngcrush-1.7.82-nolib.tar.xz +/pngcrush-1.7.88-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index f3ef888..c191d98 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.82 -Release: 2%{?dist} +Version: 1.7.88 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Dec 14 2015 François Cami - 1.7.88-1 +- New upstream release. + * Thu Jun 18 2015 Fedora Release Engineering - 1.7.82-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 177762f..0200250 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b1124dde7af5fcd869aff379393246a5 pngcrush-1.7.82-nolib.tar.xz +982ee64e147a4235d4c297d29212ecaa pngcrush-1.7.88-nolib.tar.xz From 070cde9a7041334d8da60b0990bc9b5c82148df5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 18:15:35 +0000 Subject: [PATCH 29/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index c191d98..b52cac4 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.7.88 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.7.88-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Dec 14 2015 François Cami - 1.7.88-1 - New upstream release. From 7a4d91f8345dfe156cf226842acb41df4d6b8541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Mon, 28 Mar 2016 01:52:33 +0200 Subject: [PATCH 30/50] New upstream release (1.8.0). --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8dac5fd..d2ac9eb 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.81-nolib.tar.xz /pngcrush-1.7.82-nolib.tar.xz /pngcrush-1.7.88-nolib.tar.xz +/pngcrush-1.8.0-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index b52cac4..c6ee57a 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.7.88 -Release: 2%{?dist} +Version: 1.8.0 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Mar 28 2016 François Cami - 1.8.0-1 +- New upstream release. + * Thu Feb 04 2016 Fedora Release Engineering - 1.7.88-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 0200250..976249f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -982ee64e147a4235d4c297d29212ecaa pngcrush-1.7.88-nolib.tar.xz +a41bf4029fb0087012ea402e9282b503 pngcrush-1.8.0-nolib.tar.xz From 75509502edb6a18eea38ddfdaab919ea6821af19 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 07:40:25 +0000 Subject: [PATCH 31/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index c6ee57a..a3ad0f4 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Mon Mar 28 2016 François Cami - 1.8.0-1 - New upstream release. From 725e72ba64609f54152ebcf0198f24622d8a2d56 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 08:50:23 +0000 Subject: [PATCH 32/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index a3ad0f4..5324961 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.0 -Release: 2%{?dist} +Release: 3%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 59e4851bae5364152fada27b64840a5c77abe88e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 06:12:17 +0000 Subject: [PATCH 33/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 5324961..a8bf0c2 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.0 -Release: 3%{?dist} +Release: 4%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 5db4183d644a6a0a3dc6430c3d41c100f1c04771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sun, 21 Jan 2018 21:47:05 +0100 Subject: [PATCH 34/50] New upstream release (1.8.11). --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d2ac9eb..05df61d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.82-nolib.tar.xz /pngcrush-1.7.88-nolib.tar.xz /pngcrush-1.8.0-nolib.tar.xz +/pngcrush-1.8.11-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index a8bf0c2..a6d4690 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.8.0 -Release: 4%{?dist} +Version: 1.8.11 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jan 21 2018 François Cami - 1.8.11-1 +- New upstream release. + * Thu Aug 03 2017 Fedora Release Engineering - 1.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index 976249f..cfb8f21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a41bf4029fb0087012ea402e9282b503 pngcrush-1.8.0-nolib.tar.xz +SHA512 (pngcrush-1.8.11-nolib.tar.xz) = 1b6d1c5b934d3d349031da1e49f1b3206cb0540a3d3a36219a800f052cd30da305b80902f7bdccfcc1487babb826a925048d30f9fbae598ca8ca18d60b3c49e1 From d566fc23961039be0e38861921e498dbd80ea303 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 05:26:10 +0000 Subject: [PATCH 35/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index a6d4690..2f0ee12 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -4,7 +4,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.11 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -46,6 +46,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.8.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Sun Jan 21 2018 François Cami - 1.8.11-1 - New upstream release. From 73a2b88bcaf405b04a9edc5ceb3b634db1c87a11 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:20:05 +0100 Subject: [PATCH 36/50] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- pngcrush.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 2f0ee12..640ffec 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -11,7 +11,6 @@ URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz # from Debian sid. Source1: %{name}.sgml -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: libpng-devel, zlib-devel, pkgconfig, docbook-utils %description From beb1e2d495fdd94b00d84b01846e4ef27cdf846c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 09:11:55 +0100 Subject: [PATCH 37/50] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- pngcrush.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/pngcrush.spec b/pngcrush.spec index 640ffec..89ac4a4 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -35,9 +35,6 @@ docbook2man %{name}.sgml %{__install} -D -m0755 %{name} %{buildroot}%{_bindir}/%{name} %{__install} -D -m0644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 -%clean -%{__rm} -rf %{buildroot} - %files %defattr(-, root, root, -) %doc ChangeLog.html From 5d53a2504c51bcc5ce9286e7bd7bca3e7003a5db Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 20 Feb 2018 21:31:49 +0100 Subject: [PATCH 38/50] version 1.8.13 --- .gitignore | 1 + pngcrush.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 05df61d..95b76ef 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ pngcrush-1.6.10.tar.bz2 /pngcrush-1.7.88-nolib.tar.xz /pngcrush-1.8.0-nolib.tar.xz /pngcrush-1.8.11-nolib.tar.xz +/pngcrush-1.8.13-nolib.tar.xz diff --git a/pngcrush.spec b/pngcrush.spec index 89ac4a4..e2c1581 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,8 +3,8 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush -Version: 1.8.11 -Release: 2%{?dist} +Version: 1.8.13 +Release: 1%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ @@ -42,6 +42,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Tue Feb 20 2018 Nils Philippsen - 1.8.13-1 +- version 1.8.13 + * Fri Feb 09 2018 Fedora Release Engineering - 1.8.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index cfb8f21..c99f230 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (pngcrush-1.8.11-nolib.tar.xz) = 1b6d1c5b934d3d349031da1e49f1b3206cb0540a3d3a36219a800f052cd30da305b80902f7bdccfcc1487babb826a925048d30f9fbae598ca8ca18d60b3c49e1 +SHA512 (pngcrush-1.8.13-nolib.tar.xz) = c073d573e9b13b72fa39b178271ce65d1a19fef35943ef0a9e6121a5c66d9db212aaad38ab777c5b44e20a107eb677003acbdb4a354bcb2dc40f535a97d9df0e From bfe876cb5612d60301a0bfb3216d79cb46b05d21 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 20 Feb 2018 21:33:28 +0100 Subject: [PATCH 39/50] ship license --- pngcrush.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pngcrush.spec b/pngcrush.spec index e2c1581..463a4a4 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -38,12 +38,14 @@ docbook2man %{name}.sgml %files %defattr(-, root, root, -) %doc ChangeLog.html +%license LICENSE %{_bindir}/%{name} %doc %{_mandir}/man1/%{name}.1.gz %changelog * Tue Feb 20 2018 Nils Philippsen - 1.8.13-1 - version 1.8.13 +- ship license * Fri Feb 09 2018 Fedora Release Engineering - 1.8.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From b20f8fa126a3a0de824b4617ab6a91fedd769f77 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 20 Feb 2018 21:33:44 +0100 Subject: [PATCH 40/50] remove some old packaging cruft --- pngcrush.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pngcrush.spec b/pngcrush.spec index 463a4a4..a773797 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -31,12 +31,10 @@ gcc %{optflags} $pngflags -lz -o %{name} %{name}.c docbook2man %{name}.sgml %install -%{__rm} -rf %{buildroot} %{__install} -D -m0755 %{name} %{buildroot}%{_bindir}/%{name} %{__install} -D -m0644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 %files -%defattr(-, root, root, -) %doc ChangeLog.html %license LICENSE %{_bindir}/%{name} @@ -46,6 +44,7 @@ docbook2man %{name}.sgml * Tue Feb 20 2018 Nils Philippsen - 1.8.13-1 - version 1.8.13 - ship license +- remove some old packaging cruft * Fri Feb 09 2018 Fedora Release Engineering - 1.8.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 5d13494db12df1e157a67beb78414ac99a8c60a7 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Tue, 20 Feb 2018 21:33:55 +0100 Subject: [PATCH 41/50] require gcc for building --- pngcrush.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index a773797..31e1061 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -11,7 +11,11 @@ URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz # from Debian sid. Source1: %{name}.sgml -BuildRequires: libpng-devel, zlib-devel, pkgconfig, docbook-utils +BuildRequires: docbook-utils +BuildRequires: gcc +BuildRequires: libpng-devel +BuildRequires: pkgconfig +BuildRequires: zlib-devel %description pngcrush is a commandline optimizer for PNG (Portable Network Graphics) files. @@ -45,6 +49,7 @@ docbook2man %{name}.sgml - version 1.8.13 - ship license - remove some old packaging cruft +- require gcc for building * Fri Feb 09 2018 Fedora Release Engineering - 1.8.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From f0c3004c3a502db7eb57048a45b9878672e7b29b Mon Sep 17 00:00:00 2001 From: Josef Ridky Date: Thu, 8 Mar 2018 13:36:35 +0100 Subject: [PATCH 42/50] Remove Group tag --- pngcrush.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pngcrush.spec b/pngcrush.spec index 31e1061..9a7c892 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -1,12 +1,10 @@ - %global _hardened_build 1 Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib -Group: Applications/File URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz # from Debian sid. @@ -45,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Mar 08 2018 Josef Ridky - 1.8.13-2 +- remove Group tag + * Tue Feb 20 2018 Nils Philippsen - 1.8.13-1 - version 1.8.13 - ship license From efcbabf18a499cc2877906f6ef69e7490c6c93f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 22:39:24 +0000 Subject: [PATCH 43/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 9a7c892..3d264cf 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 2%{?dist} +Release: 3%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.8.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Mar 08 2018 Josef Ridky - 1.8.13-2 - remove Group tag From f9bffe0c51fcec0a534629e5b89f61e89ae8532e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 04:32:22 +0000 Subject: [PATCH 44/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 3d264cf..d1e22a2 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 3%{?dist} +Release: 4%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1.8.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.8.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From cde3c7004f1ce974f86a9f6e139d1b6bea42a56f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 11:01:26 +0000 Subject: [PATCH 45/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index d1e22a2..60d6444 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 4%{?dist} +Release: 5%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.8.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 1.8.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From da4f4799304eced21a078d80702a9524ecf49204 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 09:25:29 +0000 Subject: [PATCH 46/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 60d6444..9317f31 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 5%{?dist} +Release: 6%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.8.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Jul 26 2019 Fedora Release Engineering - 1.8.13-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From f929cb98b03840fcdd852b397928302994611b43 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 22:45:38 +0000 Subject: [PATCH 47/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index 9317f31..c704a65 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 6%{?dist} +Release: 7%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.8.13-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jan 30 2020 Fedora Release Engineering - 1.8.13-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From c0363f1fb617e43aeb447d8c5dffb989938cad23 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 08:20:26 +0000 Subject: [PATCH 48/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index c704a65..d744dee 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 7%{?dist} +Release: 8%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.8.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1.8.13-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From d621c561bc3a86ea8c3663894a346574fc91b0bd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 03:43:07 +0000 Subject: [PATCH 49/50] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- pngcrush.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pngcrush.spec b/pngcrush.spec index d744dee..f44a82c 100644 --- a/pngcrush.spec +++ b/pngcrush.spec @@ -3,7 +3,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.8.13 -Release: 8%{?dist} +Release: 9%{?dist} License: zlib URL: http://pmt.sourceforge.net/%{name}/ Source0: http://downloads.sourceforge.net/pmt/%{name}-%{version}-nolib.tar.xz @@ -43,6 +43,9 @@ docbook2man %{name}.sgml %doc %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.8.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.8.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From e8ff6fcdf138dc36b67b05eeded18d68b671e8c7 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:45:06 +0300 Subject: [PATCH 50/50] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index c99f230..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (pngcrush-1.8.13-nolib.tar.xz) = c073d573e9b13b72fa39b178271ce65d1a19fef35943ef0a9e6121a5c66d9db212aaad38ab777c5b44e20a107eb677003acbdb4a354bcb2dc40f535a97d9df0e