diff options
author | wiz <wiz@pkgsrc.org> | 2022-09-26 17:33:52 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-09-26 17:33:52 +0000 |
commit | 8138c3bac8c2012b80ffd4af4990afd9db1e1a9d (patch) | |
tree | 5536821a611faabd6cb26eafe978998196d87209 /fonts | |
parent | b4505e74b122bf46bb510b211f26ba8a8be9e993 (diff) | |
download | pkgsrc-8138c3bac8c2012b80ffd4af4990afd9db1e1a9d.tar.gz |
harfbuzz: update to 5.2.0.
Overview of changes leading to 5.2.0
Saturday, September 17, 2022
====================================
- Fix regressions in hb-ft font functions for FT_Face’s with transformation
matrix. (Behdad Esfahbod)
- The experimental hb-repacker API now supports splitting several GPOS subtable
types when needed. (Garret Rieger)
- The HarfBuzz extensions to OpenType font format are now opt-in behind
build-time flags. (Behdad Esfahbod)
- The experimental hb-subset variable fonts instantiation API can now
instantiate more font tables and arbitrary axis locations. (Qunxin Liu)
- Unicode 15 support. (David Corbett)
- Various documentation improvements. (Behdad Esfahbod, Matthias Clasen)
- The hb-view command line tool now detects WezTerm inline images support.
(Wez Furlong)
- Fix FreeType and ICU dependency lookup with meson. (Xavier Claessens)
- New API:
+HB_SCRIPT_KAWI
+HB_SCRIPT_NAG_MUNDARI
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/harfbuzz/Makefile.common | 4 | ||||
-rw-r--r-- | fonts/harfbuzz/distinfo | 9 | ||||
-rw-r--r-- | fonts/harfbuzz/patches/patch-src_test-repacker.cc | 18 |
3 files changed, 6 insertions, 25 deletions
diff --git a/fonts/harfbuzz/Makefile.common b/fonts/harfbuzz/Makefile.common index 8509f4f792d..67bcc3d4818 100644 --- a/fonts/harfbuzz/Makefile.common +++ b/fonts/harfbuzz/Makefile.common @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.common,v 1.26 2022/08/07 14:53:38 tnn Exp $ +# $NetBSD: Makefile.common,v 1.27 2022/09/26 17:33:52 wiz Exp $ # used by fonts/harfbuzz-icu/Makefile -DISTNAME= harfbuzz-5.1.0 +DISTNAME= harfbuzz-5.2.0 CATEGORIES= fonts MASTER_SITES= ${MASTER_SITE_GITHUB:=harfbuzz/} GITHUB_RELEASE= ${PKGVERSION_NOREV} diff --git a/fonts/harfbuzz/distinfo b/fonts/harfbuzz/distinfo index 4fba71d7f32..4bb8e8b589e 100644 --- a/fonts/harfbuzz/distinfo +++ b/fonts/harfbuzz/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.122 2022/08/07 12:35:34 tnn Exp $ +$NetBSD: distinfo,v 1.123 2022/09/26 17:33:52 wiz 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 +BLAKE2s (harfbuzz-5.2.0.tar.xz) = 50b8c234941281cdde9f0262d9c5dc91662b25f9498914ee66b186db384f0661 +SHA512 (harfbuzz-5.2.0.tar.xz) = 3c95ae9916dfc283714b936988726c0b391f634e22a62d148c201104178ee229c48e49cc82961d728a5c8bc8af06978eb172b35acb552c969bc2385892380d30 +Size (harfbuzz-5.2.0.tar.xz) = 17711968 bytes diff --git a/fonts/harfbuzz/patches/patch-src_test-repacker.cc b/fonts/harfbuzz/patches/patch-src_test-repacker.cc deleted file mode 100644 index 25e603c18a5..00000000000 --- a/fonts/harfbuzz/patches/patch-src_test-repacker.cc +++ /dev/null @@ -1,18 +0,0 @@ -$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); |