diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2020-11-03 00:56:26 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2020-11-03 00:56:26 +0000 |
commit | 6d5d6429d5880f9fdf4b4b54c0fb53e44b3927f9 (patch) | |
tree | db7a5d68a7b148f62f63c9562391af1272e3f376 /x11-toolkits | |
parent | 91d87ad6cea9c90bdf179910d1ab72b833a67768 (diff) | |
download | ports-6d5d6429d5880f9fdf4b4b54c0fb53e44b3927f9.tar.gz ports-6d5d6429d5880f9fdf4b4b54c0fb53e44b3927f9.zip |
devel/icu: update to 68.1
Changes: http://site.icu-project.org/download/68
ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/
Reported by: GitHub (watch releases)
Notes
Notes:
svn path=/head/; revision=553940
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/gnustep-gui/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/gnustep-gui/files/patch-icu68 | 29 | ||||
-rw-r--r-- | x11-toolkits/tepl/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/vte3/Makefile | 1 |
4 files changed, 32 insertions, 1 deletions
diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index 3d8e3f7f0990..6cda20aae77f 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -4,7 +4,7 @@ PORTNAME= gnustep-gui DISTVERSIONPREFIX= gui- DISTVERSION= 0_27_0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11-toolkits gnustep MAINTAINER= ports@FreeBSD.org diff --git a/x11-toolkits/gnustep-gui/files/patch-icu68 b/x11-toolkits/gnustep-gui/files/patch-icu68 new file mode 100644 index 000000000000..5852e9c8e8a2 --- /dev/null +++ b/x11-toolkits/gnustep-gui/files/patch-icu68 @@ -0,0 +1,29 @@ +Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 + +GSCharacterPanel.m:81:10: error: use of undeclared identifier 'TRUE' + return TRUE; + ^ +GSCharacterPanel.m:106:10: error: use of undeclared identifier 'TRUE' + return TRUE; + ^ + +--- Source/GSCharacterPanel.m.orig 2019-01-06 22:00:38 UTC ++++ Source/GSCharacterPanel.m +@@ -78,7 +78,7 @@ + static UBool enumCharNamesFn(void *context, UChar32 code, UCharNameChoice nameChoice, const char *name, int32_t length) + { + [(NSMutableIndexSet*)context addIndex: (NSUInteger)code]; +- return TRUE; ++ return true; + } + + static NSIndexSet *AssignedCodepoints() +@@ -103,7 +103,7 @@ static UBool searchCharNamesFn(void *context, UChar32 + { + [ctx->set addIndex: (NSUInteger)code]; + } +- return TRUE; ++ return true; + } + + static NSIndexSet *CodepointsWithNameContainingSubstring(NSString *str) diff --git a/x11-toolkits/tepl/Makefile b/x11-toolkits/tepl/Makefile index 315933ca51b6..548ccff771dd 100644 --- a/x11-toolkits/tepl/Makefile +++ b/x11-toolkits/tepl/Makefile @@ -2,6 +2,7 @@ PORTNAME= tepl PORTVERSION= 5.0.0 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome diff --git a/x11-toolkits/vte3/Makefile b/x11-toolkits/vte3/Makefile index f1c60d4078d4..787fc1a130ac 100644 --- a/x11-toolkits/vte3/Makefile +++ b/x11-toolkits/vte3/Makefile @@ -3,6 +3,7 @@ PORTNAME= vte PORTVERSION= 0.62.1 +PORTREVISION= 1 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 3 |