All of lore.kernel.org
 help / color / mirror / Atom feed
From: wangmy@fujitsu.com
To: openembedded-core@lists.openembedded.org
Cc: Wang Mingyu <wangmy@fujitsu.com>
Subject: [OE-core] [PATCH 05/22] meson: upgrade 1.6.0 -> 1.6.1
Date: Mon, 23 Dec 2024 17:10:48 +0800	[thread overview]
Message-ID: <1734945065-4373-5-git-send-email-wangmy@fujitsu.com> (raw)
In-Reply-To: <1734945065-4373-1-git-send-email-wangmy@fujitsu.com>

From: Wang Mingyu <wangmy@fujitsu.com>

0001-python-module-do-not-manipulate-the-environment-when.patch
refreshed for 1.6.1

Changelog:
===========
- dependencies: support old vulkan SDK version
- Handle top level options set in subprojects. Closes #13847.
- ci: fix Ubuntu Bionic job
- modernize Rust template
- run_single_test.py: skip setup_symlinks() call on Windows
- tests: HDF5 no longer skips on MacOS
- mdevenv: exec directly into the program to run
- CMakeToolchain: Log output on compiler state failure
- msetup: Correction of the message text
- run_single_test.py: Fix for symlink changes
- libgcrypt-config is no more on ubuntu-rolling
- fix generate_gir with BothLibraries dependency
- env2mfile: add flag to use _FOR_BUILD envvars.
- environment: Never require an exe_wrapper for native builds
- rust: fix computation of library directory
- De-duplicate BuildTarget.sources
- Fix building on AIX when no project languages are used
- coverage.py: Guard use of --html-nested behind version check.
- Xcode backend: only use found appleframeworksn
- Enable GCC to find free-threaded python DLL library
- modules/rust: Add support for autolib field in the Cargo.toml
- env2mfile: Use a cross valac on Debian if possible
- env2mfile: Automatically set exe_wrapper on Debian if possible
- env2mfile: Use Debian cross-prefixed GObject-Introspection tools
- env2mfile: Generalize detection of pkg-config to have a list of tools
- Add GNU/Hurd kernel results

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...on-module-do-not-manipulate-the-environment-when.patch | 8 ++++----
 .../meson/{meson_1.6.0.bb => meson_1.6.1.bb}              | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta/recipes-devtools/meson/{meson_1.6.0.bb => meson_1.6.1.bb} (98%)

diff --git a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
index 23f96f4788..84a9c18c51 100644
--- a/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
+++ b/meta/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch
@@ -1,4 +1,4 @@
-From 4ff04d388baf9d31efa73a92c0124a8d45b65377 Mon Sep 17 00:00:00 2001
+From f264b7fd2c86edfd5db77da264e8bf05f5e2bfeb Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex.kanavin@gmail.com>
 Date: Mon, 19 Nov 2018 14:24:26 +0100
 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(-)
 
 diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py
-index fff4aaa..1fde2f6 100644
+index 326e605..f5eb50f 100644
 --- a/mesonbuild/dependencies/python.py
 +++ b/mesonbuild/dependencies/python.py
-@@ -400,9 +400,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
+@@ -403,9 +403,6 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
                      empty.name = 'python'
                      return empty
  
@@ -24,7 +24,7 @@ index fff4aaa..1fde2f6 100644
                  try:
                      return PythonPkgConfigDependency(name, env, kwargs, installation, True)
                  finally:
-@@ -411,8 +408,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
+@@ -414,8 +411,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice',
                              os.environ[name] = value
                          elif name in os.environ:
                              del os.environ[name]
diff --git a/meta/recipes-devtools/meson/meson_1.6.0.bb b/meta/recipes-devtools/meson/meson_1.6.1.bb
similarity index 98%
rename from meta/recipes-devtools/meson/meson_1.6.0.bb
rename to meta/recipes-devtools/meson/meson_1.6.1.bb
index 078e49e973..249a07c290 100644
--- a/meta/recipes-devtools/meson/meson_1.6.0.bb
+++ b/meta/recipes-devtools/meson/meson_1.6.1.bb
@@ -16,7 +16,7 @@ SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/meson-${PV}.tar.gz \
            file://0002-Support-building-allarch-recipes-again.patch \
            file://0001-dependencies-dev-prepend-sysroot-when-searching-for-.patch \
            "
-SRC_URI[sha256sum] = "999b65f21c03541cf11365489c1fad22e2418bb0c3d50ca61139f2eec09d5496"
+SRC_URI[sha256sum] = "1eca49eb6c26d58bbee67fd3337d8ef557c0804e30a6d16bfdf269db997464de"
 UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)$"
 
 inherit python_setuptools_build_meta github-releases
-- 
2.43.0



  parent reply	other threads:[~2024-12-23  9:11 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-23  9:10 [OE-core] [PATCH 01/22] diffoscope: upgrade 283 -> 284 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 02/22] libportal: upgrade 0.8.1 -> 0.9.0 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 03/22] libwebp: upgrade 1.4.0 -> 1.5.0 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 04/22] llvm: upgrade 19.1.5 -> 19.1.6 wangmy
2024-12-23  9:10 ` wangmy [this message]
2024-12-23  9:10 ` [OE-core] [PATCH 06/22] python3-certifi: upgrade 2024.8.30 -> 2024.12.14 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 07/22] python3-dbusmock: upgrade 0.32.2 -> 0.33.0 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 08/22] python3-hatchling: upgrade 1.26.3 -> 1.27.0 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 09/22] python3-hypothesis: upgrade 6.119.4 -> 6.122.6 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 10/22] python3-jinja2: upgrade 3.1.4 -> 3.1.5 wangmy
2024-12-24  9:12   ` Mathieu Dubois-Briand
2024-12-23  9:10 ` [OE-core] [PATCH 11/22] python3-mako: upgrade 1.3.6 -> 1.3.8 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 12/22] python3-maturin: upgrade 1.7.4 -> 1.7.8 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 13/22] python3-psutil: upgrade 6.1.0 -> 6.1.1 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 14/22] python3-pyopenssl: upgrade 24.2.1 -> 24.3.0 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 15/22] python3-pytest-subtests: upgrade 0.13.1 -> 0.14.1 wangmy
2024-12-23  9:10 ` [OE-core] [PATCH 16/22] python3-pytest: upgrade 8.3.3 -> 8.3.4 wangmy
2024-12-23  9:11 ` [OE-core] [PATCH 17/22] python3-rpds-py: upgrade 0.21.0 -> 0.22.3 wangmy
2024-12-23  9:11 ` [OE-core] [PATCH 18/22] python3-six: upgrade 1.16.0 -> 1.17.0 wangmy
2024-12-23  9:11 ` [OE-core] [PATCH 19/22] repo: upgrade 2.49.3 -> 2.50.1 wangmy
2024-12-23  9:11 ` [OE-core] [PATCH 20/22] wayland-protocols: upgrade 1.38 -> 1.39 wangmy
2024-12-23  9:11 ` [OE-core] [PATCH 21/22] webkitgtk: upgrade 2.46.4 -> 2.46.5 wangmy
2024-12-30 10:44   ` Thomas Perrot
2024-12-23  9:11 ` [OE-core] [PATCH 22/22] xserver-xorg: upgrade 21.1.14 -> 21.1.15 wangmy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1734945065-4373-5-git-send-email-wangmy@fujitsu.com \
    --to=wangmy@fujitsu.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.