Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rescue for openSUSE:Factory checked in at 2021-04-14 10:11:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rescue (Old) and /work/SRC/openSUSE:Factory/.rescue.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rescue" Wed Apr 14 10:11:24 2021 rev:2 rq:885059 version:1.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/rescue/rescue.changes 2015-07-08 06:59:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rescue.new.2401/rescue.changes 2021-04-14 10:11:53.381585945 +0200 @@ -1,0 +2,8 @@ +Sat Apr 10 22:58:27 UTC 2021 - Ferdinand Thiessen <[email protected]> + +- Update to 1.0.4: + * fix no sun audio crash on startup + * fix huge fonts on JDK-13 Linux/GTKTheme hi-res screens + * fix crash on no row selected in keyboard shortcut screen + +------------------------------------------------------------------- Old: ---- Rescue_1.0.0.3.zip New: ---- Rescue_1.0.4.zip ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rescue.spec ++++++ --- /var/tmp/diff_new_pack.BB0Moz/_old 2021-04-14 10:11:53.977586952 +0200 +++ /var/tmp/diff_new_pack.BB0Moz/_new 2021-04-14 10:11:53.977586952 +0200 @@ -1,7 +1,7 @@ # # spec file for package rescue # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,31 +12,27 @@ # 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/ # Name: rescue -Version: 1.0.0.3 +Version: 1.0.4 Release: 0 Summary: Action Adventure in Space -License: GPL-3.0+ +License: GPL-3.0-or-later Group: Amusements/Games/Strategy/Other -Url: http://rescue.sourceforge.net/ +URL: http://rescue.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/Rescue_%{version}.zip Source1: %{name}.sh Source2: %{name}.desktop -%if 0%{?suse_version} +BuildRequires: dos2unix BuildRequires: fdupes BuildRequires: hicolor-icon-theme -BuildRequires: update-desktop-files -%endif -BuildRequires: dos2unix -BuildRequires: java-devel >= 1.6.0 BuildRequires: unzip -Requires: jre >= 1.6.0 +BuildRequires: update-desktop-files +Requires: jre <= 1.8.0 BuildArch: noarch -BuildRoot: %{_tmppath}/%{name}-%{version}-build %description Rescue! Max is an Action Adventure in Space written in java. @@ -63,34 +59,31 @@ %install # install wrappers -install -Dm 0755 %{S:1} %{buildroot}%{_bindir}/%{name} +install -Dm 0755 %{SOURCE1} %{buildroot}%{_bindir}/%{name} # install directories -mkdir -p %{buildroot}%{_libexecdir}/%{name}/{help,lib,missions} +mkdir -p %{buildroot}%{_datadir}/%{name}/{help,lib,missions} for d in help lib missions ; do - cp -a $d %{buildroot}%{_libexecdir}/%{name} + cp -a $d %{buildroot}%{_datadir}/%{name} done # install Jar files -install -Dm 0644 *.jar %{buildroot}%{_libexecdir}/%{name} +install -Dm 0644 *.jar %{buildroot}%{_datadir}/%{name} # install icon install -Dm 0644 logo.png %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/%{name}.png # install Desktop file -install -Dm 0644 %{S:2} %{buildroot}%{_datadir}/applications/%{name}.desktop +install -Dm 0644 %{SOURCE2} %{buildroot}%{_datadir}/applications/%{name}.desktop -%if 0%{?suse_version} - %suse_update_desktop_file %{name} - %fdupes -s %{buildroot}%{_prefix} -%endif +%suse_update_desktop_file %{name} +%fdupes -s %{buildroot}%{_prefix} %files -%defattr(-,root,root,-) %doc ChangeLog.txt gpl.txt todo.txt %{_bindir}/%{name} +%{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/32x32/apps/%{name}.png -%{_libexecdir}/%{name} %changelog ++++++ rescue.sh ++++++ --- /var/tmp/diff_new_pack.BB0Moz/_old 2021-04-14 10:11:54.021587026 +0200 +++ /var/tmp/diff_new_pack.BB0Moz/_new 2021-04-14 10:11:54.021587026 +0200 @@ -1,4 +1,6 @@ #!/bin/sh - -cd /usr/lib/rescue && exec /usr/bin/java \ --jar Rescue.jar "${@}" +JAVA=java +test -e "$JAVA_ROOT/../jre-1.8.0-openjdk/bin/java" && JAVA="$JAVA_ROOT/../jre-1.8.0-openjdk/bin/java" +pushd /usr/share/rescue +exec "$JAVA" -jar Rescue.jar "${@}" +popd
