Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lugaru for openSUSE:Factory checked in at 2025-08-03 13:38:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lugaru (Old) and /work/SRC/openSUSE:Factory/.lugaru.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lugaru" Sun Aug 3 13:38:07 2025 rev:5 rq:1297172 version:1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/lugaru/lugaru.changes 2018-02-14 10:52:34.231635493 +0100 +++ /work/SRC/openSUSE:Factory/.lugaru.new.1085/lugaru.changes 2025-08-03 13:38:46.238835317 +0200 @@ -1,0 +2,5 @@ +Sat Jul 26 17:56:54 UTC 2025 - Adam Mizerski <a...@mizerski.pl> + +- added patch 0004-Revert-Set-CMP0004-policy-to-OLD.patch + +------------------------------------------------------------------- New: ---- 0004-Revert-Set-CMP0004-policy-to-OLD.patch ----------(New B)---------- New: - added patch 0004-Revert-Set-CMP0004-policy-to-OLD.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lugaru.spec ++++++ --- /var/tmp/diff_new_pack.hYJiKa/_old 2025-08-03 13:38:47.030868162 +0200 +++ /var/tmp/diff_new_pack.hYJiKa/_new 2025-08-03 13:38:47.034868328 +0200 @@ -1,7 +1,7 @@ # # spec file for package lugaru # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2025 SUSE LLC # Copyright (c) 2017 Neal Gompa <ngomp...@gmail.com>. # # All modifications and additions to the file contributed by third parties @@ -13,7 +13,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -21,10 +21,11 @@ Version: 1.2 Release: 0 Summary: Third-person ninja rabbit fighting game -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Amusements/Games/Action/Other -Url: https://osslugaru.gitlab.io/ -Source: https://bitbucket.org/osslugaru/lugaru/downloads/%{name}-%{version}.tar.xz +URL: https://osslugaru.gitlab.io/ +# The code is now hosted at https://gitlab.com/osslugaru/lugaru/ - use the url with the next release. +Source: %{name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM 0001-CMake-Define-build-type-before-configuring-version-h.patch rversche...@gmail.com -- Define build type before configuring version header Patch0001: 0001-CMake-Define-build-type-before-configuring-version-h.patch @@ -32,6 +33,8 @@ Patch0002: 0002-ImageIO-fix-invalid-conversion.patch # PATCH-FIX-UPSTREAM 0003-Dist-Linux-Add-content-ratings-to-AppStream-appdata-.patch ngomp...@gmail.com -- Add content ratings to AppStream data Patch0003: 0003-Dist-Linux-Add-content-ratings-to-AppStream-appdata-.patch +# PATCH-FIX-UPSTREAM 0004-Revert-Set-CMP0004-policy-to-OLD.patch a...@mizerski.pl - Revert "Set CMP0004 policy to OLD" +Patch0004: 0004-Revert-Set-CMP0004-policy-to-OLD.patch # PATCH-FIX-OPENSUSE lugaru-1.1-do-not-install-documentation.patch ngomp...@gmail.com -- Don't try to install docs, as we're doing it ourselves Patch1000: lugaru-1.1-do-not-install-documentation.patch @@ -77,7 +80,7 @@ %package data Summary: Arch-independent data files for the Lugaru game -License: CC-BY-SA-3.0 and CC-BY-SA-4.0 +License: CC-BY-SA-3.0 AND CC-BY-SA-4.0 Group: Amusements/Games/Action/Other Requires: %{name} = %{version} BuildArch: noarch @@ -112,7 +115,8 @@ %files %defattr(-,root,root) -%doc COPYING.txt AUTHORS RELEASE-NOTES.md Docs/* +%doc AUTHORS RELEASE-NOTES.md Docs/* +%license COPYING.txt %{_bindir}/%{name} %dir %{_datadir}/appdata %{_datadir}/appdata/%{name}.appdata.xml @@ -122,7 +126,7 @@ %files data %defattr(-,root,root) -%doc CONTENT-LICENSE.txt +%license CONTENT-LICENSE.txt %dir %{_datadir}/%{name} %{_datadir}/%{name}/* ++++++ 0004-Revert-Set-CMP0004-policy-to-OLD.patch ++++++ >From 165a34a5ca8a712be405fefffcccdb5845f230e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= <rversche...@gmail.com> Date: Sat, 7 Jul 2018 11:52:28 +0200 Subject: [PATCH] Revert "Set CMP0004 policy to OLD" This reverts commit b461f4a69c17073d5c576d24e48b1b59c0d3c932. The workaround is no longer needed with SDL 2.0.5+, which is shipped in all distros we support (including Debian Stable and RHEL 7). Fixes #99. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29141271..3973d362 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,6 @@ project(lugaru) -cmake_minimum_required(VERSION 3.0) -cmake_policy(SET CMP0004 OLD) +cmake_minimum_required(VERSION 3.5) include(FindPkgConfig) include(GNUInstallDirs) -- GitLab