1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-25 18:41:54 +02:00

gnu: openpmix: Enable Python bindings.

* gnu/packages/parallel.scm (openpmix)
[arguments] <configure-flags>: Add '--enable-python-bindings'.
<phases>: Add set-LDFLAGS phase.
[native-inputs]: Add python-cython.

Change-Id: I6910ed9c3c7b47b3a76085b95b1f251286a48077
This commit is contained in:
Maxim Cournoyer
2024-11-27 11:39:39 +09:00
parent dc3b526bad
commit d818d073df
+10 -3
View File
@@ -16,6 +16,7 @@
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
;;; Copyright © 2024 Romain Garbage <romain.garbage@inria.fr>
;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -709,14 +710,20 @@ single-instruction multiple-data (SIMD) intrinsics.")
(arguments
(list #:configure-flags
#~(list (string-append "--with-hwloc="
(ungexp (this-package-input "hwloc") "lib")))
(ungexp (this-package-input "hwloc") "lib"))
"--enable-python-bindings") ;disabled by default
;; Don't keep a reference to GCC.
#:disallowed-references (and (not (%current-target-system))
(list (canonical-package gcc)))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-LDFLAGS
(lambda _
;; The Cython-compiled shared library would fail the
;; validate-runpath phase otherwise.
(setenv "LDFLAGS"
(string-append "-Wl,-rpath=" #$output "/lib"))))
(add-before 'configure 'strip-pmix-cc-absolute
(lambda _
;; The 'pmix_info' program prints the 'configure' command
@@ -733,7 +740,7 @@ single-instruction multiple-data (SIMD) intrinsics.")
(("#define PMIX_CONFIGURE_CLI .*")
"#define PMIX_CONFIGURE_CLI \"[scrubbed]\"\n")))))))
(inputs (list libevent `(,hwloc "lib") zlib))
(native-inputs (list perl python))
(native-inputs (list perl python python-cython))
(synopsis "PMIx library")
(description
"PMIx is an application programming interface standard that provides