fontconfig: update to 2.15.0
authorkrant <aleksey.vasilenko@gmail.com>
Fri, 12 Apr 2024 04:26:06 +0000 (07:26 +0300)
committerRosen Penev <rosenp@gmail.com>
Sat, 13 Apr 2024 21:05:04 +0000 (14:05 -0700)
- Use up-to-date project URLs
- Remove obsoleted patch

Signed-off-by: krant <aleksey.vasilenko@gmail.com>
utils/fontconfig/Makefile
utils/fontconfig/patches/001-revert-upstream-meson-commit.patch [deleted file]

index 54d8f0e02371c5c4f7310133e4daf7713fae54ca..ca21c419d334f3813b13fb025174b15b72880e34 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=fontconfig
-PKG_VERSION:=2.13.94
-PKG_RELEASE:=3
+PKG_VERSION:=2.15.0
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
-PKG_SOURCE_URL:=https://fontconfig.org/release/
-PKG_HASH:=a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c
+PKG_SOURCE_URL:=https://www.freedesktop.org/software/fontconfig/release/
+PKG_HASH:=63a0658d0e06e0fa886106452b58ef04f21f58202ea02a94c39de0d3335d7c0e
 
 PKG_MAINTAINER:=
 PKG_LICENSE:=
@@ -31,7 +31,7 @@ define Package/fontconfig
   SUBMENU:=Font-Utils
   TITLE:=fontconfig
   DEPENDS:=+libpthread +libexpat +libfreetype
-  URL:=http://fontconfig.org/
+  URL:=https://www.freedesktop.org/wiki/Software/fontconfig/
 endef
 
 MESON_ARGS += \
diff --git a/utils/fontconfig/patches/001-revert-upstream-meson-commit.patch b/utils/fontconfig/patches/001-revert-upstream-meson-commit.patch
deleted file mode 100644 (file)
index bcd7ce8..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-Revert partially the upstream commit ae9ac2a1
-
-  Subject: [PATCH] meson: fix cross-compilation issues with gperf header file preprocessing
-
-  Pass c_args to the compiler when preprocessing the gperf header file,
-  they might contain important bits without which compilation/preprocessing
-  might fail (e.g. with clang on Android). cc.cmd_array() does not include
-  the c_args and we can't easily look them up from the meson.build file, so
-  we have to retrieve from the introspection info.
-
-  This is basically the Meson equivalent to commit 57103773.
-
-Revert the host_cargs related part of the patch
-
-
---- a/src/cutout.py
-+++ b/src/cutout.py
-@@ -24,7 +24,7 @@ if __name__== '__main__':
-                 break
-     cpp = args[1]
--    ret = subprocess.run(cpp + host_cargs + [args[0].input], stdout=subprocess.PIPE, check=True)
-+    ret = subprocess.run(cpp + [args[0].input], stdout=subprocess.PIPE, check=True)
-     stdout = ret.stdout.decode('utf8')