mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
meson: upgrade to 1.6.0
Detailed release notes at https://mesonbuild.com/Release-notes-for-1-6-0.html. (From OE-Core rev: 24da8fb65a7b62bd2b0c7a60099d30c725df45ab) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d68d0ba16b
commit
491a90d6e8
@@ -1,4 +1,4 @@
|
|||||||
From 13e05ca933a572c1caf93372df808a30976f99cd Mon Sep 17 00:00:00 2001
|
From 32c4ccfbdc8649f595a79e7fd1bd39d6f8325340 Mon Sep 17 00:00:00 2001
|
||||||
From: Ross Burton <ross.burton@intel.com>
|
From: Ross Burton <ross.burton@intel.com>
|
||||||
Date: Tue, 3 Jul 2018 13:59:09 +0100
|
Date: Tue, 3 Jul 2018 13:59:09 +0100
|
||||||
Subject: [PATCH] Make CPU family warnings fatal
|
Subject: [PATCH] Make CPU family warnings fatal
|
||||||
@@ -26,10 +26,10 @@ index 86bad9b..9703315 100644
|
|||||||
endian = literal['endian']
|
endian = literal['endian']
|
||||||
if endian not in ('little', 'big'):
|
if endian not in ('little', 'big'):
|
||||||
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
|
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
|
||||||
index 484ef45..cf4a3ba 100644
|
index 71a2f3a..4cbeabe 100644
|
||||||
--- a/mesonbuild/environment.py
|
--- a/mesonbuild/environment.py
|
||||||
+++ b/mesonbuild/environment.py
|
+++ b/mesonbuild/environment.py
|
||||||
@@ -389,10 +389,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
|
@@ -416,10 +416,8 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
|
||||||
if compilers and not any_compiler_has_define(compilers, '__mips64'):
|
if compilers and not any_compiler_has_define(compilers, '__mips64'):
|
||||||
trial = 'mips'
|
trial = 'mips'
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -1,4 +1,4 @@
|
|||||||
From 66e350bbbd65e56a0d19c75710f61503e15e24a2 Mon Sep 17 00:00:00 2001
|
From 4ff04d388baf9d31efa73a92c0124a8d45b65377 Mon Sep 17 00:00:00 2001
|
||||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||||
Date: Mon, 19 Nov 2018 14:24:26 +0100
|
Date: Mon, 19 Nov 2018 14:24:26 +0100
|
||||||
Subject: [PATCH] python module: do not manipulate the environment when calling
|
Subject: [PATCH] python module: do not manipulate the environment when calling
|
||||||
@@ -11,10 +11,10 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|||||||
1 file changed, 1 insertion(+), 5 deletions(-)
|
1 file changed, 1 insertion(+), 5 deletions(-)
|
||||||
|
|
||||||
diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py
|
diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py
|
||||||
index 883a29a..52bfbf3 100644
|
index fff4aaa..1fde2f6 100644
|
||||||
--- a/mesonbuild/dependencies/python.py
|
--- a/mesonbuild/dependencies/python.py
|
||||||
+++ b/mesonbuild/dependencies/python.py
|
+++ b/mesonbuild/dependencies/python.py
|
||||||
@@ -399,9 +399,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
|
@@ -400,9 +400,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
|
||||||
empty.name = 'python'
|
empty.name = 'python'
|
||||||
return empty
|
return empty
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ index 883a29a..52bfbf3 100644
|
|||||||
try:
|
try:
|
||||||
return PythonPkgConfigDependency(name, env, kwargs, installation, True)
|
return PythonPkgConfigDependency(name, env, kwargs, installation, True)
|
||||||
finally:
|
finally:
|
||||||
@@ -410,8 +407,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
|
@@ -411,8 +408,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
|
||||||
os.environ[name] = value
|
os.environ[name] = value
|
||||||
elif name in os.environ:
|
elif name in os.environ:
|
||||||
del os.environ[name]
|
del os.environ[name]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
From 61430cf9a80e24eb33d72c6eae4e8d536d308e08 Mon Sep 17 00:00:00 2001
|
From bcdd72ed1956e0a1b1b725e552fa391c549c2099 Mon Sep 17 00:00:00 2001
|
||||||
From: Peter Kjellerstedt <pkj@axis.com>
|
From: Peter Kjellerstedt <pkj@axis.com>
|
||||||
Date: Thu, 26 Jul 2018 16:32:49 +0200
|
Date: Thu, 26 Jul 2018 16:32:49 +0200
|
||||||
Subject: [PATCH] Support building allarch recipes again
|
Subject: [PATCH] Support building allarch recipes again
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@ SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/meson-${PV}.tar.gz \
|
|||||||
file://0001-Make-CPU-family-warnings-fatal.patch \
|
file://0001-Make-CPU-family-warnings-fatal.patch \
|
||||||
file://0002-Support-building-allarch-recipes-again.patch \
|
file://0002-Support-building-allarch-recipes-again.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[sha256sum] = "f955e09ab0d71ef180ae85df65991d58ed8430323de7d77a37e11c9ea630910b"
|
SRC_URI[sha256sum] = "999b65f21c03541cf11365489c1fad22e2418bb0c3d50ca61139f2eec09d5496"
|
||||||
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)$"
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)$"
|
||||||
|
|
||||||
inherit python_setuptools_build_meta github-releases
|
inherit python_setuptools_build_meta github-releases
|
||||||
Reference in New Issue
Block a user