From 287552992fac51525ab85539c02ca19e0ae2b915 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:39:30 +0000 Subject: [PATCH 01/57] 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 74a1612..8d964f6 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: amanith -# $Id$ +# $Id: Makefile,v 1.1 2007/12/20 19:29:50 spot Exp $ NAME := amanith 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 c0984e00c76d72c0782b22a7785a04217693a5dd Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Wed, 10 Feb 2010 16:48:19 +0000 Subject: [PATCH 02/57] fix implicit DSO linking --- amanith-0.3-fix-DSO.patch | 17 +++++++++++++++++ amanith.spec | 7 ++++++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 amanith-0.3-fix-DSO.patch diff --git a/amanith-0.3-fix-DSO.patch b/amanith-0.3-fix-DSO.patch new file mode 100644 index 0000000..6b9ff51 --- /dev/null +++ b/amanith-0.3-fix-DSO.patch @@ -0,0 +1,17 @@ +diff -up amanith/examples/opengl/testshaders/testshaders.pro.DSO amanith/examples/opengl/testshaders/testshaders.pro +--- amanith/examples/opengl/testshaders/testshaders.pro.DSO 2010-02-10 11:39:49.917762524 -0500 ++++ amanith/examples/opengl/testshaders/testshaders.pro 2010-02-10 11:40:23.487766249 -0500 +@@ -9,9 +9,11 @@ CONFIG += qt warn_on opengl + SOURCES = main.cpp \ + testshaders.cpp + ++LIBS += -lGLEW ++ + win32: RC_FILE = example.rc + + # Qt4 support + contains(DEFINES, USE_QT4) { + QT += opengl +-} +\ No newline at end of file ++} diff --git a/amanith.spec b/amanith.spec index fabe3e1..577a171 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -21,6 +21,7 @@ Patch6: amanith-0.3-freetype-fix.patch Patch7: amanith-0.3-system-freetype.patch Patch8: amanith-0.3-gcc43.patch Patch9: amanith-0.3-gcc44.patch +Patch10: amanith-0.3-fix-DSO.patch %description Amanith is an OpenSource C++ CrossPlatform framework designed for 2d & 3d @@ -47,6 +48,7 @@ Development libraries and headers for developing programs that use amanith. %patch7 -p1 %patch8 -p1 %patch9 -p1 +%patch10 -p1 -b .DSO # Boo. Hiss. SGI Free B and GLX files. rm -rf include/GL/ # Don't need the 3rdpart stuff either. @@ -103,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Feb 10 2010 Tom "spot" Callaway - 0.3-14 +- fix implicit DSO linking + * Wed Aug 19 2009 Tom "spot" Callaway - 0.3-13 - note that upstream is gone, drop URL from Source0 From 72618f626c58b695789b8d074b5427c08f846cae Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:47:50 +0000 Subject: [PATCH 03/57] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 8d964f6..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: amanith -# $Id: Makefile,v 1.1 2007/12/20 19:29:50 spot Exp $ -NAME := amanith -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From cbd0c80155c58a46f10ee2f00461c5f30b5eff96 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:04:08 -0600 Subject: [PATCH 04/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 577a171..2ae6f49 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Wed Feb 10 2010 Tom "spot" Callaway - 0.3-14 - fix implicit DSO linking From 1321e2100842f2b488b564a78dedac9f602bc345 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 20 Jun 2011 16:16:34 -0400 Subject: [PATCH 05/57] Rebuild for new glew soname --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 2ae6f49..b415bff 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Mon Jun 20 2011 ajax@redhat.com - 0.3-16 +- Rebuild for new glew soname + * Mon Feb 07 2011 Fedora Release Engineering - 0.3-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From a93d473ed154ef7ea9d487f31c26110881bdb957 Mon Sep 17 00:00:00 2001 From: "Tom \"spot\" Callaway" Date: Wed, 29 Jun 2011 14:37:26 -0400 Subject: [PATCH 06/57] add missing constructors, fixes FTBFS --- amanith-0.3-gcc-constructor-fix.patch | 379 ++++++++++++++++++++++++++ amanith.spec | 7 +- 2 files changed, 385 insertions(+), 1 deletion(-) create mode 100644 amanith-0.3-gcc-constructor-fix.patch diff --git a/amanith-0.3-gcc-constructor-fix.patch b/amanith-0.3-gcc-constructor-fix.patch new file mode 100644 index 0000000..def3d1e --- /dev/null +++ b/amanith-0.3-gcc-constructor-fix.patch @@ -0,0 +1,379 @@ +diff -up amanith/include/amanith/1d/gbeziercurve1d.h.constructor amanith/include/amanith/1d/gbeziercurve1d.h +--- amanith/include/amanith/1d/gbeziercurve1d.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/1d/gbeziercurve1d.h 2011-06-29 13:52:39.913715303 -0400 +@@ -287,6 +287,7 @@ namespace Amanith { + */ + class G_EXPORT GBezierCurve1DProxy : public GElementProxy { + public: ++ GBezierCurve1DProxy() {} + //! Creates a new GBezierCurve1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GBezierCurve1D(Owner); +diff -up amanith/include/amanith/1d/gbsplinecurve1d.h.constructor amanith/include/amanith/1d/gbsplinecurve1d.h +--- amanith/include/amanith/1d/gbsplinecurve1d.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/1d/gbsplinecurve1d.h 2011-06-29 13:52:39.913715303 -0400 +@@ -524,6 +524,7 @@ N_{i,p}(u) = \frac{u - u_i}{u_{i+p} - u_ + */ + class G_EXPORT GBSplineCurve1DProxy : public GElementProxy { + public: ++ GBSplineCurve1DProxy() {} + //! Creates a new GBSplineCurve1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GBSplineCurve1D(Owner); +diff -up amanith/include/amanith/1d/gcurve1d.h.constructor amanith/include/amanith/1d/gcurve1d.h +--- amanith/include/amanith/1d/gcurve1d.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/1d/gcurve1d.h 2011-06-29 13:52:39.914715290 -0400 +@@ -307,6 +307,7 @@ namespace Amanith { + */ + class G_EXPORT GCurve1DProxy : public GElementProxy { + public: ++ GCurve1DProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_CURVE1D_CLASSID; +diff -up amanith/include/amanith/1d/ghermitecurve1d.h.constructor amanith/include/amanith/1d/ghermitecurve1d.h +--- amanith/include/amanith/1d/ghermitecurve1d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/1d/ghermitecurve1d.h 2011-06-29 13:52:39.914715290 -0400 +@@ -404,6 +404,7 @@ namespace Amanith { + */ + class G_EXPORT GHermiteCurve1DProxy : public GElementProxy { + public: ++ GHermiteCurve1DProxy() {} + //! Creates a new GHermiteCurve1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GHermiteCurve1D(Owner); +diff -up amanith/include/amanith/1d/gmulticurve1d.h.constructor amanith/include/amanith/1d/gmulticurve1d.h +--- amanith/include/amanith/1d/gmulticurve1d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/1d/gmulticurve1d.h 2011-06-29 13:52:39.915715277 -0400 +@@ -251,6 +251,7 @@ namespace Amanith { + */ + class G_EXPORT GMultiCurve1DProxy : public GElementProxy { + public: ++ GMultiCurve1DProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_MULTICURVE1D_CLASSID; +diff -up amanith/include/amanith/1d/gpolylinecurve1d.h.constructor amanith/include/amanith/1d/gpolylinecurve1d.h +--- amanith/include/amanith/1d/gpolylinecurve1d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/1d/gpolylinecurve1d.h 2011-06-29 13:52:39.916715264 -0400 +@@ -304,6 +304,7 @@ namespace Amanith { + */ + class G_EXPORT GPolyLineCurve1DProxy : public GElementProxy { + public: ++ GPolyLineCurve1DProxy() {} + //! Creates a new GPolyLineCurve1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GPolyLineCurve1D(Owner); +diff -up amanith/include/amanith/2d/ganimtrsnode2d.h.constructor amanith/include/amanith/2d/ganimtrsnode2d.h +--- amanith/include/amanith/2d/ganimtrsnode2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/ganimtrsnode2d.h 2011-06-29 13:52:39.916715264 -0400 +@@ -238,6 +238,7 @@ namespace Amanith { + */ + class G_EXPORT GAnimTRSNode2DProxy : public GElementProxy { + public: ++ GAnimTRSNode2DProxy() {} + //! Creates a new GAnimTRSNode2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GAnimTRSNode2D(Owner); +diff -up amanith/include/amanith/2d/gbeziercurve2d.h.constructor amanith/include/amanith/2d/gbeziercurve2d.h +--- amanith/include/amanith/2d/gbeziercurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gbeziercurve2d.h 2011-06-29 13:52:39.917715251 -0400 +@@ -465,6 +465,7 @@ namespace Amanith { + */ + class G_EXPORT GBezierCurve2DProxy : public GElementProxy { + public: ++ GBezierCurve2DProxy() {} + //! Creates a new GBezierCurve2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GBezierCurve2D(Owner); +diff -up amanith/include/amanith/2d/gbsplinecurve2d.h.constructor amanith/include/amanith/2d/gbsplinecurve2d.h +--- amanith/include/amanith/2d/gbsplinecurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gbsplinecurve2d.h 2011-06-29 13:52:39.917715251 -0400 +@@ -617,6 +617,7 @@ namespace Amanith { + */ + class G_EXPORT GBSplineCurve2DProxy : public GElementProxy { + public: ++ GBSplineCurve2DProxy() {} + //! Creates a new GBSplineCurve2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GBSplineCurve2D(Owner); +diff -up amanith/include/amanith/2d/gcurve2d.h.constructor amanith/include/amanith/2d/gcurve2d.h +--- amanith/include/amanith/2d/gcurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gcurve2d.h 2011-06-29 13:52:39.918715238 -0400 +@@ -414,6 +414,7 @@ namespace Amanith { + */ + class G_EXPORT GCurve2DProxy : public GElementProxy { + public: ++ GCurve2DProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_CURVE2D_CLASSID; +diff -up amanith/include/amanith/2d/gellipsecurve2d.h.constructor amanith/include/amanith/2d/gellipsecurve2d.h +--- amanith/include/amanith/2d/gellipsecurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gellipsecurve2d.h 2011-06-29 13:52:39.918715238 -0400 +@@ -346,6 +346,7 @@ namespace Amanith { + */ + class G_EXPORT GEllipseCurve2DProxy : public GElementProxy { + public: ++ GEllipseCurve2DProxy() {} + //! Creates a new GEllipseCurve2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GEllipseCurve2D(Owner); +diff -up amanith/include/amanith/2d/gfont2d.h.constructor amanith/include/amanith/2d/gfont2d.h +--- amanith/include/amanith/2d/gfont2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gfont2d.h 2011-06-29 13:52:39.919715225 -0400 +@@ -807,6 +807,7 @@ Legend: O on curve + off curve + + class G_EXPORT GFont2DProxy : public GElementProxy { + public: ++ GFont2DProxy() {} + //! Creates a new GFont2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GFont2D(Owner); +diff -up amanith/include/amanith/2d/ghermitecurve2d.h.constructor amanith/include/amanith/2d/ghermitecurve2d.h +--- amanith/include/amanith/2d/ghermitecurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/ghermitecurve2d.h 2011-06-29 13:52:39.919715225 -0400 +@@ -510,6 +510,7 @@ namespace Amanith { + */ + class G_EXPORT GHermiteCurve2DProxy : public GElementProxy { + public: ++ GHermiteCurve2DProxy() {} + //! Creates a new GHermiteCurve2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GHermiteCurve2D(Owner); +diff -up amanith/include/amanith/2d/gmulticurve2d.h.constructor amanith/include/amanith/2d/gmulticurve2d.h +--- amanith/include/amanith/2d/gmulticurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gmulticurve2d.h 2011-06-29 13:52:39.919715225 -0400 +@@ -273,6 +273,7 @@ namespace Amanith { + */ + class G_EXPORT GMultiCurve2DProxy : public GElementProxy { + public: ++ GMultiCurve2DProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_MULTICURVE2D_CLASSID; +diff -up amanith/include/amanith/2d/gpath2d.h.constructor amanith/include/amanith/2d/gpath2d.h +--- amanith/include/amanith/2d/gpath2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gpath2d.h 2011-06-29 13:52:39.920715212 -0400 +@@ -581,6 +581,7 @@ namespace Amanith { + */ + class G_EXPORT GPath2DProxy : public GElementProxy { + public: ++ GPath2DProxy() {} + //! Creates a new GPath2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GPath2D(Owner); +diff -up amanith/include/amanith/2d/gpixelmap.h.constructor amanith/include/amanith/2d/gpixelmap.h +--- amanith/include/amanith/2d/gpixelmap.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gpixelmap.h 2011-06-29 13:52:39.921715199 -0400 +@@ -821,6 +821,7 @@ namespace Amanith { + */ + class G_EXPORT GPixelMapProxy : public GElementProxy { + public: ++ GPixelMapProxy() {} + //! Creates a new GPixelMap instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GPixelMap(Owner); +diff -up amanith/include/amanith/2d/gpolylinecurve2d.h.constructor amanith/include/amanith/2d/gpolylinecurve2d.h +--- amanith/include/amanith/2d/gpolylinecurve2d.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/include/amanith/2d/gpolylinecurve2d.h 2011-06-29 13:52:39.921715199 -0400 +@@ -347,6 +347,7 @@ namespace Amanith { + */ + class G_EXPORT GPolyLineCurve2DProxy : public GElementProxy { + public: ++ GPolyLineCurve2DProxy() {} + //! Creates a new GPolyLineCurve2D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GPolyLineCurve2D(Owner); +diff -up amanith/include/amanith/gelement.h.constructor amanith/include/amanith/gelement.h +--- amanith/include/amanith/gelement.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/gelement.h 2011-06-29 13:52:39.922715186 -0400 +@@ -191,6 +191,7 @@ namespace Amanith { + */ + class G_EXPORT GElementProxy { + public: ++ GElementProxy() {} + //! Create a new element. Every derived class must implements this method. + virtual GElement* CreateNew(const GElement* Owner = NULL) const { + if (!Owner) +@@ -480,6 +481,7 @@ namespace Amanith { + */ + class G_EXPORT GAnimElementProxy : public GElementProxy { + public: ++ GAnimElementProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_ANIMELEMENT_CLASSID; +@@ -884,6 +886,7 @@ namespace Amanith { + */ + class G_EXPORT GPropertyProxy : public GElementProxy { + public: ++ GPropertyProxy() {} + //! Creates a new GProperty instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GProperty(Owner); +diff -up amanith/include/amanith/gimpexp.h.constructor amanith/include/amanith/gimpexp.h +--- amanith/include/amanith/gimpexp.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/gimpexp.h 2011-06-29 13:52:39.922715186 -0400 +@@ -218,6 +218,7 @@ namespace Amanith { + */ + class G_EXPORT GImpExpProxy : public GElementProxy { + public: ++ GImpExpProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_IMPEXP_CLASSID; +diff -up amanith/include/amanith/gkernel.h.constructor amanith/include/amanith/gkernel.h +--- amanith/include/amanith/gkernel.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/gkernel.h 2011-06-29 13:52:39.922715186 -0400 +@@ -193,6 +193,7 @@ namespace Amanith { + */ + class G_EXPORT GKernelProxy : public GElementProxy { + public: ++ GKernelProxy() {} + //! Create a new GKernel class + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GKernel(Owner); +diff -up amanith/include/amanith/gmultiproperty.h.constructor amanith/include/amanith/gmultiproperty.h +--- amanith/include/amanith/gmultiproperty.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/gmultiproperty.h 2011-06-29 13:52:39.923715173 -0400 +@@ -108,6 +108,7 @@ namespace Amanith { + */ + class G_EXPORT GMultiProperty1DProxy : public GElementProxy { + public: ++ GMultiProperty1DProxy() {} + //! Get class descriptor of elements type "provided" by this proxy. + const GClassID& ClassID() const { + return G_MULTIPROPERTY1D_CLASSID; +@@ -164,6 +165,7 @@ namespace Amanith { + */ + class G_EXPORT GTwoHermiteProperty1DProxy : public GElementProxy { + public: ++ GTwoHermiteProperty1DProxy() {} + //! Creates a new GTwoHermiteProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GTwoHermiteProperty1D(Owner); +@@ -223,6 +225,7 @@ namespace Amanith { + */ + class G_EXPORT GThreeHermiteProperty1DProxy : public GElementProxy { + public: ++ GThreeHermiteProperty1DProxy() {} + //! Creates a new GThreeHermiteProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GThreeHermiteProperty1D(Owner); +@@ -282,6 +285,7 @@ namespace Amanith { + */ + class G_EXPORT GFourHermiteProperty1DProxy : public GElementProxy { + public: ++ GFourHermiteProperty1DProxy() {} + //! Creates a new GFourHermiteProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GFourHermiteProperty1D(Owner); +@@ -342,6 +346,7 @@ namespace Amanith { + */ + class G_EXPORT GTwoLinearProperty1DProxy : public GElementProxy { + public: ++ GTwoLinearProperty1DProxy() {} + //! Creates a new GTwoLinearProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GTwoLinearProperty1D(Owner); +@@ -401,6 +406,7 @@ namespace Amanith { + */ + class G_EXPORT GThreeLinearProperty1DProxy : public GElementProxy { + public: ++ GThreeLinearProperty1DProxy() {} + //! Creates a new GThreeLinearProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GThreeLinearProperty1D(Owner); +@@ -461,6 +467,7 @@ namespace Amanith { + */ + class G_EXPORT GFourLinearProperty1DProxy : public GElementProxy { + public: ++ GFourLinearProperty1DProxy() {} + //! Creates a new GFourLinearProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GFourLinearProperty1D(Owner); +@@ -520,6 +527,7 @@ namespace Amanith { + */ + class G_EXPORT GTwoConstantProperty1DProxy : public GElementProxy { + public: ++ GTwoConstantProperty1DProxy() {} + //! Creates a new GTwoConstantProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GTwoConstantProperty1D(Owner); +@@ -579,6 +587,7 @@ namespace Amanith { + */ + class G_EXPORT GThreeConstantProperty1DProxy : public GElementProxy { + public: ++ GThreeConstantProperty1DProxy() {} + //! Creates a new GThreeConstantProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GThreeConstantProperty1D(Owner); +@@ -638,6 +647,7 @@ namespace Amanith { + */ + class G_EXPORT GFourConstantProperty1DProxy : public GElementProxy { + public: ++ GFourConstantProperty1DProxy() {} + //! Creates a new GFourConstantProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GFourConstantProperty1D(Owner); +diff -up amanith/include/amanith/gproperty.h.constructor amanith/include/amanith/gproperty.h +--- amanith/include/amanith/gproperty.h.constructor 2006-01-26 04:18:44.000000000 -0500 ++++ amanith/include/amanith/gproperty.h 2011-06-29 13:52:39.924715160 -0400 +@@ -174,6 +174,7 @@ namespace Amanith { + */ + class G_EXPORT GHermiteProperty1DProxy : public GElementProxy { + public: ++ GHermiteProperty1DProxy() {} + //! Creates a new GHermiteProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GHermiteProperty1D(Owner); +@@ -310,6 +311,7 @@ namespace Amanith { + */ + class G_EXPORT GLinearProperty1DProxy : public GElementProxy { + public: ++ GLinearProperty1DProxy() {} + //! Creates a new GLinearProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GLinearProperty1D(Owner); +@@ -445,6 +447,7 @@ namespace Amanith { + */ + class G_EXPORT GConstantProperty1DProxy : public GElementProxy { + public: ++ GConstantProperty1DProxy() {} + //! Creates a new GLinearProperty1D instance + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GConstantProperty1D(Owner); +diff -up amanith/plugins/fonts/gfontsimpexp.h.constructor amanith/plugins/fonts/gfontsimpexp.h +--- amanith/plugins/fonts/gfontsimpexp.h.constructor 2011-06-29 13:53:00.686446700 -0400 ++++ amanith/plugins/fonts/gfontsimpexp.h 2011-06-29 13:53:15.252258394 -0400 +@@ -80,6 +80,7 @@ namespace Amanith { + // ********************************************************************* + class G_PLUGIN_EXPORT GFontsImpExpProxy : public GElementProxy { + public: ++ GFontsImpExpProxy() {} + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GFontsImpExp(Owner); + } +diff -up amanith/plugins/jpeg/gjpegimpexp.h.constructor amanith/plugins/jpeg/gjpegimpexp.h +--- amanith/plugins/jpeg/gjpegimpexp.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/plugins/jpeg/gjpegimpexp.h 2011-06-29 13:52:39.924715160 -0400 +@@ -81,6 +81,7 @@ namespace Amanith { + // ********************************************************************* + class G_PLUGIN_EXPORT GJpegImpExpProxy : public GElementProxy { + public: ++ GJpegImpExpProxy() {} + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GJpegImpExp(Owner); + } +diff -up amanith/plugins/png/gpngimpexp.h.constructor amanith/plugins/png/gpngimpexp.h +--- amanith/plugins/png/gpngimpexp.h.constructor 2006-01-26 04:18:45.000000000 -0500 ++++ amanith/plugins/png/gpngimpexp.h 2011-06-29 13:52:39.924715160 -0400 +@@ -84,6 +84,7 @@ namespace Amanith { + // ********************************************************************* + class G_PLUGIN_EXPORT GPngImpExpProxy : public GElementProxy { + public: ++ GPngImpExpProxy() {} + GElement* CreateNew(const GElement* Owner = NULL) const { + return new GPngImpExp(Owner); + } diff --git a/amanith.spec b/amanith.spec index b415bff..eb0ac9d 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -22,6 +22,7 @@ Patch7: amanith-0.3-system-freetype.patch Patch8: amanith-0.3-gcc43.patch Patch9: amanith-0.3-gcc44.patch Patch10: amanith-0.3-fix-DSO.patch +Patch11: amanith-0.3-gcc-constructor-fix.patch %description Amanith is an OpenSource C++ CrossPlatform framework designed for 2d & 3d @@ -49,6 +50,7 @@ Development libraries and headers for developing programs that use amanith. %patch8 -p1 %patch9 -p1 %patch10 -p1 -b .DSO +%patch11 -p1 -b .constructor # Boo. Hiss. SGI Free B and GLX files. rm -rf include/GL/ # Don't need the 3rdpart stuff either. @@ -105,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Jun 29 2011 Tom Callaway - 0.3-17 +- add missing default constructors + * Mon Jun 20 2011 ajax@redhat.com - 0.3-16 - Rebuild for new glew soname From d574cf708e808e74978a55c4216222943f66e959 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 5 Dec 2011 22:37:44 -0500 Subject: [PATCH 07/57] Rebuild for new libpng --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index eb0ac9d..fb2bf93 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Tue Dec 06 2011 Adam Jackson - 0.3-18 +- Rebuild for new libpng + * Wed Jun 29 2011 Tom Callaway - 0.3-17 - add missing default constructors From d4275e3ae789a91e4b6fa469788ded33d0894b18 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 6 Dec 2011 13:18:36 -0500 Subject: [PATCH 08/57] build against libpng15 --- amanith-0.3-libpng15-fix.patch | 15 +++++++ amanith-0.3-nothirdpartystatic.patch | 66 +++++++++++++++------------- amanith.spec | 9 +++- 3 files changed, 58 insertions(+), 32 deletions(-) create mode 100644 amanith-0.3-libpng15-fix.patch diff --git a/amanith-0.3-libpng15-fix.patch b/amanith-0.3-libpng15-fix.patch new file mode 100644 index 0000000..7ff23f4 --- /dev/null +++ b/amanith-0.3-libpng15-fix.patch @@ -0,0 +1,15 @@ +diff -up amanith/plugins/png/gpngimpexp.cpp.pngfix amanith/plugins/png/gpngimpexp.cpp +--- amanith/plugins/png/gpngimpexp.cpp.pngfix 2011-12-06 13:08:47.321866882 -0500 ++++ amanith/plugins/png/gpngimpexp.cpp 2011-12-06 13:09:30.297453723 -0500 +@@ -366,7 +366,11 @@ GError GPngImpExp::RawPngSave(const GCha + /* Set error handling. REQUIRED if you aren't supplying your own + * error handling functions in the png_create_write_struct() call. + */ ++#if PNG_LIBPNG_VER_MAJOR >= 1 && PNG_LIBPNG_VER_MINOR >= 4 ++ if (setjmp(png_jmpbuf(png_ptr))) { ++#else + if (setjmp(png_ptr->jmpbuf)) { ++#endif + /* If we get here, we had a problem reading the file */ + std::fclose(fp); + png_destroy_write_struct(&png_ptr, (png_infopp)info_ptr); diff --git a/amanith-0.3-nothirdpartystatic.patch b/amanith-0.3-nothirdpartystatic.patch index 09a9c98..f25c294 100644 --- a/amanith-0.3-nothirdpartystatic.patch +++ b/amanith-0.3-nothirdpartystatic.patch @@ -1,38 +1,15 @@ ---- amanith/amanith.pro.BAD 2007-05-26 18:03:40.000000000 -0500 -+++ amanith/amanith.pro 2007-05-26 18:03:48.000000000 -0500 +diff -up amanith/amanith.pro.system amanith/amanith.pro +--- amanith/amanith.pro.system 2005-12-06 05:43:12.000000000 -0500 ++++ amanith/amanith.pro 2011-12-06 13:13:16.310280875 -0500 @@ -1,4 +1,4 @@ TEMPLATE = subdirs CONFIG += ordered -SUBDIRS += 3rdpart build plugins examples +SUBDIRS += build plugins examples ---- amanith/plugins/jpeg/build.conf.BAD 2007-05-26 18:03:57.000000000 -0500 -+++ amanith/plugins/jpeg/build.conf 2007-05-26 18:04:09.000000000 -0500 -@@ -25,7 +25,7 @@ contains(DEFINES, _JPEG_PLUGIN) { - } - } - --unix: LIBS += $$(AMANITHDIR)/lib/libjpeg.a -+unix: LIBS += -ljpeg - win32: { - - !contains(DEFINES, WIN32_MINGW) { ---- amanith/plugins/png/build.conf.BAD 2007-05-26 18:04:21.000000000 -0500 -+++ amanith/plugins/png/build.conf 2007-05-26 18:04:33.000000000 -0500 -@@ -25,9 +25,7 @@ contains(DEFINES, _PNG_PLUGIN) { - } - } - --INCLUDEPATH += $$(AMANITHDIR)/3rdpart/zlib -- --unix: LIBS += $$(AMANITHDIR)/lib/libpng.a $$(AMANITHDIR)/lib/libzlib.a -+unix: LIBS += -lpng -lz - win32: { - - !contains(DEFINES, WIN32_MINGW) { -diff -up amanith/plugins/fonts/build.conf.orig amanith/plugins/fonts/build.conf ---- amanith/plugins/fonts/build.conf.orig 2005-09-26 04:18:52.000000000 -0400 -+++ amanith/plugins/fonts/build.conf 2008-09-26 15:52:14.000000000 -0400 +diff -up amanith/plugins/fonts/build.conf.system amanith/plugins/fonts/build.conf +--- amanith/plugins/fonts/build.conf.system 2005-09-26 04:18:52.000000000 -0400 ++++ amanith/plugins/fonts/build.conf 2011-12-06 13:13:16.314280835 -0500 @@ -40,7 +40,7 @@ DEFINES -= FT_DEBUG_LEVEL_ERROR FT_DEBUG INCLUDEPATH += $$(AMANITHDIR)/3rdpart/freetype2/include @@ -42,10 +19,39 @@ diff -up amanith/plugins/fonts/build.conf.orig amanith/plugins/fonts/build.conf win32: { !contains(DEFINES, WIN32_MINGW) { -@@ -51,4 +51,4 @@ win32: { +@@ -51,4 +51,4 @@ win32: { contains(DEFINES, WIN32_MINGW) { LIBS += $$(AMANITHDIR)/lib/libfreetype2.a $$(AMANITHDIR)/lib/libzlib.a } -} \ No newline at end of file +} +diff -up amanith/plugins/jpeg/build.conf.system amanith/plugins/jpeg/build.conf +--- amanith/plugins/jpeg/build.conf.system 2005-09-26 04:19:04.000000000 -0400 ++++ amanith/plugins/jpeg/build.conf 2011-12-06 13:13:16.311280865 -0500 +@@ -25,7 +25,7 @@ contains(DEFINES, _JPEG_PLUGIN) { + } + } + +-unix: LIBS += $$(AMANITHDIR)/lib/libjpeg.a ++unix: LIBS += -ljpeg + win32: { + + !contains(DEFINES, WIN32_MINGW) { +diff -up amanith/plugins/png/build.conf.system amanith/plugins/png/build.conf +--- amanith/plugins/png/build.conf.system 2005-09-26 04:19:14.000000000 -0400 ++++ amanith/plugins/png/build.conf 2011-12-06 13:14:28.079590898 -0500 +@@ -25,9 +25,10 @@ contains(DEFINES, _PNG_PLUGIN) { + } + } + +-INCLUDEPATH += $$(AMANITHDIR)/3rdpart/zlib +- +-unix: LIBS += $$(AMANITHDIR)/lib/libpng.a $$(AMANITHDIR)/lib/libzlib.a ++unix: { ++ LIBS += `libpng-config --libs` ++ LIBS += -lz ++} + win32: { + + !contains(DEFINES, WIN32_MINGW) { diff --git a/amanith.spec b/amanith.spec index fb2bf93..ca0f642 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -23,6 +23,7 @@ Patch8: amanith-0.3-gcc43.patch Patch9: amanith-0.3-gcc44.patch Patch10: amanith-0.3-fix-DSO.patch Patch11: amanith-0.3-gcc-constructor-fix.patch +Patch12: amanith-0.3-libpng15-fix.patch %description Amanith is an OpenSource C++ CrossPlatform framework designed for 2d & 3d @@ -40,7 +41,7 @@ Development libraries and headers for developing programs that use amanith. %prep %setup -q -n %{name} -%patch0 -p1 +%patch0 -p1 -b .system %patch1 -p1 %patch3 -p1 %patch4 -p1 @@ -51,6 +52,7 @@ Development libraries and headers for developing programs that use amanith. %patch9 -p1 %patch10 -p1 -b .DSO %patch11 -p1 -b .constructor +%patch12 -p1 -b .pngfix # Boo. Hiss. SGI Free B and GLX files. rm -rf include/GL/ # Don't need the 3rdpart stuff either. @@ -107,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Tue Dec 06 2011 Tom Callaway - 0.3-19 +- fix code to use modern libpng + * Tue Dec 06 2011 Adam Jackson - 0.3-18 - Rebuild for new libpng From 99eeac5a4028aa3b425f979df06d96b03a6f6276 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 15:13:21 -0600 Subject: [PATCH 09/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index ca0f642..81d2aff 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 0.3-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Tom Callaway - 0.3-19 - fix code to use modern libpng From 1279f36c2377e6be2f563dae489916264e3a0f66 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:55:38 -0500 Subject: [PATCH 10/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 81d2aff..6b45acf 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 0.3-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jan 12 2012 Fedora Release Engineering - 0.3-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From e752b49d8f4f8c567a51e331f37d7a7b1934b98b Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 1 Aug 2012 09:56:06 -0400 Subject: [PATCH 11/57] Rebuild for new glew --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 6b45acf..7c896ca 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Aug 01 2012 Adam Jackson - 0.3-22 +- -Rebuild for new glew + * Wed Jul 18 2012 Fedora Release Engineering - 0.3-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 64a0b374b03fcd6a84f6a02e18da12ca0969fb01 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 13 Dec 2012 13:37:59 -0500 Subject: [PATCH 12/57] Rebuild for glew 1.9.0 --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 7c896ca..77a1f93 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Thu Dec 13 2012 Adam Jackson - 0.3-23 +- Rebuild for glew 1.9.0 + * Wed Aug 01 2012 Adam Jackson - 0.3-22 - -Rebuild for new glew From 48c1939ee09470e0ac1dd16eb46069ad70b6784f Mon Sep 17 00:00:00 2001 From: Adam Tkac Date: Fri, 18 Jan 2013 16:00:52 +0100 Subject: [PATCH 13/57] Rebuild due to "jpeg8-ABI" feature drop Signed-off-by: Adam Tkac --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 77a1f93..5f6d525 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Fri Jan 18 2013 Adam Tkac - 0.3-24 +- rebuild due to "jpeg8-ABI" feature drop + * Thu Dec 13 2012 Adam Jackson - 0.3-23 - Rebuild for glew 1.9.0 From 3fb977751665b0b5cb11c82b352775a0441977d6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 10:30:14 -0600 Subject: [PATCH 14/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 5f6d525..1ddd57a 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 24%{?dist} +Release: 25%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 0.3-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jan 18 2013 Adam Tkac - 0.3-24 - rebuild due to "jpeg8-ABI" feature drop From 6ffa5bf5906f134550acb58b515e83264c305ce8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:41:56 -0500 Subject: [PATCH 15/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 1ddd57a..bc7524a 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.3-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Feb 13 2013 Fedora Release Engineering - 0.3-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 2ce8e73b3cea91ecb455b83b3bc325fcdd7bcc03 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 18 Nov 2013 10:52:55 +1000 Subject: [PATCH 16/57] rebuilt for GLEW 1.10 --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index bc7524a..377aade 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Mon Nov 18 2013 Dave Airlie - 0.3-27 +- rebuilt for GLEW 1.10 + * Sat Aug 03 2013 Fedora Release Engineering - 0.3-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From d8286d1b637433a1478c67e6b80b397a0c09c423 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:34:28 -0500 Subject: [PATCH 17/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 377aade..01e94c6 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 27%{?dist} +Release: 28%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.3-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Mon Nov 18 2013 Dave Airlie - 0.3-27 - rebuilt for GLEW 1.10 From 234d768c2082a3e5c36fcf2d7f06b2237daa98df Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 15 Aug 2014 20:27:20 +0000 Subject: [PATCH 18/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 01e94c6..4ea5451 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 28%{?dist} +Release: 29%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Fri Aug 15 2014 Fedora Release Engineering - 0.3-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.3-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 617efc49249d993cf373cfb18748d615ee4cdd95 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 12:30:20 +0200 Subject: [PATCH 19/57] Rebuilt for GCC 5 C++11 ABI change --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 4ea5451..b5a4ec0 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 29%{?dist} +Release: 30%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Sat May 02 2015 Kalev Lember - 0.3-30 +- Rebuilt for GCC 5 C++11 ABI change + * Fri Aug 15 2014 Fedora Release Engineering - 0.3-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From de8ef850a32a43b39d53060d9dfd8504bd20de68 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:50:29 +0000 Subject: [PATCH 20/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index b5a4ec0..a80f899 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 30%{?dist} +Release: 31%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 0.3-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 0.3-30 - Rebuilt for GCC 5 C++11 ABI change From ce63428a728c8a28553aed3a9da4cacf0e5f9bda Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 14 Jan 2016 13:07:16 -0500 Subject: [PATCH 21/57] Rebuild for glew 1.13 --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index a80f899..af2a58d 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 31%{?dist} +Release: 32%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Thu Jan 14 2016 Adam Jackson - 0.3-32 +- Rebuild for glew 1.13 + * Tue Jun 16 2015 Fedora Release Engineering - 0.3-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 34f0b8a0e7ed6dfb1a621743f3e4d7a1835a419d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 16:08:29 +0000 Subject: [PATCH 22/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index af2a58d..6e6d300 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 32%{?dist} +Release: 33%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 0.3-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jan 14 2016 Adam Jackson - 0.3-32 - Rebuild for glew 1.13 From cc7c62e48a9aedcb48cebf05c81abfbd93bea8f3 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 10 Jan 2017 09:51:10 -0500 Subject: [PATCH 23/57] rebuild for new GLEW --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 6e6d300..094e3c7 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 33%{?dist} +Release: 34%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Tue Jan 10 2017 Tom Callaway - 0.3-34 +- rebuild for new GLEW + * Wed Feb 03 2016 Fedora Release Engineering - 0.3-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 56a71366d390e824f9d8cf20c12f96d216cf87b5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:55:15 +0000 Subject: [PATCH 24/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 094e3c7..2435449 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 34%{?dist} +Release: 35%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.3-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Tue Jan 10 2017 Tom Callaway - 0.3-34 - rebuild for new GLEW From 3ae3551252a511325391094620216323e853e8ca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:48:26 +0000 Subject: [PATCH 25/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 2435449..27c3ab5 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 35%{?dist} +Release: 36%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.3-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.3-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 77a6125ceedc97a4751a0af1524704ab14106440 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:32:43 +0000 Subject: [PATCH 26/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 27c3ab5..d334236 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 36%{?dist} +Release: 37%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0.3-37 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.3-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 6875b057e6e2c0265b264a19d6e4075c05c1776c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 02:10:51 +0000 Subject: [PATCH 27/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index d334236..d498cd3 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 37%{?dist} +Release: 38%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.3-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Aug 02 2017 Fedora Release Engineering - 0.3-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 7e90249dd2f874d77356f5507fc88efb07c7f767 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:01:35 +0100 Subject: [PATCH 28/57] 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 --- amanith.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index d498cd3..275c8bf 100644 --- a/amanith.spec +++ b/amanith.spec @@ -8,7 +8,6 @@ URL: http://www.amanith.org # Upstream no longer offers this code # It originally came from: http://www.amanith.org/download/files/amanith_03.tar.gz Source0: amanith_03.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt3-devel, freetype-devel, libjpeg-devel, libpng-devel, zlib-devel BuildRequires: libXmu-devel, glew-devel, mesa-libGLU-devel BuildRequires: mesa-libGL-devel, pkgconfig From 4e83e636ae06d648a4d0cf9534172bc056300462 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 09:54:15 +0100 Subject: [PATCH 29/57] 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 --- amanith.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/amanith.spec b/amanith.spec index 275c8bf..3118357 100644 --- a/amanith.spec +++ b/amanith.spec @@ -90,9 +90,6 @@ cp -a lib/*.so* $RPM_BUILD_ROOT%{_libdir} cp -a plugins/*.so* $RPM_BUILD_ROOT%{_libdir} cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig %postun -p /sbin/ldconfig From e804f66a9ed2c0f60542f05c907f03c402eaef4c Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:10:25 -0500 Subject: [PATCH 30/57] Remove needless use of %defattr --- amanith.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/amanith.spec b/amanith.spec index 3118357..690c7e3 100644 --- a/amanith.spec +++ b/amanith.spec @@ -95,12 +95,10 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %postun -p /sbin/ldconfig %files -%defattr(-,root,root,-) %doc CHANGELOG FAQ LICENSE.QPL README doc/* %{_libdir}/*.so.* %files devel -%defattr(-,root,root,-) %{_libdir}/*.so %{_includedir}/amanith/ From c10c84c8bc9ab9294446943d1346eb2776a73041 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 20:10:34 +0000 Subject: [PATCH 31/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 690c7e3..9f9f62a 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 38%{?dist} +Release: 39%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -103,6 +103,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 0.3-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.3-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From f57c6944df9ad19cce937c09df21fd91b5d6798c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 19 Jul 2018 20:56:43 +0200 Subject: [PATCH 32/57] add BuildRequires: gcc-c++ Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- amanith.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/amanith.spec b/amanith.spec index 9f9f62a..f5be6c7 100644 --- a/amanith.spec +++ b/amanith.spec @@ -8,6 +8,7 @@ URL: http://www.amanith.org # Upstream no longer offers this code # It originally came from: http://www.amanith.org/download/files/amanith_03.tar.gz Source0: amanith_03.tar.gz +BuildRequires: gcc-c++ BuildRequires: qt3-devel, freetype-devel, libjpeg-devel, libpng-devel, zlib-devel BuildRequires: libXmu-devel, glew-devel, mesa-libGLU-devel BuildRequires: mesa-libGL-devel, pkgconfig From edb1ccc2d6010d938313275b1e2321728d9795b6 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Thu, 23 Aug 2018 13:22:55 +0200 Subject: [PATCH 33/57] - Rebuilt for glew 2.1.0 --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index f5be6c7..4fbeaee 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 39%{?dist} +Release: 40%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -104,6 +104,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Thu Aug 23 2018 Nicolas Chauvet - 0.3-40 +- Rebuilt for glew 2.1.0 + * Thu Jul 12 2018 Fedora Release Engineering - 0.3-39 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 4d58d4003a44263c299a820c47d1907695b52ad9 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:38:30 +0100 Subject: [PATCH 34/57] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- amanith.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/amanith.spec b/amanith.spec index 4fbeaee..e155e7f 100644 --- a/amanith.spec +++ b/amanith.spec @@ -91,9 +91,7 @@ cp -a lib/*.so* $RPM_BUILD_ROOT%{_libdir} cp -a plugins/*.so* $RPM_BUILD_ROOT%{_libdir} cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %doc CHANGELOG FAQ LICENSE.QPL README doc/* From 1ca78c5522a57e470cb5186e42e50b78567619cc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:38 +0100 Subject: [PATCH 35/57] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- amanith.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/amanith.spec b/amanith.spec index e155e7f..7bc1353 100644 --- a/amanith.spec +++ b/amanith.spec @@ -2,7 +2,6 @@ Name: amanith Version: 0.3 Release: 40%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics -Group: Development/Libraries License: QPL URL: http://www.amanith.org # Upstream no longer offers this code @@ -32,7 +31,6 @@ system. %package devel Summary: Development files for amanith -Group: Development/Libraries Requires: glew-devel Requires: %{name} = %{version}-%{release} From 258411bef4930a91f5062745fef83bddbb1ede65 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 13:14:33 +0000 Subject: [PATCH 36/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 7bc1353..8984f0d 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 40%{?dist} +Release: 41%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -100,6 +100,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.3-41 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Aug 23 2018 Nicolas Chauvet - 0.3-40 - Rebuilt for glew 2.1.0 From 204fb94e3ee7ea8e7fc3c6a0e9c50c6ef4a14954 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:49:26 +0000 Subject: [PATCH 37/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 8984f0d..7476425 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 41%{?dist} +Release: 42%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -100,6 +100,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 0.3-42 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 0.3-41 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From b52b794eb8c8553f49f3a9da7ee3c415c240c359 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:29:34 +0000 Subject: [PATCH 38/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 7476425..1387cfd 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 42%{?dist} +Release: 43%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -100,6 +100,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.3-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Jul 24 2019 Fedora Release Engineering - 0.3-42 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 9d2131cc49ed648cff40e81eac10e3f75d4a70f6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:59:03 +0000 Subject: [PATCH 39/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 1387cfd..17d13e1 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 43%{?dist} +Release: 44%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -100,6 +100,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.3-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jan 28 2020 Fedora Release Engineering - 0.3-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 3beb60ce0e4b94075b7ee4e1a03474233711e6af Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jul 2020 23:56:45 +0000 Subject: [PATCH 40/57] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 17d13e1..2ecf820 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 44%{?dist} +Release: 45%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -100,6 +100,10 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Fri Jul 31 2020 Fedora Release Engineering - 0.3-45 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.3-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 71818e4d54312db8187bfd969751be5056cd78b5 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 16 Dec 2020 23:25:42 +0000 Subject: [PATCH 41/57] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- amanith.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/amanith.spec b/amanith.spec index 2ecf820..46d2377 100644 --- a/amanith.spec +++ b/amanith.spec @@ -11,6 +11,7 @@ BuildRequires: gcc-c++ BuildRequires: qt3-devel, freetype-devel, libjpeg-devel, libpng-devel, zlib-devel BuildRequires: libXmu-devel, glew-devel, mesa-libGLU-devel BuildRequires: mesa-libGL-devel, pkgconfig +BuildRequires: make Patch0: amanith-0.3-nothirdpartystatic.patch Patch1: amanith-0.3-system-glew.patch Patch3: amanith-0.3-gcc-C++fix.patch From 366f2c20ed59054c34a8c424944da32999eda34c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 00:02:08 +0000 Subject: [PATCH 42/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 46d2377..faf65c9 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 45%{?dist} +Release: 46%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.3-46 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Fri Jul 31 2020 Fedora Release Engineering - 0.3-45 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 33555ba7801e9393047562eb50f492c658717412 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 12:34:22 +0000 Subject: [PATCH 43/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 625028f93a1a919853360e5e3a4c01d0e9301d33 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:29:46 +0000 Subject: [PATCH 44/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index faf65c9..88afda7 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 46%{?dist} +Release: 47%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 0.3-47 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.3-46 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 2c0607ac601827c4eabdd7fd58d5d6e49667e71e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jan 2022 21:10:55 +0000 Subject: [PATCH 45/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 88afda7..4dfdaad 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 47%{?dist} +Release: 48%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jan 19 2022 Fedora Release Engineering - 0.3-48 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Jul 21 2021 Fedora Release Engineering - 0.3-47 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 0ee2f7577e09da809be3c62195443a9627adad78 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Wed, 9 Feb 2022 20:26:28 -0700 Subject: [PATCH 46/57] Rebuild for glew 2.2 --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 4dfdaad..b2c97ce 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 48%{?dist} +Release: 49%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Thu Feb 10 2022 Orion Poplawski - 0.3-49 +- Rebuild for glew 2.2 + * Wed Jan 19 2022 Fedora Release Engineering - 0.3-48 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From c9e47203d7794f964ed6a3c62c1859ac240cf181 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 20 Jul 2022 20:42:44 +0000 Subject: [PATCH 47/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index b2c97ce..6dc69e7 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 49%{?dist} +Release: 50%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 20 2022 Fedora Release Engineering - 0.3-50 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Feb 10 2022 Orion Poplawski - 0.3-49 - Rebuild for glew 2.2 From 68fc49791d681918f9791038f39d81aaa60667f0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 18 Jan 2023 21:39:30 +0000 Subject: [PATCH 48/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 6dc69e7..e82f781 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 50%{?dist} +Release: 51%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jan 18 2023 Fedora Release Engineering - 0.3-51 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Jul 20 2022 Fedora Release Engineering - 0.3-50 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 8db6808e3df5ab3db2b81708071e759c2100591c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 13:11:35 +0000 Subject: [PATCH 49/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index e82f781..ce86f85 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 51%{?dist} +Release: 52%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 0.3-52 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Wed Jan 18 2023 Fedora Release Engineering - 0.3-51 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From e1e42a9ac3883005fad6c7c280c0d8fc905d5083 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 12:48:23 +0000 Subject: [PATCH 50/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index ce86f85..24c7e8a 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 52%{?dist} +Release: 53%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Fri Jan 19 2024 Fedora Release Engineering - 0.3-53 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jul 19 2023 Fedora Release Engineering - 0.3-52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 4692592acdbd0ade99031fcba582bc0a89153d94 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 22:58:09 +0000 Subject: [PATCH 51/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 24c7e8a..dc0ea93 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 53%{?dist} +Release: 54%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 0.3-54 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jan 19 2024 Fedora Release Engineering - 0.3-53 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 6d47a550c13611f8f7124f35e9ea8215bddcd473 Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:46 +0200 Subject: [PATCH 52/57] Eliminate use of obsolete %patchN syntax (#2283636) --- amanith.spec | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/amanith.spec b/amanith.spec index dc0ea93..b8ec0d1 100644 --- a/amanith.spec +++ b/amanith.spec @@ -40,18 +40,18 @@ Development libraries and headers for developing programs that use amanith. %prep %setup -q -n %{name} -%patch0 -p1 -b .system -%patch1 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -b .DSO -%patch11 -p1 -b .constructor -%patch12 -p1 -b .pngfix +%patch -P0 -p1 -b .system +%patch -P1 -p1 +%patch -P3 -p1 +%patch -P4 -p1 +%patch -P5 -p1 +%patch -P6 -p1 +%patch -P7 -p1 +%patch -P8 -p1 +%patch -P9 -p1 +%patch -P10 -p1 -b .DSO +%patch -P11 -p1 -b .constructor +%patch -P12 -p1 -b .pngfix # Boo. Hiss. SGI Free B and GLX files. rm -rf include/GL/ # Don't need the 3rdpart stuff either. From 1b4d6203bff7fac995e2a528dfd9b865a3b38b9a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 16:54:41 +0000 Subject: [PATCH 53/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index b8ec0d1..76d607f 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 54%{?dist} +Release: 55%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics License: QPL URL: http://www.amanith.org @@ -101,6 +101,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 17 2024 Fedora Release Engineering - 0.3-55 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Jan 22 2024 Fedora Release Engineering - 0.3-54 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 4245a5c500d9f58b0ea3b99ade6fcdfa7bcadd2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 7 Aug 2024 09:15:38 +0200 Subject: [PATCH 54/57] convert license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- amanith.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/amanith.spec b/amanith.spec index 76d607f..4a5e16e 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,8 +1,9 @@ Name: amanith Version: 0.3 -Release: 55%{?dist} +Release: 56%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics -License: QPL +# Automatically converted from old format: QPL - review is highly recommended. +License: QPL-1.0 URL: http://www.amanith.org # Upstream no longer offers this code # It originally came from: http://www.amanith.org/download/files/amanith_03.tar.gz @@ -101,6 +102,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Aug 07 2024 Miroslav Suchý - 0.3-56 +- convert license to SPDX + * Wed Jul 17 2024 Fedora Release Engineering - 0.3-55 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From bd97c7444a42ee8b7372df3225881186dedef03a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 10:56:31 +0000 Subject: [PATCH 55/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 4a5e16e..8e19565 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 56%{?dist} +Release: 57%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics # Automatically converted from old format: QPL - review is highly recommended. License: QPL-1.0 @@ -102,6 +102,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 0.3-57 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Aug 07 2024 Miroslav Suchý - 0.3-56 - convert license to SPDX From 37c798436b9d63dfb53598921d5a0d2d1f4a6482 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 16:56:12 +0000 Subject: [PATCH 56/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index 8e19565..dd6c094 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 57%{?dist} +Release: 58%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics # Automatically converted from old format: QPL - review is highly recommended. License: QPL-1.0 @@ -102,6 +102,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 0.3-58 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Thu Jan 16 2025 Fedora Release Engineering - 0.3-57 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 6c8923c6bed0962cd840cacc4bbf02900332ac5f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:37:42 +0000 Subject: [PATCH 57/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- amanith.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amanith.spec b/amanith.spec index dd6c094..6045700 100644 --- a/amanith.spec +++ b/amanith.spec @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 58%{?dist} +Release: 59%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics # Automatically converted from old format: QPL - review is highly recommended. License: QPL-1.0 @@ -102,6 +102,9 @@ cp -a include/amanith $RPM_BUILD_ROOT%{_includedir} %{_includedir}/amanith/ %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 0.3-59 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Wed Jul 23 2025 Fedora Release Engineering - 0.3-58 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild