diff mbox series

python3-numpy: disable ccache

Message ID 20240822182652.1817179-1-martin.jansa@gmail.com
State New
Headers show
Series python3-numpy: disable ccache | expand

Commit Message

Martin Jansa Aug. 22, 2024, 6:26 p.m. UTC
* fails to parse CXX correctly since the setuptools upgrade from 72.1.0 to 72.2.0
* it can be resolved by upgrading numpy as in:
  https://lists.openembedded.org/g/openembedded-core/message/203231
  which switches from setuptools3 to python_mesonpy, but before that
  is merged, we can just disable ccache here
* more details in:
  https://lists.openembedded.org/g/openembedded-core/message/203658

Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
---
 meta/recipes-devtools/python/python3-numpy_1.26.4.bb | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3-numpy_1.26.4.bb b/meta/recipes-devtools/python/python3-numpy_1.26.4.bb
index 914245507c..7cd9d30d2d 100644
--- a/meta/recipes-devtools/python/python3-numpy_1.26.4.bb
+++ b/meta/recipes-devtools/python/python3-numpy_1.26.4.bb
@@ -24,6 +24,9 @@  inherit ptest setuptools3 github-releases
 
 S = "${WORKDIR}/numpy-${PV}"
 
+# fails to parse CXX correctly since the setuptools upgrade from 72.1.0 to 72.2.0
+# https://lists.openembedded.org/g/openembedded-core/message/203658
+CCACHE_DISABLE = "1"
 CLEANBROKEN = "1"
 
 do_compile:prepend() {