pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/fonts/harfbuzz



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sun Aug  7 12:35:35 UTC 2022

Modified Files:
        pkgsrc/fonts/harfbuzz: distinfo
Added Files:
        pkgsrc/fonts/harfbuzz/patches: patch-src_test-repacker.cc

Log Message:
harfbuzz: fix build on arm and ppc (char unsignedness)


To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 pkgsrc/fonts/harfbuzz/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/fonts/harfbuzz/patches/patch-src_test-repacker.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/fonts/harfbuzz/distinfo
diff -u pkgsrc/fonts/harfbuzz/distinfo:1.121 pkgsrc/fonts/harfbuzz/distinfo:1.122
--- pkgsrc/fonts/harfbuzz/distinfo:1.121        Sun Aug  7 08:08:23 2022
+++ pkgsrc/fonts/harfbuzz/distinfo      Sun Aug  7 12:35:34 2022
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.121 2022/08/07 08:08:23 wiz Exp $
+$NetBSD: distinfo,v 1.122 2022/08/07 12:35:34 tnn Exp $
 
 BLAKE2s (harfbuzz-5.1.0.tar.xz) = 2bb7d692f5e22b611db664f3ae0c193ecf272d3d74c718b49e7b385f6ff259a0
 SHA512 (harfbuzz-5.1.0.tar.xz) = 452c4236ef997db2a32c5ac32d3b619c5fa9b5691cde935092b32581387de8d161ab1ba78dd9fa02c36ce553f0f1fdd5564132ec81cd7b863af6d3be96cbf979
 Size (harfbuzz-5.1.0.tar.xz) = 15183424 bytes
+SHA1 (patch-src_test-repacker.cc) = 2a1021ec6a2cb35b23bd6a6576b1e9bb6feb2580

Added files:

Index: pkgsrc/fonts/harfbuzz/patches/patch-src_test-repacker.cc
diff -u /dev/null pkgsrc/fonts/harfbuzz/patches/patch-src_test-repacker.cc:1.1
--- /dev/null   Sun Aug  7 12:35:35 2022
+++ pkgsrc/fonts/harfbuzz/patches/patch-src_test-repacker.cc    Sun Aug  7 12:35:35 2022
@@ -0,0 +1,18 @@
+$NetBSD: patch-src_test-repacker.cc,v 1.1 2022/08/07 12:35:35 tnn Exp $
+
+https://github.com/harfbuzz/harfbuzz/commit/04d28d94e576aab099891e6736fd0088dfac3366
+
+--- src/test-repacker.cc.orig  2022-07-31 13:50:44.000000000 +0000
++++ src/test-repacker.cc
+@@ -112,9 +112,9 @@ static void start_lookup (int8_t type,
+                           hb_serialize_context_t* c)
+ {
+   char lookup[] = {
+-    0, type, // type
++    0, (char)type, // type
+     0, 0, // flag
+-    0, num_subtables, // num subtables
++    0, (char)num_subtables, // num subtables
+   };
+ 
+   start_object (lookup, 6, c);



Home | Main Index | Thread Index | Old Index