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

xkbcommon/all: bump deps #19983

Merged
merged 12 commits into from
Oct 4, 2023
8 changes: 4 additions & 4 deletions recipes/xkbcommon/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def requirements(self):
if self.options.get_safe("xkbregistry"):
self.requires("libxml2/2.11.4")
if self.options.get_safe("with_wayland"):
self.requires("wayland/1.21.0")
self.requires("wayland/1.22.0")
if not self._has_build_profile:
self.requires("wayland-protocols/1.31")

Expand All @@ -76,12 +76,12 @@ def validate(self):
raise ConanInvalidConfiguration(f"{self.ref} is only compatible with Linux and FreeBSD")

def build_requirements(self):
self.tool_requires("meson/1.1.0")
self.tool_requires("meson/1.2.1")
self.tool_requires("bison/3.8.2")
if not self.conf.get("tools.gnu:pkg_config", default=False, check_type=str):
self.tool_requires("pkgconf/1.9.3")
self.tool_requires("pkgconf/2.0.3")
if self._has_build_profile and self.options.get_safe("with_wayland"):
self.tool_requires("wayland/1.21.0")
self.tool_requires("wayland/1.22.0")
self.tool_requires("wayland-protocols/1.31")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

cannot use <host_version> foy wayland-protocols, because it either either a requires or a tool_requires. Never both.


def source(self):
Expand Down