Hello community, here is the log from the commit of package powdertoy for openSUSE:Factory checked in at 2018-05-19 15:43:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/powdertoy (Old) and /work/SRC/openSUSE:Factory/.powdertoy.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "powdertoy" Sat May 19 15:43:24 2018 rev:5 rq:610437 version:93.3 Changes: -------- --- /work/SRC/openSUSE:Factory/powdertoy/powdertoy.changes 2017-11-21 15:36:04.689152288 +0100 +++ /work/SRC/openSUSE:Factory/.powdertoy.new/powdertoy.changes 2018-05-19 15:43:34.648188328 +0200 @@ -1,0 +2,17 @@ +Wed May 16 06:10:19 UTC 2018 - [email protected] + +- Fix update-mime-info parser error on powdertoy-save.xml: + * Add powdertoy-93.3-fix-mimeinfo.patch. +- Ran spec-cleaner. + +------------------------------------------------------------------- +Mon Apr 30 11:55:36 UTC 2018 - [email protected] + +- Update to version 93.3: + * No changelog provided. +- Remove upstream patch: + * The-Powder-Toy-92.5-scons-3.patch +- Disable SSE for non-x86* +- Fix inxtallation path for non-x86* + +------------------------------------------------------------------- Old: ---- The-Powder-Toy-92.5-scons-3.patch v92.5.tar.gz New: ---- powdertoy-93.3-fix-mimeinfo.patch v93.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ powdertoy.spec ++++++ --- /var/tmp/diff_new_pack.IFeGOj/_old 2018-05-19 15:43:36.196131694 +0200 +++ /var/tmp/diff_new_pack.IFeGOj/_new 2018-05-19 15:43:36.196131694 +0200 @@ -1,7 +1,7 @@ # # spec file for package powdertoy # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,16 +16,16 @@ # -Summary: Physics sandbox game -License: GPL-3.0 -Group: Amusements/Games/Other Name: powdertoy -Version: 92.5 +Version: 93.3 Release: 0 +Summary: Physics sandbox game +License: GPL-3.0-only +Group: Amusements/Games/Other +URL: http://powdertoy.co.uk Source: https://github.com/simtr/The-Powder-Toy/archive/v%{version}.tar.gz -Patch0: The-Powder-Toy-92.5-scons-3.patch -Url: http://powdertoy.co.uk -BuildRoot: %{_tmppath}/%{name}-%{version}-build +# PATCH-FIX-UPSTREAM powdertoy-93.3-fix-mimeinfo.patch -- Fix syntax problems +Patch0: powdertoy-93.3-fix-mimeinfo.patch BuildRequires: ImageMagick BuildRequires: SDL-devel BuildRequires: SDL_mixer-devel @@ -58,19 +58,18 @@ %ifarch x86_64 scons --lin --release --64 %else -%ifarch %ix86 +%ifarch %{ix86} scons --lin --release --32 %else -scons --lin --release +scons --lin --release --no-sse %endif %endif %install -%ifarch %ix86 -install -D -m 0755 build/powder %{buildroot}%{_bindir}/powder -%endif %ifarch x86_64 install -D -m 0755 build/powder64 %{buildroot}%{_bindir}/powder +%else +install -D -m 0755 build/powder %{buildroot}%{_bindir}/powder %endif convert resources/powder.ico -strip resources/powder.png install -D -m 0644 resources/powder-0.png %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/powder.png @@ -94,8 +93,8 @@ %mime_database_postun %files -%defattr(-, root, root) -%doc README.md LICENSE TODO +%license LICENSE +%doc README.md TODO %{_bindir}/powder %{_datadir}/appdata/powder.appdata.xml %{_datadir}/applications/powder.desktop ++++++ powdertoy-93.3-fix-mimeinfo.patch ++++++ >From 7c685d14199e51667996625323add06bc97cf08f Mon Sep 17 00:00:00 2001 From: Antoine Belvire <[email protected]> Date: Wed, 16 May 2018 08:01:39 +0200 Subject: [PATCH] Fix mime-info format update-mime-info may fail to parse the file if attributes are not between quotes. This commit put attributes between quotes, fix the indentation and remove a typo (unneeded quote at the end of a line). --- resources/powdertoy-save.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/powdertoy-save.xml b/resources/powdertoy-save.xml index bfaeea6b..6e54fd75 100644 --- a/resources/powdertoy-save.xml +++ b/resources/powdertoy-save.xml @@ -1,8 +1,8 @@ <?xml version="1.0"?> - <mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'> +<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'> <mime-type type="application/vnd.powdertoy.save"> <comment>Powder Toy save</comment> - <glob pattern=*.cps/> - <glob pattern=*.stm/> - </mime-type>" + <glob pattern="*.cps"/> + <glob pattern="*.stm"/> + </mime-type> </mime-info> -- 2.16.3 ++++++ v92.5.tar.gz -> v93.3.tar.gz ++++++ ++++ 12640 lines of diff (skipped)
