python3-scikit-build-core: Use PYTHON_INCLUDE_DIR

Add a patch to use PYTHON_INCLUDE_DIR to find Python Interpreter
and Development.Module as suggested by Stephan Kulow:
https://github.com/scikit-build/scikit-build-core/issues/952#issuecomment-2554058930

This work was sponsored by GOVCERT.LU.

Suggested-by: Stephan Kulow <stephan.kulow@siemens.com>
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Leon Anavi 2025-01-29 13:40:33 +02:00 committed by Khem Raj
parent 1941ab64ed
commit 0d3d116edb
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
From 5bc2d175c6a31a3de04444e5e22af310799ab10d Mon Sep 17 00:00:00 2001
From: Leon Anavi <leon.anavi@konsulko.com>
Date: Mon, 27 Jan 2025 19:17:48 +0200
Subject: [PATCH] builder.py: Check PYTHON_INCLUDE_DIR
Use PYTHON_INCLUDE_DIR to find Python Interpreter and
Development.Module.
Upstream-Status: Inappropriate [oe specific]
Suggested-by: Stephan Kulow <stephan.kulow@siemens.com>
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
src/scikit_build_core/builder/builder.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/scikit_build_core/builder/builder.py b/src/scikit_build_core/builder/builder.py
index b19173f..f4fb2af 100644
--- a/src/scikit_build_core/builder/builder.py
+++ b/src/scikit_build_core/builder/builder.py
@@ -203,7 +203,7 @@ class Builder:
python_sabi_library = (
get_python_library(self.config.env, abi3=True) if limited_api else None
)
- python_include_dir = get_python_include_dir()
+ python_include_dir = os.getenv("PYTHON_INCLUDE_DIR") or get_python_include_dir()
numpy_include_dir = get_numpy_include_dir()
# Classic Find Python
--
2.39.5

View File

@ -9,6 +9,7 @@ DEPENDS = "python3-hatch-vcs-native"
inherit pypi python_hatchling
SRC_URI += "file://0001-builder.py-Check-PYTHON_INCLUDE_DIR.patch"
SRC_URI[sha256sum] = "04cbb59fe795202a7eeede1849112ee9dcbf3469feebd9b8b36aa541336ac4f8"
BBCLASSEXTEND = "native nativesdk"