From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46935) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBgrd-0000r5-E5 for guix-patches@gnu.org; Thu, 26 Apr 2018 09:23:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBgrX-00030L-S7 for guix-patches@gnu.org; Thu, 26 Apr 2018 09:23:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60434) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fBgrX-000309-Nv for guix-patches@gnu.org; Thu, 26 Apr 2018 09:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fBgrX-00035N-Gr for guix-patches@gnu.org; Thu, 26 Apr 2018 09:23:03 -0400 Subject: bug#31172: [PATCH] gnu: Add psm2. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87sh7m2igw.fsf@gnu.org> <20180425114850.12404-1-pierre-antoine.rouby@inria.fr> Date: Thu, 26 Apr 2018 15:22:12 +0200 In-Reply-To: <20180425114850.12404-1-pierre-antoine.rouby@inria.fr> (Rouby Pierre-Antoine's message of "Wed, 25 Apr 2018 13:48:50 +0200") Message-ID: <87sh7i2jcr.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Rouby Pierre-Antoine Cc: 31172-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Rouby Pierre-Antoine skribis: > * gnu/packages/linux.scm (psm2): New variable. Awesome, applied with the following changes. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2b82babfa..8fc9c56d6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4665,7 +4665,8 @@ privileges.") (replace 'install (lambda _ (setenv "DESTDIR" %output) - (invoke "make" "install")))))) + (invoke "make" "install") + #t))))) (inputs `(("rdma-core" ,rdma-core) ("numactl" ,numactl))) @@ -4674,7 +4675,7 @@ privileges.") "This package is low-level user-level Intel's communications interface. The PSM2 API is a high-performance vendor-specific protocol that provides a low-level communications interface for the Intel Omni-Path family of -products.") +high-speed networking devices.") (home-page "https://github.com/intel/opa-psm2") ;; Only the x86_64 architecure is supported. (supported-systems '("x86_64-linux")) --=-=-=--