summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2025-09-18 15:15:45 +0800
committerKhem Raj <raj.khem@gmail.com>2025-09-18 12:15:16 -0700
commit914561cfc24f831b28845d02015086f3d9ed1438 (patch)
tree965e53dbe01c1541f63a398f0ef301134c163403
parent948d1888325a9fb86be7b7c0fba519659ffc2594 (diff)
downloadmeta-openembedded-914561cfc24f831b28845d02015086f3d9ed1438.tar.gz
python3-pyzmq: set cmake build dir to support reproducible
According to [1], set cmake build dir, otherwise a unique temporary directory is used which caused generated library not be reproducible ... "build-dir": { "type": "string", "default": "", "description": "The CMake build directory. Defaults to a unique temporary directory." }, ... Note: To support reproducible, it also requires oe-core commit [2] to be merged [1] https://github.com/scikit-build/scikit-build-core/blob/main/src/scikit_build_core/resources/scikit-build.schema.json#L487C6-L487C16 [2] https://lists.openembedded.org/g/openembedded-core/message/223604?p=%2C%2C%2C20%2C0%2C0%2C0%3A%3ACreated%2C%2C%2C20%2C2%2C0%2C115291386%2Cd%253D3&d=3 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb b/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
index 6607b7c34d..121ca322a0 100644
--- a/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
@@ -23,6 +23,7 @@ PEP517_BUILD_OPTS = "--skip-dependency-check \
23 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \ 23 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
24 -Ccmake.define.CMAKE_FIND_ROOT_PATH="${STAGING_DIR_NATIVE}" \ 24 -Ccmake.define.CMAKE_FIND_ROOT_PATH="${STAGING_DIR_NATIVE}" \
25 -Ccmake.build-type="RelWithDebInfo" \ 25 -Ccmake.build-type="RelWithDebInfo" \
26 -Cbuild-dir="${B}" \
26" 27"
27 28
28SRC_URI:append = " \ 29SRC_URI:append = " \