aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaelJGilroy <michael.gilroy24@gmail.com>2017-05-31 16:49:45 -0600
committerMichaelJGilroy <michael.gilroy24@gmail.com>2017-05-31 16:49:45 -0600
commit093ea338e4a6d60da754dd2f4086aacf27df9097 (patch)
tree6eab3ac6e57564018447069a3782495a14a950b9
parentAdded list of implementations and simple function to assign slots (diff)
downloadgentoo-mpi-093ea338e4a6d60da754dd2f4086aacf27df9097.tar.gz
gentoo-mpi-093ea338e4a6d60da754dd2f4086aacf27df9097.tar.bz2
gentoo-mpi-093ea338e4a6d60da754dd2f4086aacf27df9097.zip
Switching to mpi-providers
-rw-r--r--eclass/gentoo-mpi.eclass29
1 files changed, 0 insertions, 29 deletions
diff --git a/eclass/gentoo-mpi.eclass b/eclass/gentoo-mpi.eclass
deleted file mode 100644
index 9b1186a..0000000
--- a/eclass/gentoo-mpi.eclass
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# @ECLASS: gentoo-mpi.eclass
-# @MAINTAINER:
-# Michael Gilroy <michael.gilroy24@gmail.com>
-# @BLURB: Functions for providing varied mpi builds.
-
-case ${EAPI:-0} in
- 6) ;;
- *) die "gentoo-mpi.eclass does not support EAPI ${EAPI}"
-esac
-
-# @ECLASS-VARIABLE: IMPLEMENTATION_LIST
-# @INTERNAL
-# @DESCRIPTION:
-# Every MPI Implementation
-IMPLEMENTATION_LIST="mpich mpich2 openmpi lam-mpi openlib-mvapich2 hpl"
-
-# @FUNCTION: gentoo-mpi_get_slot
-# @DESCRIPTION:
-# Returns slot based on software version. Likely to be removed.
-gentoo-mpi_get_slot() {
- if [[ ${PV} =~ ^[0-9]* ]]; then
- echo ${PV:0:1}
- else
- die "Unable to slot: version not detected."
- fi
-}