-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
conan-center-bot
merged 12 commits into
conan-io:master
from
ericLemanissier:bump/xkbcommon/all
Oct 4, 2023
Merged
xkbcommon/all: bump deps #19983
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
416183c
xkbcommon/all: bump deps
ericLemanissier 9f89cbd
xkbcommon/all: bump deps
ericLemanissier b04e19b
xkbcommon/all: bump deps
ericLemanissier 81becd5
xkbcommon/all: bump deps
ericLemanissier a93670e
xkbcommon/all: bump deps
ericLemanissier d021f78
xkbcommon/all: bump deps
ericLemanissier 5dd6f2d
xkbcommon/all: bump deps
ericLemanissier f4f0c0c
xkbcommon/all: bump deps
ericLemanissier 1e80623
use <host_version>
ericLemanissier bf240f8
wayland-protocols is never a requirement
ericLemanissier 72167de
wayland-protocols is a tool_requirement
ericLemanissier b1c73f1
fixup
ericLemanissier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
|
||
|
@@ -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.2") | ||
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/<host_version>") | ||
self.tool_requires("wayland-protocols/1.31") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cannot use |
||
|
||
def source(self): | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
required_conan_version has to be updated (
required_conan_version = ">=1.60.0 <2 || >=2.0.5"
).