From f8ca23f9f6e4a55e4195e553ca2f3e7dd425f51c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 12 Aug 2022 20:22:37 +0100 Subject: gentoo auto-resync : 12:08:2022 - 20:22:37 --- .../files/libutf8proc-grapheme-test.patch | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 dev-libs/libutf8proc/files/libutf8proc-grapheme-test.patch (limited to 'dev-libs/libutf8proc/files') diff --git a/dev-libs/libutf8proc/files/libutf8proc-grapheme-test.patch b/dev-libs/libutf8proc/files/libutf8proc-grapheme-test.patch deleted file mode 100644 index 64ebc26f671e..000000000000 --- a/dev-libs/libutf8proc/files/libutf8proc-grapheme-test.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://github.com/JuliaStrings/utf8proc/commit/11bb3d9dc796bb006c79c2962a7d19abcadfb3df - -Author: Steven G. Johnson - ---- a/test/graphemetest.c -+++ b/test/graphemetest.c -@@ -18,12 +18,12 @@ int main(int argc, char **argv) - - while (buf[bi]) { - bi = skipspaces(buf, bi); -- if (buf[bi] == '/') { /* grapheme break */ -+ if ((uint8_t)buf[bi] == 0xc3 && (uint8_t)buf[bi+1] == 0xb7) { /* U+00f7 = grapheme break */ - src[si++] = '/'; -- bi++; -+ bi += 2; - } -- else if (buf[bi] == '+') { /* no break */ -- bi++; -+ else if ((uint8_t)buf[bi] == 0xc3 && (uint8_t)buf[bi+1] == 0x97) { /* U+00d7 = no break */ -+ bi += 2; - } - else if (buf[bi] == '#') { /* start of comments */ - break; -- cgit v1.2.3