diff --git a/games/cpat/Makefile b/games/cpat/Makefile index c44e3e0757f..ac81a0fbe7a 100644 --- a/games/cpat/Makefile +++ b/games/cpat/Makefile @@ -1,7 +1,6 @@ COMMENT = curses-based solitaire collection suite -DISTNAME = cpat-1.4.1 +DISTNAME = cpat-1.4.2 CATEGORIES = games -REVISION = 2 HOMEPAGE = https://cpat.sourceforge.net/ diff --git a/games/cpat/distinfo b/games/cpat/distinfo index 96fa889990e..e5b7f2676e1 100644 --- a/games/cpat/distinfo +++ b/games/cpat/distinfo @@ -1,2 +1,2 @@ -SHA256 (cpat-1.4.1.tar.gz) = SLmmfPW4yc4LZd4tdcIIbjcGe/qbQB89ZgRl8f2GMyc= -SIZE (cpat-1.4.1.tar.gz) = 156465 +SHA256 (cpat-1.4.2.tar.gz) = viVbaU21tI4lU+0WoSzRW81aUPzCIkJKjJR/BPEFO2c= +SIZE (cpat-1.4.2.tar.gz) = 158644 diff --git a/games/cpat/patches/patch-src_common_c b/games/cpat/patches/patch-src_common_c deleted file mode 100644 index 19b0d7732ab..00000000000 --- a/games/cpat/patches/patch-src_common_c +++ /dev/null @@ -1,16 +0,0 @@ -Fix -fno-common - -Index: src/common.c ---- src/common.c.orig -+++ src/common.c -@@ -14,6 +14,10 @@ - #include "common.h" - #include "document.h" - -+struct timespec pauselength; -+struct timespec pauseleft; -+HighScores hs; -+ - /* Creates empty board windows. Needs to be called once at the - * beginning of each game */ - int diff --git a/games/cpat/patches/patch-src_cpat_h b/games/cpat/patches/patch-src_cpat_h deleted file mode 100644 index d02856abb33..00000000000 --- a/games/cpat/patches/patch-src_cpat_h +++ /dev/null @@ -1,19 +0,0 @@ -Fix -fno-common - -Index: src/cpat.h ---- src/cpat.h.orig -+++ src/cpat.h -@@ -224,10 +224,10 @@ typedef struct { - bool available; - } HighScores; - --struct timespec pauselength; --struct timespec pauseleft; -+extern struct timespec pauselength; -+extern struct timespec pauseleft; - --HighScores hs; -+extern HighScores hs; - - /* This is the background color of the boards */ - static chtype boardbkgd = ' ' | COLOR_PAIR(BKGD_COLOR);