From db0715dad92ecfc3cc28e923cd6a1dcda75ced9e Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Sat, 19 Mar 2022 01:27:31 +0300 Subject: [PATCH] =?UTF-8?q?games/opentyrian:=20update=202.1.20220309=20?= =?UTF-8?q?=E2=86=92=202.1.20220318?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- games/opentyrian/Makefile | 2 +- games/opentyrian/distinfo | 6 ++-- games/opentyrian/files/patch-src_arg__parse.c | 30 ------------------- 3 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 games/opentyrian/files/patch-src_arg__parse.c 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