From 46472a134d0620d1b8f52b3b1bc610bdd548b4baa2858bb2cc86c18e52feca9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Lie?= Date: Tue, 20 Sep 2022 19:32:15 +0000 Subject: [PATCH] Accepting request 1005020 from GNOME:Next New stable release OBS-URL: https://build.opensuse.org/request/show/1005020 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/harfbuzz?expand=0&rev=219 --- ...cker-fix-signedness-of-char-in-tests.patch | 28 ------------------- harfbuzz-5.1.0.tar.xz | 3 -- harfbuzz-5.2.0.tar.xz | 3 ++ harfbuzz.changes | 23 +++++++++++++++ harfbuzz.spec | 4 +-- 5 files changed, 28 insertions(+), 33 deletions(-) delete mode 100644 harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch delete mode 100644 harfbuzz-5.1.0.tar.xz create mode 100644 harfbuzz-5.2.0.tar.xz diff --git a/harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch b/harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch deleted file mode 100644 index adb58a3..0000000 --- a/harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 04d28d94e576aab099891e6736fd0088dfac3366 Mon Sep 17 00:00:00 2001 -From: psykose -Date: Mon, 1 Aug 2022 07:45:25 +0000 -Subject: [PATCH] [repacker] fix signedness of char in tests - ---- - src/test-repacker.cc | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/test-repacker.cc b/src/test-repacker.cc -index 053c0c603..1b7e1f08b 100644 ---- a/src/test-repacker.cc -+++ b/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); --- -2.37.1 - diff --git a/harfbuzz-5.1.0.tar.xz b/harfbuzz-5.1.0.tar.xz deleted file mode 100644 index 992683d..0000000 --- a/harfbuzz-5.1.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2edb95db668781aaa8d60959d21be2ff80085f31b12053cdd660d9a50ce84f05 -size 15183424 diff --git a/harfbuzz-5.2.0.tar.xz b/harfbuzz-5.2.0.tar.xz new file mode 100644 index 0000000..b39aee2 --- /dev/null +++ b/harfbuzz-5.2.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735a94917b47936575acb4d4fa7e7986522f8a89527e4635721474dee2bc942c +size 17711968 diff --git a/harfbuzz.changes b/harfbuzz.changes index 47feccf..71f34c0 100644 --- a/harfbuzz.changes +++ b/harfbuzz.changes @@ -1,3 +1,26 @@ +------------------------------------------------------------------- +Tue Sep 20 17:21:33 UTC 2022 - Bjørn Lie + +- Update to version 5.2.0: + + Fix regressions in hb-ft font functions for FT_Faces with + transformation matrix. + + The experimental hb-repacker API now supports splitting several + GPOS subtable types when needed. + + The HarfBuzz extensions to OpenType font format are now opt-in + behind build-time flags. + + The experimental hb-subset variable fonts instantiation API can + now instantiate more font tables and arbitrary axis locations. + + Unicode 15 support. + + Various documentation improvements. + + The hb-view command line tool now detects WezTerm inline images + support. + + Fix FreeType and ICU dependency lookup with meson. + + New API: + - +HB_SCRIPT_KAWI + - +HB_SCRIPT_NAG_MUNDARI +- Drop patch fixed upstream: + + harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch + ------------------------------------------------------------------- Wed Aug 3 07:45:27 UTC 2022 - Andreas Stieger diff --git a/harfbuzz.spec b/harfbuzz.spec index cfd20c1..5f03705 100644 --- a/harfbuzz.spec +++ b/harfbuzz.spec @@ -17,14 +17,14 @@ Name: harfbuzz -Version: 5.1.0 +Version: 5.2.0 Release: 0 Summary: An OpenType text shaping engine License: MIT URL: https://www.freedesktop.org/wiki/Software/HarfBuzz Source0: https://github.com/harfbuzz/harfbuzz/releases/download/%{version}/%{name}-%{version}.tar.xz Source99: baselibs.conf -Patch0: harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch + BuildRequires: c++_compiler BuildRequires: c_compiler BuildRequires: meson