Accepting request 993935 from GNOME:Factory
harfbuzz 5.1.0 (forwarded request 992464 from AndreasStieger) OBS-URL: https://build.opensuse.org/request/show/993935 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/harfbuzz?expand=0&rev=92
This commit is contained in:
commit
ca0782c184
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c5bc33ac099b2e52f01d27cde21cee4281b9d5bfec7684135e268512478bc9ee
|
||||
size 15113152
|
@ -0,0 +1,28 @@
|
||||
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
|
||||
|
3
harfbuzz-5.1.0.tar.xz
Normal file
3
harfbuzz-5.1.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2edb95db668781aaa8d60959d21be2ff80085f31b12053cdd660d9a50ce84f05
|
||||
size 15183424
|
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 3 07:45:27 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- harfbuzz 5.1.0:
|
||||
+ More extensive buffer tracing messages
|
||||
+ Fix hb-ft regression in bitmap fonts rendering
|
||||
+ Support extension promotion of lookups in hb-subset-repacker
|
||||
+ A new HB_GLYPH_FLAG_SAFE_TO_INSERT_TATWEEL for scripts that use
|
||||
elongation (e.g. Arabic) to signify where it is safe to insert
|
||||
tatweel glyph without interrupting shaping
|
||||
+ Add --safe-to-insert-tatweel to hb-shape tool
|
||||
- add harfbuzz-5.1.0-repacker-fix-signedness-of-char-in-tests.patch
|
||||
from upstream to fix ARM and PPC builds
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 24 16:34:16 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- harfbuzz 5.0.1, including changes from 5.0.0:
|
||||
+ Improve for fonts with more than 65535 glyphs
|
||||
+ Support version 2 of “avar” table
|
||||
+ Improve support for some Arabic, Hebrew fonts
|
||||
+ Support for specific script tags to be retained in the
|
||||
subsetter, and add “--layout-scripts” option to “hb-subset”
|
||||
tool
|
||||
+ Improved handling of command line options
|
||||
+ Improve support for multiple tables and font features,
|
||||
and font feature specific bug fixes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 3 09:33:36 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
|
@ -17,13 +17,14 @@
|
||||
|
||||
|
||||
Name: harfbuzz
|
||||
Version: 4.4.1
|
||||
Version: 5.1.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
|
||||
|
Loading…
Reference in New Issue
Block a user