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
This commit is contained in:
Bjørn Lie 2022-09-20 19:32:15 +00:00 committed by Git OBS Bridge
parent 4864c92d70
commit 46472a134d
5 changed files with 28 additions and 33 deletions

View File

@ -1,28 +0,0 @@
From 04d28d94e576aab099891e6736fd0088dfac3366 Mon Sep 17 00:00:00 2001
From: psykose <alice@ayaya.dev>
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

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2edb95db668781aaa8d60959d21be2ff80085f31b12053cdd660d9a50ce84f05
size 15183424

3
harfbuzz-5.2.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:735a94917b47936575acb4d4fa7e7986522f8a89527e4635721474dee2bc942c
size 17711968

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Tue Sep 20 17:21:33 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
- 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 <andreas.stieger@gmx.de>

View File

@ -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