Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Sep 2018 04:21:09 +0000 (UTC)
From:      Nikolai Lifanov <lifanov@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480546 - in head/games/stonesoup: . files
Message-ID:  <201809240421.w8O4L93w011109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lifanov
Date: Mon Sep 24 04:21:08 2018
New Revision: 480546
URL: https://svnweb.freebsd.org/changeset/ports/480546

Log:
  update games/stonesoup to 0.22.1
  
  Changes: https://crawl.develz.org/wordpress/0-22-1-and-0-21-2-bug-fix-releases

Added:
  head/games/stonesoup/files/patch-initfile.cc   (contents, props changed)
Deleted:
  head/games/stonesoup/files/patch-wiz-you.cc
Modified:
  head/games/stonesoup/Makefile
  head/games/stonesoup/distinfo

Modified: head/games/stonesoup/Makefile
==============================================================================
--- head/games/stonesoup/Makefile	Mon Sep 24 04:08:06 2018	(r480545)
+++ head/games/stonesoup/Makefile	Mon Sep 24 04:21:08 2018	(r480546)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	stonesoup
-PORTVERSION=	0.22.0
+PORTVERSION=	0.22.1
 CATEGORIES=	games
 
 MAINTAINER=	lifanov@FreeBSD.org
@@ -55,6 +55,7 @@ LUA_DESC=	Bindings for LUA user scripts
 
 SDL_CONFLICTS=	${PORTNAME}-[0-9]*
 SDL_USE=	sdl=sdl2,image2,mixer2 gl=gl,glu
+SDL_USES=	gl
 SDL_USES_OFF=	ncurses
 SDL_MAKE_ARGS=	TILES=y SOUND=y
 SDL_BUILD_DEPENDS=	\

Modified: head/games/stonesoup/distinfo
==============================================================================
--- head/games/stonesoup/distinfo	Mon Sep 24 04:08:06 2018	(r480545)
+++ head/games/stonesoup/distinfo	Mon Sep 24 04:21:08 2018	(r480546)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1534118359
-SHA256 (crawl-crawl-0.22.0_GH0.tar.gz) = cdffb393955e67f2aded9194f6dcd6875ed2e2dce2a5cac1ad950d699456f242
-SIZE (crawl-crawl-0.22.0_GH0.tar.gz) = 12337662
+TIMESTAMP = 1537762805
+SHA256 (crawl-crawl-0.22.1_GH0.tar.gz) = 15217cd5cb0ae4c8fbae7343712c17d57cc770bde21fd6daa0e968780e477bab
+SIZE (crawl-crawl-0.22.1_GH0.tar.gz) = 12355516

Added: head/games/stonesoup/files/patch-initfile.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/stonesoup/files/patch-initfile.cc	Mon Sep 24 04:21:08 2018	(r480546)
@@ -0,0 +1,20 @@
+--- initfile.cc.orig	2018-09-24 03:59:12 UTC
++++ initfile.cc
+@@ -4225,7 +4225,7 @@ static void _bones_rewrite(const string 
+         if (dups)
+             cout << ", " << dups << " duplicates removed";
+         cout << "\n";
+-        unlink(filename.c_str());
++        unlink_u(filename.c_str());
+         _write_bones(filename, out);
+     }
+     else
+@@ -4241,7 +4241,7 @@ static void _bones_merge(const vector<st
+         out.insert(out.end(), ghosts.begin(), ghosts.end());
+     }
+     if (file_exists(out_name))
+-        unlink(out_name.c_str());
++        unlink_u(out_name.c_str());
+     if (out.size() == 0)
+         cout << "Writing empty bones file";
+     else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809240421.w8O4L93w011109>