Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gemrb for openSUSE:Factory checked in at 2022-12-07 17:35:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gemrb (Old) and /work/SRC/openSUSE:Factory/.gemrb.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gemrb" Wed Dec 7 17:35:42 2022 rev:7 rq:1040896 version:0.9.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gemrb/gemrb.changes 2020-08-25 09:40:21.488255675 +0200 +++ /work/SRC/openSUSE:Factory/.gemrb.new.1835/gemrb.changes 2022-12-07 17:37:34.521396710 +0100 @@ -1,0 +2,29 @@ +Wed Dec 7 08:36:00 UTC 2022 - Steve Kowalik <[email protected]> + +- Update to 0.9.1.1: + * New features: + + faster loading and saving, faster OpenGL rendering + + basic resolution independence + + python3 support + + arbitrary window dragging support + + improved debug console + + subtitle support for BIK videos + + gameplay content for the demo + + Heart of Fury support + + SDLAudio caching and volume control + + PlayStation Vita port + + simpler invocation, AppImage packages + * Improved features: + + unicode support (iconv not optional any more!) + + window management, drawing and input handling + + performance: SDL2 video playback, general and text rendering + + smoother movement animations, demo + + lightning bolts, iwd2 stealth, iwd effects, pst levelup + + scripting, audio backends, logging + + build system, portability and performance improvements + + externalized summoning limit, trap limit, narration text speed +- Switch BuildRequires to Python 3 +- Add patch link-ptread-core-explicitly.patch: + * Link gemrb_core against the threading library explicitly. + +------------------------------------------------------------------- Old: ---- gemrb-0.8.7.tar.gz New: ---- gemrb-0.9.1.1.tar.gz link-ptread-core-explicitly.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gemrb.spec ++++++ --- /var/tmp/diff_new_pack.SklnO9/_old 2022-12-07 17:37:35.049399601 +0100 +++ /var/tmp/diff_new_pack.SklnO9/_new 2022-12-07 17:37:35.053399623 +0100 @@ -1,7 +1,7 @@ # # spec file for package gemrb # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,13 +17,14 @@ Name: gemrb -Version: 0.8.7 +Version: 0.9.1.1 Release: 0 Summary: Game engine made with pre-rendered background License: GPL-2.0-or-later Group: Amusements/Games/RPG URL: http://www.gemrb.org/ Source: https://github.com/%{name}/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +Patch0: link-ptread-core-explicitly.patch BuildRequires: cmake >= 3.1 BuildRequires: fdupes BuildRequires: gcc @@ -38,7 +39,7 @@ BuildRequires: pkgconfig(libpng) BuildRequires: pkgconfig(libvlc) BuildRequires: pkgconfig(openal) -BuildRequires: pkgconfig(python) +BuildRequires: pkgconfig(python3) BuildRequires: pkgconfig(sdl2) BuildRequires: pkgconfig(vorbis) BuildRequires: pkgconfig(zlib) @@ -52,7 +53,7 @@ Dale series or Planescape: Torment to play. %prep -%autosetup +%autosetup -p1 %build rm -Rf CMakeCache.txt CMakeFiles/ @@ -84,6 +85,7 @@ %{_mandir}/man6/gemrb.6%{?ext_man} %{_datadir}/gemrb/ %{_datadir}/doc/gemrb/ +%{_datadir}/metainfo/org.gemrb.gemrb.metainfo.xml %{_datadir}/pixmaps/gemrb.png %dir %{_datadir}/icons/hicolor %dir %{_datadir}/icons/hicolor/scalable ++++++ gemrb-0.8.7.tar.gz -> gemrb-0.9.1.1.tar.gz ++++++ /work/SRC/openSUSE:Factory/gemrb/gemrb-0.8.7.tar.gz /work/SRC/openSUSE:Factory/.gemrb.new.1835/gemrb-0.9.1.1.tar.gz differ: char 13, line 1 ++++++ link-ptread-core-explicitly.patch ++++++ Index: gemrb-0.9.1.1/gemrb/core/CMakeLists.txt =================================================================== --- gemrb-0.9.1.1.orig/gemrb/core/CMakeLists.txt +++ gemrb-0.9.1.1/gemrb/core/CMakeLists.txt @@ -141,7 +141,7 @@ if (STATIC_LINK) ADD_LIBRARY(gemrb_core STATIC ${gemrb_core_LIB_SRCS}) else (STATIC_LINK) ADD_LIBRARY(gemrb_core SHARED ${gemrb_core_LIB_SRCS}) - TARGET_LINK_LIBRARIES(gemrb_core ${CMAKE_DL_LIBS} ${COREFOUNDATION_LIBRARY} ${Iconv_LIBRARY}) + TARGET_LINK_LIBRARIES(gemrb_core ${CMAKE_DL_LIBS} ${COREFOUNDATION_LIBRARY} ${Iconv_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) IF(WIN32) SET_TARGET_PROPERTIES(gemrb_core PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/gemrb ) INSTALL(TARGETS gemrb_core RUNTIME DESTINATION ${LIB_DIR})
