From: Alexandru Ardelean Date: Wed, 22 Apr 2026 09:16:49 +0000 (+0300) Subject: fontconfig: update to 2.16.0 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3341af12c335804ab35fb6ef25162c80677cdb5d;p=openwrt-packages.git 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 --- diff --git a/utils/fontconfig/Makefile b/utils/fontconfig/Makefile index 9743b963f..69409d991 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 000000000..8dabbbba7 --- /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