diff --git a/.gitignore b/.gitignore index 1669f81..1d6f471 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,2 @@ /ags-v.3.4.4.1.tar.xz -/ags-v.3.4.4.2.tar.gz -/ags-v.3.5.0.25.tar.gz -/ags-v.3.5.0.31.tar.gz -/ags-v.3.5.0.32.tar.gz +/ags-v*.tar.gz diff --git a/ags-build-tests-with-cxx17.patch b/ags-build-tests-with-cxx17.patch new file mode 100644 index 0000000..daea83b --- /dev/null +++ b/ags-build-tests-with-cxx17.patch @@ -0,0 +1,36 @@ +diff -up ags-3.6.2.13/Common/CMakeLists.txt.cxx17 ags-3.6.2.13/Common/CMakeLists.txt +--- ags-3.6.2.13/Common/CMakeLists.txt.cxx17 2025-09-04 10:13:12.000000000 +0200 ++++ ags-3.6.2.13/Common/CMakeLists.txt 2025-09-05 00:52:47.300264039 +0200 +@@ -241,7 +241,7 @@ if(AGS_TESTS) + test/version_test.cpp + ) + set_target_properties(common_test PROPERTIES +- CXX_STANDARD 11 ++ CXX_STANDARD 17 + CXX_EXTENSIONS NO + C_STANDARD 11 + C_EXTENSIONS NO +diff -up ags-3.6.2.13/Compiler/CMakeLists.txt.cxx17 ags-3.6.2.13/Compiler/CMakeLists.txt +--- ags-3.6.2.13/Compiler/CMakeLists.txt.cxx17 2025-09-04 10:13:12.000000000 +0200 ++++ ags-3.6.2.13/Compiler/CMakeLists.txt 2025-09-05 00:54:51.632435890 +0200 +@@ -92,7 +92,7 @@ if(AGS_TESTS) + test/cc_test_helper.h + ) + set_target_properties(compiler_test PROPERTIES +- CXX_STANDARD 11 ++ CXX_STANDARD 17 + CXX_EXTENSIONS NO + C_STANDARD 11 + C_EXTENSIONS NO +diff -up ags-3.6.2.13/Engine/CMakeLists.txt.cxx17 ags-3.6.2.13/Engine/CMakeLists.txt +--- ags-3.6.2.13/Engine/CMakeLists.txt.cxx17 2025-09-04 10:13:12.000000000 +0200 ++++ ags-3.6.2.13/Engine/CMakeLists.txt 2025-09-05 00:55:12.224488252 +0200 +@@ -649,7 +649,7 @@ if(AGS_TESTS) + test/systemimports_test.cpp + ) + set_target_properties(engine_test PROPERTIES +- CXX_STANDARD 11 ++ CXX_STANDARD 17 + CXX_EXTENSIONS NO + C_STANDARD 11 + C_EXTENSIONS NO diff --git a/ags-dynamic-dumb.patch b/ags-dynamic-dumb.patch deleted file mode 100644 index 3c2d030..0000000 --- a/ags-dynamic-dumb.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up ags-v.3.5.0.25/Engine/Makefile-defs.linux.dynamic ags-v.3.5.0.25/Engine/Makefile-defs.linux ---- ags-v.3.5.0.25/Engine/Makefile-defs.linux.dynamic 2020-07-12 02:18:03.000000000 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile-defs.linux 2020-08-04 14:55:33.555623254 +0200 -@@ -37,7 +36,7 @@ LIBS += -ldl -lpthread -lc -lm -lstdc++ - - ifneq ($(USE_BUILT_IN_LIBSRC), 1) - ALDUMB := --LIBS += -Wl,--push-state,-Bstatic -laldmb -ldumb -Wl,--pop-state -+LIBS += -laldmb -ldumb - endif - - ifeq ($(ALLEGRO_MAGIC_DRV), 1) diff --git a/ags-use-system-alfont.patch b/ags-use-system-alfont.patch deleted file mode 100644 index 5dfcb8e..0000000 --- a/ags-use-system-alfont.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff -up ags-v.3.5.0.25/Common/font/ttffontrenderer.cpp.alfont ags-v.3.5.0.25/Common/font/ttffontrenderer.cpp ---- ags-v.3.5.0.25/Common/font/ttffontrenderer.cpp.alfont 2020-08-03 01:12:57.187878580 +0200 -+++ ags-v.3.5.0.25/Common/font/ttffontrenderer.cpp 2020-08-03 01:14:56.908761650 +0200 -@@ -15,7 +15,7 @@ - #include - #include "core/platform.h" - --#define AGS_OUTLINE_FONT_FIX (!AGS_PLATFORM_OS_WINDOWS) -+#define AGS_OUTLINE_FONT_FIX 0 - - #include "core/assetmanager.h" - #include "font/ttffontrenderer.h" -diff -up ags-v.3.5.0.25/Engine/Makefile.alfont ags-v.3.5.0.25/Engine/Makefile ---- ags-v.3.5.0.25/Engine/Makefile.alfont 2020-08-03 01:12:57.187878580 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile 2020-08-03 01:15:39.585076430 +0200 -@@ -23,7 +23,7 @@ OBJS := $(OBJS:.mm=.o) - OBJS := $(OBJS:.cpp=.o) - OBJS := $(OBJS:.c=.o) - --OBJS_COMMON := $(COMMON) $(ALFONT) $(FREETYPE) -+OBJS_COMMON := $(COMMON) $(FREETYPE) - OBJS_COMMON := $(OBJS_COMMON:.mm=.o) - OBJS_COMMON := $(OBJS_COMMON:.cpp=.o) - OBJS_COMMON := $(OBJS_COMMON:.c=.o) -diff -up ags-v.3.5.0.25/Engine/Makefile-defs.linux.alfont ags-v.3.5.0.25/Engine/Makefile-defs.linux ---- ags-v.3.5.0.25/Engine/Makefile-defs.linux.alfont 2020-08-03 01:12:57.187878580 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile-defs.linux 2020-08-03 01:16:28.688438622 +0200 -@@ -22,6 +22,7 @@ CXXFLAGS := -std=c++11 -Werror=delete-no - LIBS := -Wl,-Bdynamic - LIBS += $(FT_LDFLAGS) - LIBS += $(shell pkg-config --libs allegro) -+LIBS += -lalfont - LIBS += $(shell pkg-config --libs x11) - LIBS += $(shell pkg-config --libs ogg) - LIBS += $(shell pkg-config --libs theora) -diff -up ags-v.3.5.0.25/Engine/Makefile-objs.alfont ags-v.3.5.0.25/Engine/Makefile-objs ---- ags-v.3.5.0.25/Engine/Makefile-objs.alfont 2020-08-03 01:12:57.188878587 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile-objs 2020-08-03 01:16:57.547651489 +0200 -@@ -59,8 +59,6 @@ PLUGINS = ../Plugins/AGSflashlight/agsfl - - HQ2X3X = libsrc/hq2x/hq2x3x.cpp - --ALFONT = ../Common/libsrc/alfont-2.0.9/alfont.c -- - ALMP3 = libsrc/almp3/almp3.c libsrc/almp3-2.0.5/decoder/common.c libsrc/almp3-2.0.5/decoder/dct64_i386.c libsrc/almp3-2.0.5/decoder/decode_i386.c libsrc/almp3-2.0.5/decoder/interface.c libsrc/almp3-2.0.5/decoder/layer2.c libsrc/almp3-2.0.5/decoder/layer3.c libsrc/almp3-2.0.5/decoder/tabinit.c - - ALOGG = libsrc/alogg/alogg.c diff --git a/ags-use-system-allegro.patch b/ags-use-system-allegro.patch deleted file mode 100644 index f23621c..0000000 --- a/ags-use-system-allegro.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -up ags-v.3.5.0.25/Engine/Makefile-defs.linux.allegro ags-v.3.5.0.25/Engine/Makefile-defs.linux ---- ags-v.3.5.0.25/Engine/Makefile-defs.linux.allegro 2020-08-04 15:03:05.867050838 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile-defs.linux 2020-08-04 15:03:23.797187166 +0200 -@@ -1,5 +1,5 @@ - USE_BUILT_IN_LIBSRC = 0 --USE_MIDI_PATCH = 1 -+USE_MIDI_PATCH = 0 - - include Makefile-defs.freetype - diff --git a/ags-use-system-freetype.patch b/ags-use-system-freetype.patch deleted file mode 100644 index 1f6741d..0000000 --- a/ags-use-system-freetype.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up ags-v.3.5.0.25/Engine/Makefile-defs.linux.noft ags-v.3.5.0.25/Engine/Makefile-defs.linux ---- ags-v.3.5.0.25/Engine/Makefile-defs.linux.noft 2020-08-04 12:56:31.959203289 +0200 -+++ ags-v.3.5.0.25/Engine/Makefile-defs.linux 2020-08-04 14:48:46.375548126 +0200 -@@ -1,8 +1,6 @@ - USE_BUILT_IN_LIBSRC = 0 - USE_MIDI_PATCH = 0 - --include Makefile-defs.freetype -- - INCDIR = ../Engine ../Common ../Common/libinclude ../Common/libsrc/alfont-2.0.9 ../Plugins ../Engine/libsrc/glad/include - LIBDIR = - diff --git a/ags-use-system-libraries.patch b/ags-use-system-libraries.patch new file mode 100644 index 0000000..0ea5cd9 --- /dev/null +++ b/ags-use-system-libraries.patch @@ -0,0 +1,11 @@ +diff -up ags-3.6.2.13/CMake/FindLocalOpenAL.cmake.orig ags-3.6.2.13/CMake/FindLocalOpenAL.cmake +--- ags-3.6.2.13/CMake/FindLocalOpenAL.cmake.orig 2025-09-04 10:13:12.000000000 +0200 ++++ ags-3.6.2.13/CMake/FindLocalOpenAL.cmake 2025-10-09 13:07:24.743943475 +0200 +@@ -1,6 +1,6 @@ + # Grab system openAL or use embedded mojoAL + +-if(WIN32 OR LINUX OR MACOS OR FREEBSD) ++if(WIN32 OR MACOS OR FREEBSD) + set(AGS_USE_MOJO_AL TRUE) + endif() + diff --git a/ags.spec b/ags.spec index 997dff6..1e42828 100644 --- a/ags.spec +++ b/ags.spec @@ -1,45 +1,61 @@ -%global fver v.%{version} +%bcond_without openal + +%global fver v%{version} +# avoid building bundled libraries as shared +%undefine _cmake_shared_libs Name: ags Summary: Engine for creating and running videogames of adventure (quest) genre -Version: 3.5.0.32 +Version: 3.6.2.16 URL: http://www.adventuregamestudio.co.uk/site/ags/ -Release: 1%{?dist} +Release: 2%{?dist} Source0: https://github.com/adventuregamestudio/ags/archive/%{fver}/ags-%{fver}.tar.gz -# unbundle alfont -Patch0: %{name}-use-system-alfont.patch -# unbundle allegro -Patch1: %{name}-use-system-allegro.patch -# unbundle freetype -Patch2: %{name}-use-system-freetype.patch -# use dynamic linking for dumb -Patch4: %{name}-dynamic-dumb.patch -License: Artistic 2.0 and BSD and Giftware and LGPLv2+ and Public Domain and zlib -BuildRequires: alfont-devel -BuildRequires: allegro-devel -BuildRequires: dumb-devel -BuildRequires: freetype-devel +Patch0: ags-use-system-libraries.patch +Patch1: ags-build-tests-with-cxx17.patch +# Most code is under Artistic-2.0, except: +# Common/libsrc/aastr-0.1.1: LicenseRef-Fedora-UltraPermissive +# Common/libsrc/alfont-2.0.9: FTL +# Engine/libsrc/apeg-1.2.1: MPEG-SSG +# Engine/libsrc/glad: Apache-2.0 AND MIT-Khronos-old +# Engine/libsrc/libcda-0.5: Zlib +# Plugins/agsblend/agsblend: MIT +# Plugins/agspalrender/agspalrender/raycast.{cpp,h}: BSD-2-Clause +# Plugins/AGSSpriteFont: CC0-1.0 +# libsrc/allegro: Giftware +License: Artistic-2.0 AND LicenseRef-Fedora-UltraPermissive AND FTL AND MPEG-SSG AND Apache-2.0 AND MIT-Khronos-old AND Zlib AND MIT AND BSD-2-Clause AND CC0-1.0 AND Giftware +# incorrect rendering with new FT: https://github.com/adventuregamestudio/ags/issues/1528 +Provides: bundled(freetype) = 2.1.3 +%if %{with openal} +BuildRequires: openal-soft-devel +%else +# https://github.com/icculus/mojoAL (zlib) +Provides: bundled(mojoal) +%endif +BuildRequires: cmake BuildRequires: gcc-c++ +BuildRequires: glad +BuildRequires: glm-devel +BuildRequires: gtest-devel +# for KHR/khrplatform.h +BuildRequires: libglvnd-devel BuildRequires: libogg-devel BuildRequires: libtheora-devel BuildRequires: libvorbis-devel -BuildRequires: libXext-devel -BuildRequires: libXxf86vm-devel +BuildRequires: make +BuildRequires: cmake(miniz) +BuildRequires: SDL2-devel +BuildRequires: SDL2_sound-devel +BuildRequires: tinyxml2-devel # https://web.archive.org/web/20050323070052/http://www.inp.nsk.su/~bukinm/dusty/aastr/ (Giftware) # dead upstream, might be possible to use aastr2: # https://www.allegro.cc/resource/Libraries/Graphics/AASTR2 Provides: bundled(aastr) = 0.1.1 -# https://web.archive.org/web/20060518092445/http://nekros.freeshell.org/delirium/alogg.html (BSD) -# dead upstream, internals are used, not trivial to unbundle -Provides: bundled(AllegroOGG) = 1.0.3 -# https://web.archive.org/web/20050305175733/http://nekros.freeshell.org/delirium/almp3.php (LGPLv2+) -# dead upstream, bundles parts of old mpg123, not trivial to separate -Provides: bundled(almp3) = 2.0.5 +# bundled alfont is patched +Provides: bundled(alfont) = 2.0.9 +# bundled allegro is stripped and patched +Provides: bundled(allegro) = 4.4.3 # http://kcat.strangesoft.net/apeg.html (Public Domain) Provides: bundled(apeg) = 1.2.1 -# https://web.archive.org/web/20090403045142/http://www.hiend3d.com/hq2x.html (LGPLv2+) -# dead upstream -Provides: bundled(hq2x3x) # https://web.archive.org/web/20040104090747/http://www.alphalink.com.au/~tjaden/libcda/index.html (zlib) # dead upstream Provides: bundled(libcda) = 0.5 @@ -52,47 +68,241 @@ limited, support for other genres as well. Originally created by Chris Jones back in 1999, AGS was opensourced in 2011 and since continued to be developed by contributors. +%package tools +Summary: Tools for Adventure Game Studio engine game development +Requires: %{name}%{_isa} = %{version}-%{release} + +%description tools +This package contains the AGS engine game development tools. + %prep -%setup -q -n %{name}-%{?commit:%{commit}}%{!?commit:%{fver}} -%patch0 -p1 -b .alfont -%patch1 -p1 -b .allegro -%patch2 -p1 -b .noft -%patch4 -p1 -b .dynamic +%setup -q +%patch 0 -p1 -b .orig +%patch 1 -p1 -b .cxx17 # delete unused bundled stuff pushd Common/libinclude -rm -r internal rm -r ogg rm -r theora rm -r vorbis -rm aldumb.h -rm dumb.h popd pushd Common/libsrc -rm -r alfont-2.0.9 -rm -r freetype-2.1.3 rmdir googletest popd pushd Engine/libsrc -rm -r allegro-4.2.2-agspatch -rm -r dumb-0.9.2 +rm -r glad{,-gles2}/{src,include} +glad --reproducible --out-path=glad --profile="compatibility" --api="gl=2.1" --generator="c" --spec="gl" --extensions="GL_EXT_framebuffer_object" +glad --reproducible --out-path=glad-gles2 --profile="core" --api="gles2=2.0" --generator="c" --spec="gl" --extensions="" +rm -r ogg +rm -r theora +rm -r vorbis +popd +pushd libsrc +rm -r glm +rm -r miniz +%if %{with openal} +rm -r mojoAL +%endif +rm -r tinyxml2 popd iconv -o Changes.txt.utf-8 -f iso8859-1 -t utf-8 Changes.txt && \ touch -r Changes.txt Changes.txt.utf-8 && \ mv Changes.txt.utf-8 Changes.txt %build -%set_build_flags -%make_build -C Engine +%cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DAGS_BUILD_TOOLS=TRUE \ + -DAGS_TESTS=TRUE \ + -DAGS_USE_LOCAL_SDL2=TRUE \ + -DAGS_USE_LOCAL_SDL2_SOUND=TRUE \ + -DAGS_USE_LOCAL_OGG=TRUE \ + -DAGS_USE_LOCAL_VORBIS=TRUE \ + -DAGS_USE_LOCAL_THEORA=TRUE \ + -DAGS_USE_LOCAL_GLM=TRUE \ + -DAGS_USE_LOCAL_TINYXML2=TRUE \ + -DAGS_USE_LOCAL_MINIZ=TRUE \ + -DAGS_USE_LOCAL_GTEST=TRUE \ + +%cmake_build %install -make V=1 -C Engine PREFIX=%{buildroot}%{_prefix} install +%cmake_install + +%check +%ctest %files %license License.txt %doc Changes.txt Copyright.txt OPTIONS.md README.md %{_bindir}/ags +%files tools +%{_bindir}/agscc +%{_bindir}/agf2dlgasc +%{_bindir}/agfexport +%{_bindir}/agspak +%{_bindir}/agsunpak +%{_bindir}/crm2ash +%{_bindir}/crmpak +%{_bindir}/trac +%{_bindir}/ags + %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 3.6.2.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Wed Jan 14 2026 Dominik Mierzejewski - 3.6.2.16-1 +- update to 3.6.2.16 +- drop obsolete patch + +* Wed Nov 26 2025 Dominik Mierzejewski - 3.6.2.15-1 +- update to 3.6.2.15 (resolves rhbz#2416531) +- drop serial ctest call work-around, fixed upstream + (https://github.com/adventuregamestudio/ags/pull/2910) + +* Mon Nov 03 2025 Benjamin A. Beasley - 3.6.2.14-2 +- Build tests as C++17; required for gtest 1.17 + +* Mon Oct 27 2025 Dominik Mierzejewski - 3.6.2.14-1 +- update to 3.6.2.14 (resolves rhbz#2405254) + +* Fri Sep 05 2025 Dominik Mierzejewski - 3.6.2.13-2 +- build tools and run tests + +* Thu Sep 04 2025 Dominik Mierzejewski - 3.6.2.13-1 +- update to 3.6.2.13 (resolves rhbz#2393079) + +* Sat Aug 23 2025 Benjamin A. Beasley - 3.6.2.12-4 +- Rebuilt for tinyxml2 11.0.0 + +* Sun Aug 03 2025 Dominik Mierzejewski - 3.6.2.12-3 +- follow upstream convention in option naming +- drop custom miniz detection and require a fixed build instead + +* Wed Jul 23 2025 Fedora Release Engineering - 3.6.2.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Sat Jul 19 2025 Dominik Mierzejewski - 3.6.2.12-1 +- update to 3.6.2.12 +- switch back to bundled freetype per upstream recommendation + +* Sun Jul 06 2025 Dominik Mierzejewski - 3.6.2.11-1 +- update to 3.6.2.11 + +* Fri May 09 2025 Dominik Mierzejewski - 3.6.2.9-1 +- update to 3.6.2.9 +- regenerate glad sources + +* Fri Feb 28 2025 Dominik Mierzejewski - 3.6.2.7-1 +- update to 3.6.2.7 +- switch build system to cmake +- unbundle miniz +- update SPDX expression in License: field after review + +* Thu Feb 27 2025 Dominik Mierzejewski - 3.6.1.31-1 +- update to 3.6.1.31 +- fix build with C23 (resolves rhbz#2336273) + +* Thu Jan 16 2025 Fedora Release Engineering - 3.6.1.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Sat Nov 30 2024 Dominik Mierzejewski - 3.6.1.30-1 +- update to 3.6.1.30 +- drop obsolete patch + +* Mon Nov 11 2024 Dominik Mierzejewski - 3.6.0.56-5 +- rebuild for tinyxml2 + +* Wed Jul 17 2024 Fedora Release Engineering - 3.6.0.56-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Mon Jan 29 2024 Fedora Release Engineering - 3.6.0.56-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 3.6.0.56-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Dominik Mierzejewski - 3.6.0.56-1 +- update to 3.6.0.56 +- fix build with GCC14 + +* Fri Jan 19 2024 Fedora Release Engineering - 3.6.0.51-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Sep 01 2023 Dominik Mierzejewski - 3.6.0.51-1 +- update to 3.6.0.51 + +* Wed Jul 19 2023 Fedora Release Engineering - 3.6.0.48-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun May 14 2023 Dominik Mierzejewski - 3.6.0.48-1 +- update to 3.6.0.48 (#2192719) + +* Tue Apr 04 2023 Dominik Mierzejewski - 3.6.0.47-1 +- update to 3.6.0.47 stable release (#2183747) + +* Mon Mar 27 2023 Dominik Mierzejewski - 3.6.0.46-1 +- update to 3.6.0.46 (#2179689) + +* Wed Mar 08 2023 Dominik Mierzejewski - 3.6.0.44-1 +- update to 3.6.0.44 (#2172608) + +* Mon Feb 06 2023 Dominik Mierzejewski - 3.6.0.42-1 +- update to 3.6.0.42 (#2167149) +- drop obsolete patch + +* Tue Jan 24 2023 Dominik Mierzejewski - 3.6.0.41-1 +- update to 3.6.0.41 (#2161376) +- fix build with GCC 13 + +* Wed Jan 18 2023 Fedora Release Engineering - 3.6.0.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sun Jan 08 2023 Dominik Mierzejewski - 3.6.0.40-1 +- update to 3.6.0.40 (#2158889) + +* Tue Jan 03 2023 Dominik Mierzejewski - 3.6.0.39-1 +- update to 3.6.0.39 (#2156072) + +* Tue Dec 06 2022 Dominik Mierzejewski - 3.6.0.38-1 +- update to 3.6.0.38 (#2143092) + +* Mon Oct 10 2022 Dominik Mierzejewski - 3.6.0.36-1 +- update to 3.6.0.36 (#2108390) + +* Thu Oct 06 2022 Dominik Mierzejewski - 3.6.0.35-1 +- update to 3.6.0.35 (#2108390) + +* Sun Sep 25 2022 Rich Mattes - 3.6.0.33-2 +- Rebuild for tinyxml2-9.0.0 + +* Sun Aug 14 2022 Dominik Mierzejewski - 3.6.0.33-1 +- update to 3.6.0.33 (#2108390) + +* Wed Jul 20 2022 Fedora Release Engineering - 3.6.0.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jul 18 2022 Dominik Mierzejewski - 3.6.0.30-1 +- update to 3.6.0.30 (#2105677) + +* Tue Jul 05 2022 Dominik Mierzejewski - 3.6.0.29-1 +- update to 3.6.0.29 (#2100149) + +* Wed Jun 08 2022 Dominik Mierzejewski - 3.6.0.27-1 +- update to 3.6.0.27 (#2091478) + +* Thu May 12 2022 Dominik Mierzejewski - 3.6.0.25-1 +- update to 3.6.0.25 +- unbundle khrplatform.h header +- unbundle glm, ogg, theora, tinyxml2 and vorbis +- use openal-soft instead of bundled mojoAL + +* Wed Jan 19 2022 Fedora Release Engineering - 3.5.0.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jul 21 2021 Fedora Release Engineering - 3.5.0.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu May 13 2021 Dominik Mierzejewski - 3.5.0.32-1 - update to 3.5.0.32 @@ -100,6 +310,9 @@ make V=1 -C Engine PREFIX=%{buildroot}%{_prefix} install - update to 3.5.0.31 - drop obsolete patches +* Mon Jan 25 2021 Fedora Release Engineering - 3.5.0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Aug 03 2020 Dominik Mierzejewski - 3.5.0.25-1 - update to 3.5.0.25 (#1862828) - fix compilation with GCC10 (missing cstdio includes) diff --git a/sources b/sources index 1e6f810..2c31f17 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ags-v.3.5.0.32.tar.gz) = 8e71dac9ec93e4901fe270dbd887635668bba8a2740275c7b4195ac962e2b8c4c10138661f31bccb6d4aa0a512bc2d2fb1bcfc5aca0f4522fda683c7f7fe7a8e +SHA512 (ags-v3.6.2.16.tar.gz) = 4b3261284454fc4e770f684eb6ece5199bc9d8a731d433b96f1134ade8907d60f0658f481f5ed229346a6dfeac61622ce5d62adfc163489f1cbf335b7c088936