gnu: hwloc: Default to 2.x.
* gnu/packages/mpi.scm (hwloc): Rename to... (hwloc-1): ... this. (hwloc-2): Adjust 'inherit' clause accordingly. (hwloc): New variable.master
parent
69f759912d
commit
8ec7ca22d3
|
@ -52,7 +52,7 @@
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (ice-9 match))
|
#:use-module (ice-9 match))
|
||||||
|
|
||||||
(define-public hwloc
|
(define-public hwloc-1
|
||||||
;; Note: For now we keep 1.x as the default because many packages have yet
|
;; Note: For now we keep 1.x as the default because many packages have yet
|
||||||
;; to migrate to 2.0.
|
;; to migrate to 2.0.
|
||||||
(package
|
(package
|
||||||
|
@ -134,7 +134,7 @@ bind processes, and much more.")
|
||||||
(define-public hwloc-2
|
(define-public hwloc-2
|
||||||
;; Note: 2.0 isn't the default yet, see above.
|
;; Note: 2.0 isn't the default yet, see above.
|
||||||
(package
|
(package
|
||||||
(inherit hwloc)
|
(inherit hwloc-1)
|
||||||
(version "2.1.0")
|
(version "2.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -163,6 +163,10 @@ bind processes, and much more.")
|
||||||
(define-deprecated hwloc-2.0 'hwloc-2
|
(define-deprecated hwloc-2.0 'hwloc-2
|
||||||
hwloc-2)
|
hwloc-2)
|
||||||
|
|
||||||
|
(define-public hwloc
|
||||||
|
;; The latest stable series of hwloc.
|
||||||
|
hwloc-2)
|
||||||
|
|
||||||
(define-public openmpi
|
(define-public openmpi
|
||||||
(package
|
(package
|
||||||
(name "openmpi")
|
(name "openmpi")
|
||||||
|
|
Reference in New Issue