pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

crawl-stone-soup: update to dungeon-crawl-stone-soup-0.22.1



Module Name:	pkgsrc-wip
Committed By:	Yorick Hardy <yorickhardy%gmail.com@localhost>
Pushed By:	yhardy
Date:		Tue Sep 18 20:13:46 2018 +0200
Changeset:	e608a6a39a0d50b59223e8cf8f08f39fcbdd41ec

Modified Files:
	crawl-stone-soup/Makefile
	crawl-stone-soup/distinfo
Added Files:
	crawl-stone-soup/patches/patch-initfile.cc

Log Message:
crawl-stone-soup: update to dungeon-crawl-stone-soup-0.22.1

Stone Soup 0.22.1 (20180916)
----------------------------

Bugfix Release
--------------
* Support for distributing player ghosts files with releases. Now local games
  will have a starting set of ghosts available for ghost vaults.
* New tiles for Azrael, shock serpents, dream sheep, mana vipers, and the Robe
  of Vines.
* An additional set of Gnoll player dolls tiles.
* Fix WebTiles menus for older versions of Firefox.
* 81 bugfixes, adjustments, and cleanups in total.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=e608a6a39a0d50b59223e8cf8f08f39fcbdd41ec

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 crawl-stone-soup/Makefile                  |  4 ++--
 crawl-stone-soup/distinfo                  |  9 +++++----
 crawl-stone-soup/patches/patch-initfile.cc | 16 ++++++++++++++++
 3 files changed, 23 insertions(+), 6 deletions(-)

diffs:
diff --git a/crawl-stone-soup/Makefile b/crawl-stone-soup/Makefile
index 9c79d7c4c3..b4a8dd7332 100644
--- a/crawl-stone-soup/Makefile
+++ b/crawl-stone-soup/Makefile
@@ -1,7 +1,7 @@
 # $NetBSD: Makefile,v 1.7 2015/08/18 21:15:41 yhardy Exp $
 
-DISTNAME=	stone_soup-0.22.0-nodeps
-PKGNAME=	dungeon-crawl-stone-soup-0.22.0
+DISTNAME=	stone_soup-0.22.1-nodeps
+PKGNAME=	dungeon-crawl-stone-soup-0.22.1
 CATEGORIES=	games
 MASTER_SITES=	http://crawl.develz.org/release/0.22/
 EXTRACT_SUFX=	.tar.xz
diff --git a/crawl-stone-soup/distinfo b/crawl-stone-soup/distinfo
index f6de06b5af..3c9dcb103b 100644
--- a/crawl-stone-soup/distinfo
+++ b/crawl-stone-soup/distinfo
@@ -1,8 +1,9 @@
 $NetBSD: distinfo,v 1.4 2015/08/18 21:15:41 yhardy Exp $
 
-SHA1 (stone_soup-0.22.0-nodeps.tar.xz) = 6c7797f5b84f6e20a3c254ff2c16f09268325957
-RMD160 (stone_soup-0.22.0-nodeps.tar.xz) = 8e2d573148f1b66839115e7dbfb9384e274ac665
-SHA512 (stone_soup-0.22.0-nodeps.tar.xz) = bd9a1afc7475147af9b01dc9815d5855a2000d2b3bc8ca6b6a0edb81f5e500a5282a67788f609128a610018720b2a9eb45501ba5d131a611f38eaabd80547e37
-Size (stone_soup-0.22.0-nodeps.tar.xz) = 10433644 bytes
+SHA1 (stone_soup-0.22.1-nodeps.tar.xz) = 3814510db73493b9f8a528b43e7fae35376ecf0f
+RMD160 (stone_soup-0.22.1-nodeps.tar.xz) = 8633fff0504e20a2f6118d33fcd5c54a7b2f0abe
+SHA512 (stone_soup-0.22.1-nodeps.tar.xz) = 858767e730fee7badc177a0de53764d60aa50128c4a8bd54b9ffaf4259a5da7c8b67a8d0c3ebc695384ec3ef176ca99ce564037a09a5d682d318598b73756b1e
+Size (stone_soup-0.22.1-nodeps.tar.xz) = 10441320 bytes
+SHA1 (patch-initfile.cc) = c0db8f41404565a44c6e0a26c0ff4a3ec0644e44
 SHA1 (patch-source__libunix.cc) = 485c3973bed32e88f7e84e4d42757a987d012090
 SHA1 (patch-source_platform.h) = d310773dc87504677108e59a050b5664d82d41e1
diff --git a/crawl-stone-soup/patches/patch-initfile.cc b/crawl-stone-soup/patches/patch-initfile.cc
new file mode 100644
index 0000000000..d052b3cecf
--- /dev/null
+++ b/crawl-stone-soup/patches/patch-initfile.cc
@@ -0,0 +1,16 @@
+$NetBSD$
+
+We need unistd for unlink(2), depending on UNIX being defined
+(the same approach is used in files.cc).
+
+--- initfile.cc.orig	2018-09-17 02:40:29.000000000 +0000
++++ initfile.cc
+@@ -88,6 +88,8 @@ extern char **NXArgv;
+ #endif
+ #elif defined(TARGET_OS_LINUX) || defined(TARGET_OS_CYGWIN)
+ #include <unistd.h>
++#elif defined(UNIX)
++#include <unistd.h>
+ #endif
+ 
+ const string game_options::interrupt_prefix = "interrupt_";


Home | Main Index | Thread Index | Old Index