aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanilo Egea Gondolfo <danilo@FreeBSD.org>2021-02-08 21:23:30 +0000
committerDanilo Egea Gondolfo <danilo@FreeBSD.org>2021-02-08 21:23:30 +0000
commit500cdfa73cfb6b75eaa754bdbc5a5ae21cabb6e8 (patch)
treedb09360fa40212533b8a1f3a144013726ecac19a
parentce1128621027ae48a39059aa89ceb7881a5b1d97 (diff)
downloadports-500cdfa73cfb6b75eaa754bdbc5a5ae21cabb6e8.tar.gz
ports-500cdfa73cfb6b75eaa754bdbc5a5ae21cabb6e8.zip
textproc/dwdiff: Update to 2.1.4
Notes
Notes: svn path=/head/; revision=564741
-rw-r--r--textproc/dwdiff/Makefile3
-rw-r--r--textproc/dwdiff/distinfo6
-rw-r--r--textproc/dwdiff/files/patch-icu6826
3 files changed, 4 insertions, 31 deletions
diff --git a/textproc/dwdiff/Makefile b/textproc/dwdiff/Makefile
index f343c38d35fb..c8da93713dc5 100644
--- a/textproc/dwdiff/Makefile
+++ b/textproc/dwdiff/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= dwdiff
-PORTVERSION= 2.1.3
-PORTREVISION= 1
+PORTVERSION= 2.1.4
CATEGORIES= textproc
MASTER_SITES= https://os.ghalkes.nl/dist/ \
http://fossies.org/unix/privat/
diff --git a/textproc/dwdiff/distinfo b/textproc/dwdiff/distinfo
index a3fd4f1bf1e8..e1daed917903 100644
--- a/textproc/dwdiff/distinfo
+++ b/textproc/dwdiff/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1596820291
-SHA256 (dwdiff-2.1.3.tar.bz2) = 211ddbfaa2e6fcc85d5c88b5141c62a22a13ed0fecffc22fe6dded07e4cf2382
-SIZE (dwdiff-2.1.3.tar.bz2) = 79862
+TIMESTAMP = 1612813204
+SHA256 (dwdiff-2.1.4.tar.bz2) = df16fec44dcb467d65a4246a43628f93741996c1773e930b90c6dde22dd58e0a
+SIZE (dwdiff-2.1.4.tar.bz2) = 79857
diff --git a/textproc/dwdiff/files/patch-icu68 b/textproc/dwdiff/files/patch-icu68
deleted file mode 100644
index de647944c304..000000000000
--- a/textproc/dwdiff/files/patch-icu68
+++ /dev/null
@@ -1,26 +0,0 @@
-Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
-
-In file included from src/unicode.c:21:
-src/definitions.h:48:15: error: expected identifier
-typedef enum {false, true} bool;
- ^
-/usr/include/stdbool.h:36:15: note: expanded from macro 'false'
-#define false 0
- ^
-
---- src/definitions.h.orig 2020-07-18 06:57:36 UTC
-+++ src/definitions.h
-@@ -43,13 +43,7 @@
-
- /*==== Misc definitions ====*/
- /* Define a bool type if not already defined (C++ and C99 do)*/
--#if !(defined(__cplusplus) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 19990601L))
--/*@-incondefs@*/
--typedef enum {false, true} bool;
--/*@+incondefs@*/
--#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 19990601L
- #include <stdbool.h>
--#endif
-
- /*==== Configuration definitions ====*/
- #ifndef NO_STRDUP