From 3341af12c335804ab35fb6ef25162c80677cdb5d Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 22 Apr 2026 12:16:49 +0300 Subject: [PATCH] fontconfig: update to 2.16.0 Bugfix and maintenance release of the font configuration and discovery library. Changelog: https://gitlab.freedesktop.org/fontconfig/fontconfig/-/blob/2.16.0/NEWS Signed-off-by: Alexandru Ardelean --- utils/fontconfig/Makefile | 4 ++-- utils/fontconfig/test.sh | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 utils/fontconfig/test.sh diff --git a/utils/fontconfig/Makefile b/utils/fontconfig/Makefile index 9743b963fb..69409d9914 100644 --- a/utils/fontconfig/Makefile +++ b/utils/fontconfig/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fontconfig -PKG_VERSION:=2.15.0 +PKG_VERSION:=2.16.0 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.freedesktop.org/software/fontconfig/release/ -PKG_HASH:=63a0658d0e06e0fa886106452b58ef04f21f58202ea02a94c39de0d3335d7c0e +PKG_HASH:=6a33dc555cc9ba8b10caf7695878ef134eeb36d0af366041f639b1da9b6ed220 PKG_MAINTAINER:=Alexandru Ardelean PKG_LICENSE:= diff --git a/utils/fontconfig/test.sh b/utils/fontconfig/test.sh new file mode 100644 index 0000000000..8dabbbba7e --- /dev/null +++ b/utils/fontconfig/test.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +case "$1" in + fontconfig) + # Rebuild cache (succeeds even if no fonts are installed) + fc-cache 2>/dev/null + # List fonts; empty output is valid when no fonts are present + fc-list > /dev/null + ;; +esac