[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/15: gnu: psm2: Use gexps.
From: |
guix-commits |
Subject: |
06/15: gnu: psm2: Use gexps. |
Date: |
Thu, 23 Feb 2023 10:33:52 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit b8d3b9d14b128645756a8102e2e5f8938495b942
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Thu Feb 23 14:41:14 2023 +0100
gnu: psm2: Use gexps.
* gnu/packages/linux.scm (psm2)[arguments]: Use gexps.
---
gnu/packages/linux.scm | 38 ++++++++++++++++++--------------------
1 file changed, 18 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b26eedfb1b..61eaec2876 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012-2021, 2021-2022 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012-2021, 2021-2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Mark H Weaver
<mhw@netris.org>
@@ -8577,25 +8577,23 @@ privileges.")
"062hg4r6gz7pla9df70nqs5i2a3mp1wszmp4l0g771fykhhrxsjg"))))
(build-system gnu-build-system)
(arguments
- '(#:make-flags
- `(,(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
- #:tests? #f
- #:phases (modify-phases %standard-phases
- (delete 'configure)
- (add-after 'unpack 'patch-Makefiles
- (lambda _
- (substitute* "Makefile"
- (("/lib64") "/lib")
- (("/usr") ""))
- (substitute* "compat/Makefile"
- (("/lib64") "/lib")
- (("/usr") ""))
- #t))
- (replace 'install
- (lambda _
- (setenv "DESTDIR" %output)
- (invoke "make" "install")
- #t)))))
+ (list #:make-flags
+ #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
+ #:tests? #f
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure)
+ (add-after 'unpack 'patch-Makefiles
+ (lambda _
+ (substitute* "Makefile"
+ (("/lib64") "/lib")
+ (("/usr") ""))
+ (substitute* "compat/Makefile"
+ (("/lib64") "/lib")
+ (("/usr") ""))))
+ (replace 'install
+ (lambda _
+ (setenv "DESTDIR" #$output)
+ (invoke "make" "install"))))))
(inputs
(list rdma-core numactl))
(synopsis "Intel Performance Scaled Messaging 2 (PSM2) library")
- branch master updated (92984eb93f -> 3809aa01a1), guix-commits, 2023/02/23
- 02/15: gnu: ucx: Use gexps., guix-commits, 2023/02/23
- 01/15: gnu: ucx: Mark POWER9 as supported., guix-commits, 2023/02/23
- 03/15: gnu: infiniband-diags: Use gexps., guix-commits, 2023/02/23
- 04/15: gnu: ibutils: Use gexps., guix-commits, 2023/02/23
- 06/15: gnu: psm2: Use gexps.,
guix-commits <=
- 05/15: gnu: ibutils: Fix compilation., guix-commits, 2023/02/23
- 12/15: doc: Further clarify documentation of 'host' and 'hosts-service-type'., guix-commits, 2023/02/23
- 07/15: gnu: openmpi: Use gexps., guix-commits, 2023/02/23
- 08/15: doc: hosts-service-type: Relocate to Base Services., guix-commits, 2023/02/23
- 09/15: system: Do not export local-host-entries., guix-commits, 2023/02/23
- 10/15: doc: hosts-service-type: Improve documentation., guix-commits, 2023/02/23
- 11/15: services: hosts: Do not export '%host'., guix-commits, 2023/02/23
- 13/15: gnu: lightning: Update to 2.2.1, guix-commits, 2023/02/23
- 15/15: gnu: gnulib: Allow only one directory name in GNULIB_SRCDIR., guix-commits, 2023/02/23
- 14/15: gnu: Add aspell-dict-bg., guix-commits, 2023/02/23