Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fontconfig: bump deps #23416

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions recipes/fontconfig/meson/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ def layout(self):

def requirements(self):
self.requires("freetype/2.13.2")
self.requires("expat/2.6.0")
self.requires("expat/2.6.2")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It will conflict with the recent Cairo version bumps (#22696), but v2.6.2 fixes a CVE and should be preferred: https://github.com/libexpat/libexpat/blob/R_2_6_2/expat/Changes#L34-L38

if self.settings.os == "Linux":
self.requires("util-linux-libuuid/2.39.2")

def build_requirements(self):
self.tool_requires("gperf/3.1")
self.tool_requires("meson/1.2.3")
self.tool_requires("meson/1.4.0")
if not self.conf.get("tools.gnu:pkg_config", default=False, check_type=str):
self.tool_requires("pkgconf/2.0.3")
self.tool_requires("pkgconf/2.1.0")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down
Loading