Hello community, here is the log from the commit of package crawl for openSUSE:Factory checked in at 2018-08-31 10:44:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/crawl (Old) and /work/SRC/openSUSE:Factory/.crawl.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "crawl" Fri Aug 31 10:44:27 2018 rev:30 rq:631803 version:0.22.0 Changes: -------- --- /work/SRC/openSUSE:Factory/crawl/crawl.changes 2018-07-23 18:02:30.152819420 +0200 +++ /work/SRC/openSUSE:Factory/.crawl.new/crawl.changes 2018-08-31 10:44:48.743228998 +0200 @@ -1,0 +2,16 @@ +Sat Aug 25 17:45:20 UTC 2018 - [email protected] + +- Spec cleanup + * Dropped defattr as more recent rpms add a default %defattr line + if none is present in the rpm %files section +- Fixed source (used corret one from upstream) + +------------------------------------------------------------------- +Fri Aug 10 15:14:29 UTC 2018 - [email protected] + +- Update to 0.22.0 + * Player ghosts now only appear in sealed ghost vaults + * New spell library interface + * User interface revamp for Tiles and WebTiles + +------------------------------------------------------------------- Old: ---- stone_soup-0.21.1-nodeps.tar.xz New: ---- stone_soup-0.22.0-nodeps.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ crawl.spec ++++++ --- /var/tmp/diff_new_pack.LucFkx/_old 2018-08-31 10:44:52.459233461 +0200 +++ /var/tmp/diff_new_pack.LucFkx/_new 2018-08-31 10:44:52.459233461 +0200 @@ -1,7 +1,7 @@ # # spec file for package crawl # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2011 Sascha Peilicke <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -16,15 +16,19 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -%define major_ver 0.21 + +%define major_ver 0.22 +%define about Crawl is a fun game in the grand tradition of games like Rogue, Hack, and Moria.\ +Your objective is to travel deep into a subterranean cave complex and retrieve the Orb of Zot, \ +which is guarded by many horrible and hideous creatures. Name: crawl -Version: %{major_ver}.1 +Version: %{major_ver}.0 Release: 0 Summary: Roguelike dungeon exploration game -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Amusements/Games/RPG -Url: http://crawl.develz.org/ -Source: http://crawl.develz.org/release/%{major_ver}/stone_soup-%{version}-nodeps.tar.xz +Url: https://crawl.develz.org/ +Source: https://crawl.develz.org/release/%{major_ver}/stone_soup-%{version}-nodeps.tar.xz # PATCH-FIX-OPENSUSE for reproducible builds Patch0: %{name}-0.17.1-datetime.patch # PATCH-FIX-UPSTREAM https://github.com/crawl/crawl/pull/464 @@ -39,7 +43,7 @@ BuildRequires: libpng-devel BuildRequires: lua51-devel BuildRequires: ncurses-devel -BuildRequires: pkg-config +BuildRequires: pkgconfig BuildRequires: pngcrush BuildRequires: update-desktop-files BuildRequires: pkgconfig(SDL2_image) @@ -47,18 +51,13 @@ BuildRequires: pkgconfig(glu) BuildRequires: pkgconfig(sdl2) BuildRequires: pkgconfig(sqlite3) -BuildRoot: %{_tmppath}/%{name}-%{version}-build +Requires: %{name}-data = %{version} %if 0%{?suse_version} >= 1330 Requires: group(games) Requires: user(games) %else Requires(pre): pwdutils %endif -Requires: %{name}-data = %{version} - -%define about Crawl is a fun game in the grand tradition of games like Rogue, Hack, and Moria.\ -Your objective is to travel deep into a subterranean cave complex and retrieve the Orb of Zot, \ -which is guarded by many horrible and hideous creatures. %description %about @@ -82,8 +81,8 @@ %package data Summary: Roguelike dungeon exploration game (Data files) Group: Amusements/Games/RPG -BuildArch: noarch Requires: %{name} = %{version} +BuildArch: noarch %description data %about @@ -106,11 +105,11 @@ # note that --disable-altivec not supported by gcc 4.8 tmpflags="$tmpflags -U__ALTIVEC__" %endif -make clean -make %{?_smp_flags} prefix=%{_prefix} bin_prefix=bin DATADIR="%{_datadir}/%{name}/" BINDIR=%{_bindir} EXTRA_FLAGS="${tmpflags}" +make %{?_smp_mflags} clean +make %{?_smp_mflags} prefix=%{_prefix} bin_prefix=bin DATADIR="%{_datadir}/%{name}/" BINDIR=%{_bindir} EXTRA_FLAGS="${tmpflags}" mv crawl crawl.tty # avoid name clashes temporarily -make clean -make %{?_smp_flags} prefix=%{_prefix} bin_prefix=bin DATADIR="%{_datadir}/%{name}/" BINDIR=%{_bindir} EXTRA_FLAGS="${tmpflags}" TILES="1" +make %{?_smp_mflags} clean +make %{?_smp_mflags} prefix=%{_prefix} bin_prefix=bin DATADIR="%{_datadir}/%{name}/" BINDIR=%{_bindir} EXTRA_FLAGS="${tmpflags}" TILES="1" mv crawl crawl-sdl mv crawl.tty crawl @@ -118,14 +117,14 @@ %if 0%{?suse_version} < 1330 # Anything after Leap 42.x / SLE12 base uses user/group package dependencies getent group games >/dev/null || groupadd -r games -getent passwd games >/dev/null || useradd -r -g games -d /var/games -s /sbin/nologin +getent passwd games >/dev/null || useradd -r -g games -d %{_localstatedir}/games -s /sbin/nologin %endif # move old saves -if [ -d /var/games/crawl ]; then +if [ -d %{_localstatedir}/games/crawl ]; then if [ -d /root/.crawl ]; then mv /root/.crawl /root/.crawl_old fi - mv /var/games/crawl /root/.crawl + mv %{_localstatedir}/games/crawl /root/.crawl fi %install @@ -144,7 +143,6 @@ %icon_theme_cache_postun %files sdl -%defattr (-,root,root) %attr(0755,root,root) %{_bindir}/%{name}-sdl %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg @@ -152,12 +150,10 @@ %{_datadir}/appdata/%{name}.appdata.xml %files data -%defattr (-,root,root) -%doc CREDITS.txt licence.txt %{_datadir}/%{name} %files -%defattr(-,root,root) +%license LICENSE %attr(0755,root,root) %{_bindir}/%{name} %{_mandir}/man6/* ++++++ stone_soup-0.21.1-nodeps.tar.xz -> stone_soup-0.22.0-nodeps.tar.xz ++++++ /work/SRC/openSUSE:Factory/crawl/stone_soup-0.21.1-nodeps.tar.xz /work/SRC/openSUSE:Factory/.crawl.new/stone_soup-0.22.0-nodeps.tar.xz differ: char 25, line 1
