aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2022-03-18 22:27:31 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2022-03-22 17:18:28 +0000
commitdb0715dad92ecfc3cc28e923cd6a1dcda75ced9e (patch)
tree991dbd05d4b585b25ae583d8a5ab23eebfc607b5 /games
parentfb63917f1b8ac77371428bde326b755e6200374c (diff)
downloadports-db0715dad92ecfc3cc28e923cd6a1dcda75ced9e.tar.gz
ports-db0715dad92ecfc3cc28e923cd6a1dcda75ced9e.zip
games/opentyrian: update 2.1.20220309 → 2.1.20220318
Diffstat (limited to 'games')
-rw-r--r--games/opentyrian/Makefile2
-rw-r--r--games/opentyrian/distinfo6
-rw-r--r--games/opentyrian/files/patch-src_arg__parse.c30
3 files changed, 4 insertions, 34 deletions
diff --git a/games/opentyrian/Makefile b/games/opentyrian/Makefile
index 65fb23acd145..f1faf99fbda8 100644
--- a/games/opentyrian/Makefile
+++ b/games/opentyrian/Makefile
@@ -1,6 +1,6 @@
PORTNAME= opentyrian
DISTVERSIONPREFIX= v
-DISTVERSION= 2.1.20220309
+DISTVERSION= 2.1.20220318
CATEGORIES= games
MAINTAINER= amdmi3@FreeBSD.org
diff --git a/games/opentyrian/distinfo b/games/opentyrian/distinfo
index e83443ef1392..42ac32159fc8 100644
--- a/games/opentyrian/distinfo
+++ b/games/opentyrian/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1646909236
-SHA256 (opentyrian-opentyrian-v2.1.20220309_GH0.tar.gz) = 6df44ca9b36acf9ba67099621b2fb1baa5f7b4ad2ec924ed943b87ff9061dbd2
-SIZE (opentyrian-opentyrian-v2.1.20220309_GH0.tar.gz) = 298329
+TIMESTAMP = 1647642356
+SHA256 (opentyrian-opentyrian-v2.1.20220318_GH0.tar.gz) = e0c6afbb5d395c919f9202f4c9b3b4da7bd6e993e9da6152f995012577e1ccbd
+SIZE (opentyrian-opentyrian-v2.1.20220318_GH0.tar.gz) = 298403
diff --git a/games/opentyrian/files/patch-src_arg__parse.c b/games/opentyrian/files/patch-src_arg__parse.c
deleted file mode 100644
index 9496fe636066..000000000000
--- a/games/opentyrian/files/patch-src_arg__parse.c
+++ /dev/null
@@ -1,30 +0,0 @@
---- src/arg_parse.c.orig 2022-03-10 02:50:47 UTC
-+++ src/arg_parse.c
-@@ -27,6 +27,7 @@ static void permute( const char *argv[], int *first_no
- static int parse_short_opt( int argc, const char *const argv[], const Options *options, Option *option );
- static int parse_long_opt( int argc, const char *const argv[], const Options *options, Option *option );
-
-+#ifndef __FreeBSD__
- /*!
- * \brief Locate a character in a a string.
- *
-@@ -36,6 +37,7 @@ static int parse_long_opt( int argc, const char *const
- * otherwise the pointer to the terminating NUL character of \p s
- */
- static char *strchrnul( const char *s, int c );
-+#endif
-
- Option parse_args( int argc, const char *argv[], const Options *options )
- {
-@@ -251,9 +253,11 @@ static int parse_long_opt( int argc, const char *const
- return argn; // which arg in argv that parse_args() should examine when called again
- }
-
-+#ifndef __FreeBSD__
- static char *strchrnul( const char *s, int c )
- {
- for (; *s != c && *s != '\0'; ++s)
- ;
- return (char *)s;
- }
-+#endif