Received: by mail.netbsd.org (Postfix, from userid 605) id 70DF884EE2; Thu, 14 Jul 2022 13:13:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A7EEA84EAB for ; Thu, 14 Jul 2022 13:13:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Wq0hp-cPqy2h for ; Thu, 14 Jul 2022 13:13:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D312384D7A for ; Thu, 14 Jul 2022 13:13:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CCA13FB1A; Thu, 14 Jul 2022 13:13:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657804412238110" MIME-Version: 1.0 Date: Thu, 14 Jul 2022 13:13:32 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/fonts/harfbuzz To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220714131332.CCA13FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657804412238110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Thu Jul 14 13:13:32 UTC 2022 Modified Files: pkgsrc/fonts/harfbuzz: Makefile Makefile.common PLIST distinfo Log Message: harfbuzz: update to 4.4.1. Overview of changes leading to 4.4.1 Wednesday, June 29, 2022 ==================================== - Fix test failure with some compilers. - Fix Telugu and Kannada kerning regression. Overview of changes leading to 4.4.0 Monday, June 27, 2022 ==================================== - Caching of variable fonts shaping, in particular when using HarfBuzz’s own font loading functions (ot). Bringing performance of variable shaping in par with non-variable fonts shaping. (Behdad Esfahbod) - Caching of format 2 “Contextual Substitution” and “Chained Contexts Substitution” lookups. Resulting in up to 20% speedup of lookup-heavy fonts like Gulzar or Noto Nastaliq Urdu. (Behdad Esfahbod) - Improved ANSI output from hb-view. (Behdad Esfahbod) - Support for shaping legacy, pre-OpenType Windows 3.1-era, Arabic fonts that relied on a fixed PUA encoding. (Khaled Hosny, Behdad Esfahbod) - Sinhala script is now shaped by the USE shaper instead of “indic” one. (Behdad Esfahbod, David Corbett) - Thai shaper improvements. (David Corbett) - hb-ot-name API supports approximate BCP-47 language matching, for example asking for “en_US” in a font that has only “en” names will return them. (Behdad Esfahbod) - Optimized TrueType glyph shape loading. (Behdad Esfahbod) - Fix subsetting of HarfBuzz faces created via hb_face_create_for_tables(). (Garret Rieger) - Add 32 bit var store support to the subsetter. (Garret Rieger) - New API +HB_BUFFER_FLAG_DEFINED +HB_BUFFER_SERIALIZE_FLAG_DEFINED +hb_font_changed() +hb_font_get_serial() +hb_ft_hb_font_changed() +hb_set_hash() +hb_map_copy() +hb_map_hash() To generate a diff of this commit: cvs rdiff -u -r1.142 -r1.143 pkgsrc/fonts/harfbuzz/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/fonts/harfbuzz/Makefile.common cvs rdiff -u -r1.62 -r1.63 pkgsrc/fonts/harfbuzz/PLIST cvs rdiff -u -r1.117 -r1.118 pkgsrc/fonts/harfbuzz/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657804412238110 Content-Disposition: inline Content-Length: 4234 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/fonts/harfbuzz/Makefile diff -u pkgsrc/fonts/harfbuzz/Makefile:1.142 pkgsrc/fonts/harfbuzz/Makefile:1.143 --- pkgsrc/fonts/harfbuzz/Makefile:1.142 Tue Jun 7 16:47:33 2022 +++ pkgsrc/fonts/harfbuzz/Makefile Thu Jul 14 13:13:32 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.142 2022/06/07 16:47:33 wiz Exp $ +# $NetBSD: Makefile,v 1.143 2022/07/14 13:13:32 wiz Exp $ .include "Makefile.common" -PKGREVISION= 2 COMMENT= OpenType text shaping engine Index: pkgsrc/fonts/harfbuzz/Makefile.common diff -u pkgsrc/fonts/harfbuzz/Makefile.common:1.21 pkgsrc/fonts/harfbuzz/Makefile.common:1.22 --- pkgsrc/fonts/harfbuzz/Makefile.common:1.21 Tue Jun 7 16:47:33 2022 +++ pkgsrc/fonts/harfbuzz/Makefile.common Thu Jul 14 13:13:32 2022 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.common,v 1.21 2022/06/07 16:47:33 wiz Exp $ +# $NetBSD: Makefile.common,v 1.22 2022/07/14 13:13:32 wiz Exp $ # used by fonts/harfbuzz-icu/Makefile -DISTNAME= harfbuzz-4.3.0 +DISTNAME= harfbuzz-4.4.1 CATEGORIES= fonts MASTER_SITES= ${MASTER_SITE_GITHUB:=harfbuzz/} GITHUB_RELEASE= ${PKGVERSION_NOREV} Index: pkgsrc/fonts/harfbuzz/PLIST diff -u pkgsrc/fonts/harfbuzz/PLIST:1.62 pkgsrc/fonts/harfbuzz/PLIST:1.63 --- pkgsrc/fonts/harfbuzz/PLIST:1.62 Tue Jun 7 16:47:33 2022 +++ pkgsrc/fonts/harfbuzz/PLIST Thu Jul 14 13:13:32 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.62 2022/06/07 16:47:33 wiz Exp $ +@comment $NetBSD: PLIST,v 1.63 2022/07/14 13:13:32 wiz Exp $ bin/hb-ot-shape-closure bin/hb-shape bin/hb-subset @@ -8,6 +8,7 @@ include/harfbuzz/hb-blob.h include/harfbuzz/hb-buffer.h include/harfbuzz/hb-common.h ${PLIST.coretext}include/harfbuzz/hb-coretext.h +include/harfbuzz/hb-cplusplus.hh include/harfbuzz/hb-deprecated.h include/harfbuzz/hb-draw.h include/harfbuzz/hb-face.h @@ -119,12 +120,12 @@ ${PLIST.doc}share/gtk-doc/html/harfbuzz/ ${PLIST.doc}share/gtk-doc/html/harfbuzz/api-index-4-1-0.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/api-index-4-2-0.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/api-index-4-3-0.html +${PLIST.doc}share/gtk-doc/html/harfbuzz/api-index-4-4-0.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/api-index-full.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/apple-advanced-typography-api.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/building.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/clusters.html -${PLIST.doc}share/gtk-doc/html/harfbuzz/complex-scripts.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/core-api.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/customizing-unicode-functions.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/deprecated-api-index.html @@ -192,6 +193,7 @@ ${PLIST.doc}share/gtk-doc/html/harfbuzz/ ${PLIST.doc}share/gtk-doc/html/harfbuzz/reordering-in-levels-0-and-1.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/right-insensitive.png ${PLIST.doc}share/gtk-doc/html/harfbuzz/right.png +${PLIST.doc}share/gtk-doc/html/harfbuzz/script-specific-shaping.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/setting-buffer-properties.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/shaping-and-shape-plans.html ${PLIST.doc}share/gtk-doc/html/harfbuzz/shaping-concepts.html Index: pkgsrc/fonts/harfbuzz/distinfo diff -u pkgsrc/fonts/harfbuzz/distinfo:1.117 pkgsrc/fonts/harfbuzz/distinfo:1.118 --- pkgsrc/fonts/harfbuzz/distinfo:1.117 Sat May 28 09:17:52 2022 +++ pkgsrc/fonts/harfbuzz/distinfo Thu Jul 14 13:13:32 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.117 2022/05/28 09:17:52 wiz Exp $ +$NetBSD: distinfo,v 1.118 2022/07/14 13:13:32 wiz Exp $ -BLAKE2s (harfbuzz-4.3.0.tar.xz) = 3ae3a21ec403a11fd4d695b228692c52d0b8c04e257e05176a4edf9de96135f2 -SHA512 (harfbuzz-4.3.0.tar.xz) = b258bd253b694732c22ebfc980c21d4e2c6f59beb55279bda9988c950038295635613509b9f998a7f06a99642509af6e8ef6a370a3839a918d3ac67faa8af336 -Size (harfbuzz-4.3.0.tar.xz) = 15036020 bytes +BLAKE2s (harfbuzz-4.4.1.tar.xz) = cc27e3c599c4936b2376c29f906db75ff6f195cf8879f4a85c6d637bd849c354 +SHA512 (harfbuzz-4.4.1.tar.xz) = abf82316123299a4065dddebad624483d0eaf7c7cbb977bbaafe9e56627687af7119c484653f1e2be15324315420f80e5a30d4d42a746b244c5cb16f918fe265 +Size (harfbuzz-4.4.1.tar.xz) = 15113152 bytes --_----------=_1657804412238110--