git: 9aeed41c8ff8 - main - games/wyrmgus: update to 5.0.1

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 24 18:05:02 UTC 2021


The branch main has been updated by amdmi3:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9aeed41c8ff80f73a47195fb7c54e508c63f089b

commit 9aeed41c8ff80f73a47195fb7c54e508c63f089b
Author:     Dmitry Marakasov <amdmi3 at FreeBSD.org>
AuthorDate: 2021-08-23 22:10:38 +0000
Commit:     Dmitry Marakasov <amdmi3 at FreeBSD.org>
CommitDate: 2021-08-24 17:59:15 +0000

    games/wyrmgus: update to 5.0.1
---
 games/wyrmgus/Makefile                          |  8 ++++----
 games/wyrmgus/distinfo                          |  6 +++---
 games/wyrmgus/files/patch-src_util_path__util.h | 13 +++++++++++++
 3 files changed, 20 insertions(+), 7 deletions(-)

diff --git a/games/wyrmgus/Makefile b/games/wyrmgus/Makefile
index fec2257dbb1b..842c2042a4ca 100644
--- a/games/wyrmgus/Makefile
+++ b/games/wyrmgus/Makefile
@@ -1,9 +1,8 @@
 # Created by: Travis Poppe <tlp at liquidx.org>
 
 PORTNAME=	wyrmgus
-PORTVERSION=	4.1.4
+PORTVERSION=	5.0.1
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
 CATEGORIES=	games devel
 
 MAINTAINER=	amdmi3 at FreeBSD.org
@@ -20,10 +19,11 @@ GH_ACCOUNT=     Andrettin
 GH_PROJECT=     Wyrmgus
 
 USES=		cmake compiler:c++17-lang lua:51 pkgconfig sdl sqlite qt:5 xorg
-USE_QT=		core gui widgets multimedia location declarative network \
+USE_QT=		core gui widgets multimedia location \
+		quickcontrols quickcontrols2 graphicaleffects \
 		qmake_build buildtools_build
 USE_XORG=	x11
-USE_SDL=	sdl mixer
+USE_SDL=	sdl2 mixer2
 CMAKE_ARGS=	-DGAMEDIR:STRING="bin" \
 		-DTOLUA++_APP:STRING="tolua++-${LUA_VER}" \
 		-DTOLUA++_INCLUDE_DIR:STRING="${LUA_INCDIR}" \
diff --git a/games/wyrmgus/distinfo b/games/wyrmgus/distinfo
index cb3f0ae2d69d..453d9c713ec7 100644
--- a/games/wyrmgus/distinfo
+++ b/games/wyrmgus/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1614275655
-SHA256 (Andrettin-Wyrmgus-v4.1.4_GH0.tar.gz) = 583616cf9d744739c1a160d81d13905cefa3c1dd30c1c5d2cfa8da8ad7a5cd4e
-SIZE (Andrettin-Wyrmgus-v4.1.4_GH0.tar.gz) = 1561342
+TIMESTAMP = 1629717520
+SHA256 (Andrettin-Wyrmgus-v5.0.1_GH0.tar.gz) = a149e6d6f80471ee017f1182b68c4a22256da220fc569a68a3cc9cc950a28141
+SIZE (Andrettin-Wyrmgus-v5.0.1_GH0.tar.gz) = 1567090
diff --git a/games/wyrmgus/files/patch-src_util_path__util.h b/games/wyrmgus/files/patch-src_util_path__util.h
new file mode 100644
index 000000000000..5617bf8aa85e
--- /dev/null
+++ b/games/wyrmgus/files/patch-src_util_path__util.h
@@ -0,0 +1,13 @@
+std::filesystem::path::u8string may return std::string depending on standard
+
+--- src/util/path_util.h.orig	2021-08-22 18:46:24 UTC
++++ src/util/path_util.h
+@@ -31,7 +31,7 @@ namespace wyrmgus::path {
+ inline std::string to_string(const std::filesystem::path &path)
+ {
+ 	//convert a path to a UTF-8 encoded string
+-	const std::u8string u8str = path.u8string();
++	const auto u8str = path.u8string();
+ 	return std::string(u8str.begin(), u8str.end());
+ }
+ 


More information about the dev-commits-ports-all mailing list