me
/
guix
Archived
1
0
Fork 0

gnu: Boost: Python input is not native.

Even though it is not referenced, and not used when cross-compiling, the
architecture should match.

* gnu/packages/boost.scm (boost)[native-inputs]: Move PYTHON-MINIMAL-WRAPPER ...
[inputs]: ... here.
* gnu/packages/boost.scm (boost-for-mysql)[native-inputs, inputs]: Adjust
accordingly.
master
Marius Bakke 2022-07-05 23:08:18 +02:00
parent 526071290f
commit 38aafcf958
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 11 additions and 9 deletions

View File

@ -84,12 +84,14 @@
(base32
"0fggarccddj6q4ifj3kn7g565rbhn4ia1vd45fxb7y57a6fmhpa7"))))
(build-system gnu-build-system)
(inputs (list icu4c zlib))
(native-inputs
(append (list perl tcsh)
(inputs
(append
(list icu4c zlib)
(if (%current-target-system)
'()
(list python-minimal-wrapper))))
(native-inputs
(list perl tcsh))
(arguments
(list
#:imported-modules `((guix build python-build-system)
@ -126,7 +128,7 @@
(replace 'configure
(lambda _
(let ((icu #$(this-package-input "icu4c"))
(python #+(this-package-native-input "python-minimal-wrapper")))
(python #$(this-package-input "python-minimal-wrapper")))
(substitute* '("libs/config/configure"
"libs/spirit/classic/phoenix/test/runtest.sh"
"tools/build/src/engine/execunix.cpp")
@ -177,7 +179,7 @@
(let* ((static? (member "link=static" make-flags))
(libext (if static? ".a" ".so"))
(python-version (python-version
#+(this-package-native-input
#$(this-package-input
"python-minimal-wrapper")))
(libboost_pythonNN
(string-append "libboost_python"
@ -345,8 +347,8 @@ across a broad spectrum of applications.")
(delete 'provide-libboost_python)))
((#:make-flags make-flags)
#~(cons* "--without-python" #$make-flags))))
(native-inputs
(modify-inputs (package-native-inputs boost)
(inputs
(modify-inputs (package-inputs boost)
(delete "python-minimal-wrapper")))
(properties '((hidden? . #t)))))