aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bronder <jbronder@gentoo.org>2013-07-10 20:29:26 -0400
committerJustin Bronder <jbronder@gentoo.org>2013-07-10 20:29:26 -0400
commitb28fbde3a4e784b4d5d182cc49daa2379c7f4194 (patch)
treee6ffddd48fcf94e6a099ecf760dc2c3c40163092 /sys-cluster/empi/files
parentsci-libs/lemon: Add patch for gcc-4.7. Install docs properly. Add coin and to... (diff)
downloadsci-b28fbde3a4e784b4d5d182cc49daa2379c7f4194.tar.gz
sci-b28fbde3a4e784b4d5d182cc49daa2379c7f4194.tar.bz2
sci-b28fbde3a4e784b4d5d182cc49daa2379c7f4194.zip
bump
Package-Manager: portage-2.1.12.2 RepoMan-Options: --force
Diffstat (limited to 'sys-cluster/empi/files')
-rw-r--r--sys-cluster/empi/files/ChangeLog-0.10 (renamed from sys-cluster/empi/files/ChangeLog-0.9)55
-rwxr-xr-xsys-cluster/empi/files/empi-0.10 (renamed from sys-cluster/empi/files/empi-0.9)11
-rw-r--r--sys-cluster/empi/files/eselect.mpi-0.10 (renamed from sys-cluster/empi/files/eselect.mpi-0.9)0
3 files changed, 62 insertions, 4 deletions
diff --git a/sys-cluster/empi/files/ChangeLog-0.9 b/sys-cluster/empi/files/ChangeLog-0.10
index 15652b092..ac5eff065 100644
--- a/sys-cluster/empi/files/ChangeLog-0.9
+++ b/sys-cluster/empi/files/ChangeLog-0.10
@@ -1,4 +1,57 @@
-commit a17e4452cb93014e2a4d5f7615e5d09f2df9c6a2 (HEAD, tag: v0.8, origin/master, origin/HEAD, master)
+commit ab2dc2e2210f81d24b42180359d0842eb33f994a (HEAD, tag: v0.10, origin/master, origin/HEAD, master)
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Wed Jul 10 20:22:13 2013 -0400
+
+ empi-0.10
+
+commit d84c6ce3949f9eeeb1bab816e3e25eef0dd75661
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Tue Jul 9 18:48:01 2013 -0400
+
+ empi: support make.conf move
+
+ Later versions of portage moved /etc/make.conf to /etc/portage/make.conf
+ by default while still supporting the old location.
+
+commit 914c277799fd0f44266864fa16fef338046be5f6
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Tue Jul 9 18:12:50 2013 -0400
+
+ eclass: add sys-cluster/mpich
+
+ upstream renamed mpich2 to mpich.
+
+commit 5c80290f4f0d90fe84fa0f18f2264052c544c008
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Mon Jul 1 22:16:04 2013 -0400
+
+ Revert "eclass: workaround OpenMPI build issue #462602"
+
+ This reverts commit 5e9b1be531ca02607e730a5b43765850eae9a0c5.
+
+commit a5d63455bf53a1ca6ab0220e3f308707a852b0cc (tag: v0.9)
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Mon Jul 1 20:06:50 2013 -0400
+
+ empi-0.9
+
+commit 4540a319542ddc7c0fbcea47174fe85e1810561c
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Mon Jul 1 20:05:35 2013 -0400
+
+ empi: better filtering of emerge output
+
+ Ignore extra information spit out by emerge, like news.
+
+commit 5e9b1be531ca02607e730a5b43765850eae9a0c5
+Author: Justin Bronder <jsbronder@gmail.com>
+Date: Mon Jul 1 20:04:58 2013 -0400
+
+ eclass: workaround OpenMPI build issue #462602
+
+ export FAKEROOTKEY=1 to stop OpenMPI from replacing malloc.
+
+commit a17e4452cb93014e2a4d5f7615e5d09f2df9c6a2 (tag: v0.8)
Author: Justin Bronder <jsbronder@gmail.com>
Date: Thu Feb 21 22:56:27 2013 -0500
diff --git a/sys-cluster/empi/files/empi-0.9 b/sys-cluster/empi/files/empi-0.10
index 8a9523c58..cf41dbbce 100755
--- a/sys-cluster/empi/files/empi-0.9
+++ b/sys-cluster/empi/files/empi-0.10
@@ -1,5 +1,5 @@
#!/bin/bash
-VERSION=0.9
+VERSION=0.10
source /etc/init.d/functions.sh
@@ -431,6 +431,7 @@ DO_EMERGE=1
EMERGE_OPTS="-u" # Packages can be recompiled by hand if necessary.
TARGETS=""
DEFAULT_MPI_OVERLAY_DIR=/var/cache/overlays/mpi
+MAKE_CONF=/etc/make.conf
PORTDIR_OVERLAY=""
PKGDIR=""
@@ -468,11 +469,15 @@ done
[[ ${UID} -ne 0 ]] && die "You must be root to preform any actions."
+if [ -s /etc/portage/make.conf ]; then
+ MAKE_CONF=/etc/portage/make.conf
+fi
+
: ${MPI_OVERLAY_DIR:=$(portageq envvar MPI_OVERLAY_DIR)}
if [ -z "${MPI_OVERLAY_DIR}" ]; then
MPI_OVERLAY_DIR=${DEFAULT_MPI_OVERLAY_DIR}
- einfo "MPI_OVERLAY_DIR not set, defaulting to ${MPI_OVERLAY_DIR} and updating /etc/make.conf"
- echo "MPI_OVERLAY_DIR=\"${MPI_OVERLAY_DIR}\"" >> /etc/make.conf
+ einfo "MPI_OVERLAY_DIR not set, defaulting to ${MPI_OVERLAY_DIR} and updating make.conf"
+ echo "MPI_OVERLAY_DIR=\"${MPI_OVERLAY_DIR}\"" >> ${MAKE_CONF}
fi
if [ ! -d "${MPI_OVERLAY_DIR}" ]; then
diff --git a/sys-cluster/empi/files/eselect.mpi-0.9 b/sys-cluster/empi/files/eselect.mpi-0.10
index e1f0902a9..e1f0902a9 100644
--- a/sys-cluster/empi/files/eselect.mpi-0.9
+++ b/sys-cluster/empi/files/eselect.mpi-0.10