git: bd363520ed4c - main - games/arx-libertatis: update 1.2 → 1.2.1

From: Dmitry Marakasov <amdmi3_at_FreeBSD.org>
Date: Wed, 13 Apr 2022 18:46:25 UTC
The branch main has been updated by amdmi3:

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

commit bd363520ed4c51555f0e127bb7b0cab85bc1bb08
Author:     Dmitry Marakasov <amdmi3@FreeBSD.org>
AuthorDate: 2022-04-13 12:42:54 +0000
Commit:     Dmitry Marakasov <amdmi3@FreeBSD.org>
CommitDate: 2022-04-13 18:41:55 +0000

    games/arx-libertatis: update 1.2 → 1.2.1
---
 games/arx-libertatis/Makefile                                 |  2 +-
 games/arx-libertatis/distinfo                                 |  6 +++---
 games/arx-libertatis/files/patch-src_platform_Dialog.cpp      | 11 -----------
 .../patch-src_platform_crashhandler_CrashHandlerPOSIX.cpp     | 11 -----------
 4 files changed, 4 insertions(+), 26 deletions(-)

diff --git a/games/arx-libertatis/Makefile b/games/arx-libertatis/Makefile
index db30258bd51f..58096ceba716 100644
--- a/games/arx-libertatis/Makefile
+++ b/games/arx-libertatis/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	arx-libertatis
-PORTVERSION=	1.2
+PORTVERSION=	1.2.1
 CATEGORIES=	games
 MASTER_SITES=	https://arx-libertatis.org/files/ \
 		https://github.com/arx/ArxLibertatis/releases/download/${PORTVERSION}/
diff --git a/games/arx-libertatis/distinfo b/games/arx-libertatis/distinfo
index 2b55db20905f..8006918cdda1 100644
--- a/games/arx-libertatis/distinfo
+++ b/games/arx-libertatis/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1626354922
-SHA256 (arx-libertatis-1.2.tar.xz) = bacf7768c4e21c9166c7ea57083d4f20db0deb8f0ee7d96b5f2829e73a75ad0c
-SIZE (arx-libertatis-1.2.tar.xz) = 2478640
+TIMESTAMP = 1649691106
+SHA256 (arx-libertatis-1.2.1.tar.xz) = aafd8831ee2d187d7647ad671a03aabd2df3b7248b0bac0b3ac36ffeb441aedf
+SIZE (arx-libertatis-1.2.1.tar.xz) = 2479764
diff --git a/games/arx-libertatis/files/patch-src_platform_Dialog.cpp b/games/arx-libertatis/files/patch-src_platform_Dialog.cpp
deleted file mode 100644
index 7492c7063743..000000000000
--- a/games/arx-libertatis/files/patch-src_platform_Dialog.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/platform/Dialog.cpp.orig	2021-07-14 00:04:34 UTC
-+++ src/platform/Dialog.cpp
-@@ -175,7 +175,7 @@ static std::string formatAsHtml(const std::string & te
- 				oss << "http://";
- 				i += 6;
- 			} else if(!link && line.compare(i, 8, "https://", 8) == 0) {
--				oss << "<a href=";
-+				oss << "<a href=\"";
- 				link_start = oss.tellp(), link = true;
- 				oss << "https://";
- 				i += 7;
diff --git a/games/arx-libertatis/files/patch-src_platform_crashhandler_CrashHandlerPOSIX.cpp b/games/arx-libertatis/files/patch-src_platform_crashhandler_CrashHandlerPOSIX.cpp
deleted file mode 100644
index cba9ade4b262..000000000000
--- a/games/arx-libertatis/files/patch-src_platform_crashhandler_CrashHandlerPOSIX.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/platform/crashhandler/CrashHandlerPOSIX.cpp.orig	2021-07-14 00:04:34 UTC
-+++ src/platform/crashhandler/CrashHandlerPOSIX.cpp
-@@ -246,7 +246,7 @@ static fs::path getCoreDumpFile() {
- 	size_t start = 0;
- 	while(start < pattern.length()) {
- 		
--		size_t end = pattern.find('%');
-+		size_t end = pattern.find('%', start);
- 		if(end == std::string::npos) {
- 			end = pattern.length();
- 		}