~ruther/guix-local

d818d073df5317d1b5c5dc4151ef6c7f40721933 — Maxim Cournoyer 1 year, 8 months ago dc3b526
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
1 files changed, 10 insertions(+), 3 deletions(-)

M gnu/packages/parallel.scm
M gnu/packages/parallel.scm => gnu/packages/parallel.scm +10 -3
@@ 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