meson: 0.56.0 → 0.57.1
- https://mesonbuild.com/Release-notes-for-0-57-0.html - https://github.com/mesonbuild/meson/releases/tag/0.57.0 - https://github.com/mesonbuild/meson/releases/tag/0.57.1
This commit is contained in:
parent
7d4b0acfb5
commit
3242c2f8ae
@ -1,14 +1,14 @@
|
|||||||
--- a/mesonbuild/coredata.py
|
--- a/mesonbuild/coredata.py
|
||||||
+++ b/mesonbuild/coredata.py
|
+++ b/mesonbuild/coredata.py
|
||||||
@@ -491,7 +491,6 @@ class CoreData:
|
@@ -506,7 +506,6 @@ class CoreData:
|
||||||
return value
|
return value
|
||||||
if option.endswith('dir') and value.is_absolute() and \
|
if option.name.endswith('dir') and value.is_absolute() and \
|
||||||
option not in builtin_dir_noprefix_options:
|
option not in BULITIN_DIR_NOPREFIX_OPTIONS:
|
||||||
- # Value must be a subdir of the prefix
|
- # Value must be a subdir of the prefix
|
||||||
# commonpath will always return a path in the native format, so we
|
# commonpath will always return a path in the native format, so we
|
||||||
# must use pathlib.PurePath to do the same conversion before
|
# must use pathlib.PurePath to do the same conversion before
|
||||||
# comparing.
|
# comparing.
|
||||||
@@ -503,7 +502,7 @@ class CoreData:
|
@@ -518,7 +517,7 @@ class CoreData:
|
||||||
try:
|
try:
|
||||||
value = value.relative_to(prefix)
|
value = value.relative_to(prefix)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
@ -9,11 +9,11 @@
|
|||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "meson";
|
pname = "meson";
|
||||||
version = "0.56.0";
|
version = "0.57.1";
|
||||||
|
|
||||||
src = python3.pkgs.fetchPypi {
|
src = python3.pkgs.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "04vj250bwrzq7c0z1r96b0z0vgirvn0m367wm3ygqmfdy67x6799";
|
sha256 = "19n8alcpzv6npgp27iqljkmvdmr7s2c7zm8y997j1nlvpa1cgqbj";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py
|
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
|
||||||
index 219b62ec8..e3ceaddbd 100644
|
index 756dd8193..a5cc6ef8b 100644
|
||||||
--- a/mesonbuild/envconfig.py
|
--- a/mesonbuild/environment.py
|
||||||
+++ b/mesonbuild/envconfig.py
|
+++ b/mesonbuild/environment.py
|
||||||
@@ -94,7 +94,7 @@ def get_env_var_pair(for_machine: MachineChoice,
|
@@ -151,7 +151,7 @@ def _get_env_var(for_machine: MachineChoice, is_cross: bool, var_name: str) -> T
|
||||||
# compiling we fall back on the unprefixed host version. This
|
# compiling we fall back on the unprefixed host version. This
|
||||||
# allows native builds to never need to worry about the 'BUILD_*'
|
# allows native builds to never need to worry about the 'BUILD_*'
|
||||||
# ones.
|
# ones.
|
||||||
|
Loading…
Reference in New Issue
Block a user