[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/15: gnu: hwloc: Upgrade to 1.10.1.
From: |
Eric Bavier |
Subject: |
02/15: gnu: hwloc: Upgrade to 1.10.1. |
Date: |
Tue, 30 Jun 2015 01:29:44 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit ce7d9c989de569712b96f3bbb6c5db4d4c5595a9
Author: Eric Bavier <address@hidden>
Date: Sun Jun 14 17:11:00 2015 -0500
gnu: hwloc: Upgrade to 1.10.1.
* gnu/packages/patches/hwloc-gather-topology-lstopo.patch: New patch.
* gnu/packages/mpi.scm (hwloc): Upgrade to 1.10.1.
[source]: Use patch.
[propagated-inputs]: Remove libpci.
[inputs]: Add libpciaccess.
* gnu-system.am (dist_patch_DATA): Add patch.
---
gnu-system.am | 1 +
gnu/packages/mpi.scm | 23 ++++++++-----------
.../patches/hwloc-gather-topology-lstopo.patch | 13 +++++++++++
3 files changed, 24 insertions(+), 13 deletions(-)
diff --git a/gnu-system.am b/gnu-system.am
index 6934c92..91e5e52 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -462,6 +462,7 @@ dist_patch_DATA =
\
gnu/packages/patches/gtkglext-disable-disable-deprecated.patch \
gnu/packages/patches/hop-bigloo-4.0b.patch \
gnu/packages/patches/hop-linker-flags.patch \
+ gnu/packages/patches/hwloc-gather-topology-lstopo.patch \
gnu/packages/patches/hydra-automake-1.15.patch \
gnu/packages/patches/hydra-disable-darcs-test.patch \
gnu/packages/patches/irrlicht-mesa-10.patch \
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 8e62da9..0e1016e 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014 Eric Bavier <address@hidden>
+;;; Copyright © 2014, 2015 Eric Bavier <address@hidden>
;;; Copyright © 2014 Ludovic Courtès <address@hidden>
;;; Copyright © 2014 Ian Denhardt <address@hidden>
;;;
@@ -39,30 +39,29 @@
(define-public hwloc
(package
(name "hwloc")
- (version "1.9")
+ (version "1.10.1")
(source (origin
(method url-fetch)
(uri (string-append "http://www.open-mpi.org/software/hwloc/v"
- version "/downloads/hwloc-"
- version ".tar.bz2"))
+ (version-major+minor version)
+ "/downloads/hwloc-" version ".tar.bz2"))
(sha256
(base32
- "0zjgiili2a8v63s8ly3a8qp8ibxv1jw3zbgm7diic3w1qgqiza14"))))
+ "0jji5rphy05s0lp6bknn8lxwixrq0hy5rjzsqvhjszbkl2li7kim"))
+ (patches (list
+ (search-patch "hwloc-gather-topology-lstopo.patch")))))
(build-system gnu-build-system)
- (arguments
- ;; Enable libpci support, which effectively makes hwloc GPLv2+.
- '(#:configure-flags '("--enable-libpci")))
(inputs
`(("libx11" ,libx11)
("cairo" ,cairo)
("ncurses" ,ncurses)
+ ("libpciaccess" ,libpciaccess)
("expat" ,expat)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(propagated-inputs
- ;; 'hwloc.pc' refers to libpci and libnuma, hence the propagation.
- `(("numactl" ,numactl)
- ("pciutils" ,pciutils)))
+ ;; 'hwloc.pc' refers to libnuma, hence the propagation.
+ `(("numactl" ,numactl)))
(home-page "http://www.open-mpi.org/projects/hwloc/")
(synopsis "Abstraction of hardware architectures")
(description
@@ -77,8 +76,6 @@ exploit it accordingly and efficiently.
hwloc may display the topology in multiple convenient formats. It also offers
a powerful programming interface to gather information about the hardware,
bind processes, and much more.")
-
- ;; But see above about linking against libpci.
(license bsd-3)))
(define-public openmpi
diff --git a/gnu/packages/patches/hwloc-gather-topology-lstopo.patch
b/gnu/packages/patches/hwloc-gather-topology-lstopo.patch
new file mode 100644
index 0000000..06f47ae
--- /dev/null
+++ b/gnu/packages/patches/hwloc-gather-topology-lstopo.patch
@@ -0,0 +1,13 @@
+Derived from upstream commit 0a32f719c.
+
+--- hwloc-1.10.1/tests/linux/Makefile.in 2015-01-26 03:37:52.000000000
-0600
++++ hwloc-1.10.1/tests/linux/Makefile.in 2015-06-15 11:21:49.824842511
-0500
+@@ -1633,7 +1633,7 @@
+
+
+ install-exec-hook:
+- $(SED) -e 's/HWLOC_top_builddir\/utils/bindir/' -e
'/HWLOC_top_builddir/d' $(DESTDIR)$(bindir)/hwloc-gather-topology >
$(DESTDIR)$(bindir)/hwloc-gather-topology.tmp && mv -f
$(DESTDIR)$(bindir)/hwloc-gather-topology.tmp
$(DESTDIR)$(bindir)/hwloc-gather-topology
++ $(SED) -e 's/HWLOC_top_builddir\/utils\/lstopo/bindir/' -e
'/HWLOC_top_builddir/d' $(DESTDIR)$(bindir)/hwloc-gather-topology >
$(DESTDIR)$(bindir)/hwloc-gather-topology.tmp && mv -f
$(DESTDIR)$(bindir)/hwloc-gather-topology.tmp
$(DESTDIR)$(bindir)/hwloc-gather-topology
+ chmod +x $(DESTDIR)$(bindir)/hwloc-gather-topology
+
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
- branch master updated (e8df8f4 -> a17d456), Eric Bavier, 2015/06/29
- 01/15: gnu: python-mccabe: Fix license field., Eric Bavier, 2015/06/29
- 04/15: gnu: openmpi: Upgrade to 1.8.5., Eric Bavier, 2015/06/29
- 03/15: gnu: hwloc: Move numactl to inputs., Eric Bavier, 2015/06/29
- 06/15: gnu: scotch, pt-scotch: Use modify-phases., Eric Bavier, 2015/06/29
- 08/15: gnu: Add ScaLAPACK., Eric Bavier, 2015/06/29
- 07/15: gnu: scotch, pt-scotch: Build esmumps libraries., Eric Bavier, 2015/06/29
- 09/15: gnu: Add p4est., Eric Bavier, 2015/06/29
- 02/15: gnu: hwloc: Upgrade to 1.10.1.,
Eric Bavier <=
- 10/15: gnu: Add METIS., Eric Bavier, 2015/06/29
- 05/15: gnu: Update scotch to 6.0.4., Eric Bavier, 2015/06/29
- 11/15: gnu: Add MUMPS., Eric Bavier, 2015/06/29
- 13/15: gnu: Add arpack-ng-openmpi., Eric Bavier, 2015/06/29
- 12/15: gnu: petsc: Upgrade to 3.6.0., Eric Bavier, 2015/06/29
- 14/15: gnu: Add SLEPc., Eric Bavier, 2015/06/29
- 15/15: gnu: Add deal.II., Eric Bavier, 2015/06/29