From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: 74572@debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer@gmail.com>,
Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: [bug#74572] [PATCH 3/6] gnu: openpmix: Fix indentation.
Date: Thu, 28 Nov 2024 16:47:54 +0900 [thread overview]
Message-ID: <3fb3e35ff7c3ed0187e8b0d85fc90e1b8ee83179.1732774966.git.maxim.cournoyer@gmail.com> (raw)
In-Reply-To: <cover.1732774966.git.maxim.cournoyer@gmail.com>
* gnu/packages/parallel.scm (openpmix): Fix indentation.
Change-Id: I05751408847343ac593e666afc5f1efbbef94a79
---
gnu/packages/parallel.scm | 106 +++++++++++++++++++-------------------
1 file changed, 53 insertions(+), 53 deletions(-)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 6a16f0e4c0..3e50a75047 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -696,61 +696,61 @@ (define-public psimd
(define-public openpmix
(package
- (name "openpmix")
- (version "4.2.8")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/openpmix/openpmix/releases/download/v"
- version "/pmix-" version ".tar.bz2"))
- (sha256
- (base32
- "1j9xlhqrrmgjdkwakamn78y5gj756adi53hn25zksgr3is3l5d09"))))
- (build-system gnu-build-system)
- (arguments
- (list #:configure-flags
- #~(list (string-append "--with-hwloc="
- (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
- ;; line, compiler absolute file name, etc., which causes it
- ;; to keep references to many build-time packages. Scrub
- ;; these.
- (substitute* "configure"
- (("PMIX_CC_ABSOLUTE=\"(.*)\"" _ cc)
- (string-append "PMIX_CC_ABSOLUTE=\"$(basename \""
- cc "\")\"\n")))))
- (add-after 'configure 'strip-pmix-config-header
- (lambda _
- (substitute* "src/include/pmix_config.h"
- (("#define PMIX_CONFIGURE_CLI .*")
- "#define PMIX_CONFIGURE_CLI \"[scrubbed]\"\n")))))))
- (inputs (list libevent `(,hwloc "lib") zlib))
- (native-inputs (list perl python python-cython))
- (synopsis "PMIx library")
- (description
- "PMIx is an application programming interface standard that provides
+ (name "openpmix")
+ (version "4.2.8")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/openpmix/openpmix/releases/download/v"
+ version "/pmix-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1j9xlhqrrmgjdkwakamn78y5gj756adi53hn25zksgr3is3l5d09"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:configure-flags
+ #~(list (string-append "--with-hwloc="
+ (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 line,
+ ;; compiler absolute file name, etc., which causes it to keep
+ ;; references to many build-time packages. Scrub these.
+ (substitute* "configure"
+ (("PMIX_CC_ABSOLUTE=\"(.*)\"" _ cc)
+ (string-append "PMIX_CC_ABSOLUTE=\"$(basename \""
+ cc "\")\"\n")))))
+ (add-after 'configure 'strip-pmix-config-header
+ (lambda _
+ (substitute* "src/include/pmix_config.h"
+ (("#define PMIX_CONFIGURE_CLI .*")
+ "#define PMIX_CONFIGURE_CLI \"[scrubbed]\"\n")))))))
+ (inputs (list libevent `(,hwloc "lib") zlib))
+ (native-inputs (list perl python python-cython))
+ (synopsis "PMIx library")
+ (description
+ "PMIx is an application programming interface standard that provides
libraries and programming models with portable and well-defined access to
commonly needed services in distributed and parallel computing systems.")
- (home-page "https://pmix.org/")
- ;; configure: WARNING: PMIx does not support 32 bit builds.
- (supported-systems %64bit-supported-systems)
- ;; The provided license is kind of BSD-style but specific.
- (license (license:fsf-free "https://github.com/openpmix/openpmix?tab=License-1-ov-file#License-1-ov-file"))))
+ (home-page "https://pmix.org/")
+ ;; configure: WARNING: PMIx does not support 32 bit builds.
+ (supported-systems %64bit-supported-systems)
+ ;; The provided license is kind of BSD-style but specific.
+ (license (license:fsf-free "https://github.com/openpmix/openpmix?tab=License-1-ov-file#License-1-ov-file"))))
(define-public prrte
(package
--
2.46.0
next prev parent reply other threads:[~2024-11-28 7:50 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-28 6:24 [bug#74572] [PATCH 0/6] ] Python bindings, reduced size for OpenPMIx/OpenMPI Maxim Cournoyer
2024-11-28 7:47 ` [bug#74572] [PATCH 1/6] gnu: openmpi-5: Update to 5.0.6 Maxim Cournoyer
2024-11-28 7:47 ` [bug#74572] [PATCH 2/6] gnu: openpmix: Enable Python bindings Maxim Cournoyer
2024-11-28 7:47 ` Maxim Cournoyer [this message]
2024-11-28 7:47 ` [bug#74572] [PATCH 4/6] gnu: openpmix: Do not install HTML documentation Maxim Cournoyer
2024-11-28 7:47 ` [bug#74572] [PATCH 5/6] gnu: openmpi-5: Reformat Maxim Cournoyer
2024-11-28 7:47 ` [bug#74572] [PATCH 6/6] gnu: openmpi-5: Streamline source and do not install HTML doc Maxim Cournoyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3fb3e35ff7c3ed0187e8b0d85fc90e1b8ee83179.1732774966.git.maxim.cournoyer@gmail.com \
--to=maxim.cournoyer@gmail.com \
--cc=74572@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.