Skip to content

Commit

Permalink
(#23515) wayland: security, bump deps
Browse files Browse the repository at this point in the history
* wayland: security, bump deps

* use version range for expat
  • Loading branch information
mayeut authored Apr 17, 2024
1 parent b822a71 commit 3264e15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipes/wayland/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ def requirements(self):
if self.options.enable_libraries:
self.requires("libffi/3.4.4")
if self.options.enable_dtd_validation:
self.requires("libxml2/2.12.3")
self.requires("expat/2.6.0")
self.requires("libxml2/2.12.5")
self.requires("expat/[>=2.6.2 <3]")

def validate(self):
if self.settings.os != "Linux":
raise ConanInvalidConfiguration(f"{self.ref} only supports Linux")

def build_requirements(self):
self.tool_requires("meson/1.3.1")
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.1.0")
if not can_run(self):
Expand Down

0 comments on commit 3264e15

Please sign in to comment.