]> code.ossystems Code Review - openembedded-core.git/commitdiff
meson: update to 0.50.1
authorAlexander Kanavin <alex.kanavin@gmail.com>
Wed, 8 May 2019 13:54:57 +0000 (15:54 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 9 May 2019 15:31:06 +0000 (16:31 +0100)
None of the backported patches actually made it into this release.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/meson/meson.inc
meta/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch
meta/recipes-devtools/meson/meson/0001-mesonbuild-environment.py-do-not-determine-whether-a.patch
meta/recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch
meta/recipes-devtools/meson/meson_0.50.1.bb [moved from meta/recipes-devtools/meson/meson_0.50.0.bb with 100% similarity]
meta/recipes-devtools/meson/nativesdk-meson_0.50.1.bb [moved from meta/recipes-devtools/meson/nativesdk-meson_0.50.0.bb with 100% similarity]

index 21d34da6adf52a9a8348a34c0e302b23b3ce4d3e..6a723683cc045ff7fe7cdfba4e202541dc8fd73d 100644 (file)
@@ -18,8 +18,8 @@ SRC_URI = "https://github.com/mesonbuild/meson/releases/download/${PV}/meson-${P
            file://0001-mesonbuild-environment.py-check-environment-for-vari.patch \
            file://0001-modules-python.py-do-not-substitute-python-s-install.patch \
            "
-SRC_URI[sha256sum] = "2a1bc42dda58206fb922cda5e1ca95cc03ad126321d26acc47d3493ec4e7021f"
-SRC_URI[md5sum] = "433483107fda4616eaf33de7e7083a84"
+SRC_URI[sha256sum] = "f68f56d60c80a77df8fc08fa1016bc5831605d4717b622c96212573271e14ecc"
+SRC_URI[md5sum] = "24a6527796115828d2ebc75880e18d62"
 
 SRC_URI_append_class-native = " \
     file://0001-Make-CPU-family-warnings-fatal.patch \
index 9e90b72f3132ad6c5ca6f27bce13886d302cca02..adde1e271f17fdb5874fdf3e864891c72870c823 100644 (file)
@@ -1,4 +1,4 @@
-From 1ec44c955f45f3787aaf92edd70dec5bcf03f665 Mon Sep 17 00:00:00 2001
+From 4b4b3d4932d928f05dbd74d730a3c8a5ac371e1d Mon Sep 17 00:00:00 2001
 From: Ross Burton <ross.burton@intel.com>
 Date: Tue, 3 Jul 2018 13:59:09 +0100
 Subject: [PATCH] Make CPU family warnings fatal
index e64e13b83602b8404b6f7dc36811c75db68b93ee..8334714541709e7217cd656420435504d9053348 100644 (file)
@@ -1,4 +1,4 @@
-From c040f0dbace3259c80f3710bc019433b9c817940 Mon Sep 17 00:00:00 2001
+From d9da5e7a16a9397e22a8900fac4b60b40d7f00de Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex.kanavin@gmail.com>
 Date: Mon, 25 Mar 2019 18:18:33 +0100
 Subject: [PATCH] mesonbuild/environment.py: do not determine whether a build
@@ -8,23 +8,21 @@ This can, and does, go wrong when our host architecture is same as the target on
 
 Upstream-Status: Pending
 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
+
 ---
  mesonbuild/environment.py | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
-index 4c1c5ac..6e5d689 100644
+index d4f0630..c584fa4 100644
 --- a/mesonbuild/environment.py
 +++ b/mesonbuild/environment.py
-@@ -478,7 +478,7 @@ class Environment:
+@@ -483,7 +483,7 @@ class Environment:
          self.first_invocation = True
  
      def is_cross_build(self):
--        return not self.machines.matches_build_machine(MachineChoice.HOST)
+-        return self.coredata.cross_file is not None
 +        return self.need_exe_wrapper()
  
      def dump_coredata(self):
          return coredata.save(self.coredata, self.get_build_dir())
--- 
-2.17.1
-
index 323e21d8f6e72ed0b2530e6f078da8c9ca2e41b1..e47e555324faa99eeb1fdc186ae2491ee5eed9ca 100644 (file)
@@ -1,4 +1,4 @@
-From a4bce582c1f13f48b329526aa81710405c4c691e Mon Sep 17 00:00:00 2001
+From 2164655328ec4e47335fc9033813274365491ad8 Mon Sep 17 00:00:00 2001
 From: Peter Kjellerstedt <pkj@axis.com>
 Date: Thu, 26 Jul 2018 16:32:49 +0200
 Subject: [PATCH] Support building allarch recipes again