diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2022-05-24 01:41:33 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2022-05-24 01:41:33 +0100 |
commit | 639a3f41dc106e10bf52c760e915b0ff12322c2c (patch) | |
tree | 13c978ed5d60be94db6a82c5f401efef94a80601 /recipes/fontconfig.recipe | |
parent | 65ef90f2646bdec7380a6fb9f441c9c83bd4f82b (diff) |
fontconfig: update to 2.14.0
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/871>
Diffstat (limited to 'recipes/fontconfig.recipe')
-rw-r--r-- | recipes/fontconfig.recipe | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/recipes/fontconfig.recipe b/recipes/fontconfig.recipe index 8eba6561..a91cda6f 100644 --- a/recipes/fontconfig.recipe +++ b/recipes/fontconfig.recipe @@ -6,24 +6,15 @@ from cerbero.tools.libtool import get_libtool_versions class Recipe(recipe.Recipe): name = 'fontconfig' - version = '2.13.93' + version = '2.14.0' stype = SourceType.TARBALL - url = 'https://www.freedesktop.org/software/fontconfig/release/fontconfig-%(version)s.tar.gz' - tarball_checksum = '0f302a18ee52dde0793fe38b266bf269dfe6e0c0ae140e30d72c6cca5dc08db5' + url = 'https://www.freedesktop.org/software/fontconfig/release/fontconfig-%(version)s.tar.xz' + tarball_checksum = 'dcbeb84c9c74bbfdb133d535fe1c7bedc9f2221a8daf3914b984c44c520e9bac' licenses = [{License.MIT: ['COPYING']}] btype = BuildType.MESON meson_options = {'doc': 'disabled', 'tests': 'disabled', 'tools': 'disabled'} deps = ['expat', 'freetype', 'zlib', 'bzip2'] patches = [ - # From git master post-2.13.93 - 'fontconfig/0001-meson-error-out-in-script-if-gperf-preprocessing-fai.patch', - # https://gitlab.freedesktop.org/fontconfig/fontconfig/-/merge_requests/138/ - 'fontconfig/0001-handle-absolute-sysconfdir-when-installing-symlinks.patch', - # https://gitlab.freedesktop.org/fontconfig/fontconfig/-/merge_requests/165 - 'fontconfig/0001-meson-fix-cross-compilation-issues-with-gperf-header.patch', - # From git master post-2.13.93 - 'fontconfig/0001-Windows-Fix-symlink-privilege-error-detection.patch', - 'fontconfig/0001-Overwrite-symlinks-for-config-files.patch', # Proper fix is pending, upstream issue is: # https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/247 'fontconfig/0001-fcobjs-Remove-duplicate-function-prototypes.patch', |