summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@epfl.ch>2015-09-25 10:44:47 +0200
committerMassimiliano Culpo <massimiliano.culpo@googlemail.com>2015-10-19 13:48:24 +0200
commitf4460894beea13c2d028338503c9cef5608e05b6 (patch)
tree2517fc1b95b231cb5150e1928fc9255132a95eef /var
parent3c788147cacfbf48f2eec9f3ee785d0e5d67bed3 (diff)
downloadspack-f4460894beea13c2d028338503c9cef5608e05b6.tar.gz
spack-f4460894beea13c2d028338503c9cef5608e05b6.tar.bz2
spack-f4460894beea13c2d028338503c9cef5608e05b6.tar.xz
spack-f4460894beea13c2d028338503c9cef5608e05b6.zip
hdf5 : updated version
mpich : updated version trilinos : created stub
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/hdf5/package.py3
-rw-r--r--var/spack/packages/mpich/package.py5
-rw-r--r--var/spack/packages/trilinos/package.py40
3 files changed, 47 insertions, 1 deletions
diff --git a/var/spack/packages/hdf5/package.py b/var/spack/packages/hdf5/package.py
index 992dd8ec70..15e0ef9338 100644
--- a/var/spack/packages/hdf5/package.py
+++ b/var/spack/packages/hdf5/package.py
@@ -10,7 +10,8 @@ class Hdf5(Package):
url = "http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8.13/src/hdf5-1.8.13.tar.gz"
list_url = "http://www.hdfgroup.org/ftp/HDF5/releases"
list_depth = 3
-
+
+ version('1.8.15', '03cccb5b33dbe975fdcd8ae9dc021f24')
version('1.8.13', 'c03426e9e77d7766944654280b467289')
depends_on("mpi")
diff --git a/var/spack/packages/mpich/package.py b/var/spack/packages/mpich/package.py
index b6b2dfde21..315fc4a5a3 100644
--- a/var/spack/packages/mpich/package.py
+++ b/var/spack/packages/mpich/package.py
@@ -33,6 +33,11 @@ class Mpich(Package):
list_url = "http://www.mpich.org/static/downloads/"
list_depth = 2
+ version('3.1.4', '2ab544607986486562e076b83937bba2')
+ version('3.1.3', '93cb17f91ac758cbf9174ecb03563778')
+ version('3.1.2', '7fbf4b81dcb74b07ae85939d1ceee7f1')
+ version('3.1.1', '40dc408b1e03cc36d80209baaa2d32b7')
+ version('3.1', '5643dd176499bfb7d25079aaff25f2ec')
version('3.0.4', '9c5d5d4fe1e17dd12153f40bc5b6dbc0')
provides('mpi@:3', when='@3:')
diff --git a/var/spack/packages/trilinos/package.py b/var/spack/packages/trilinos/package.py
new file mode 100644
index 0000000000..2fa4f3cc84
--- /dev/null
+++ b/var/spack/packages/trilinos/package.py
@@ -0,0 +1,40 @@
+# FIXME:
+# This is a template package file for Spack. We've conveniently
+# put "FIXME" labels next to all the things you'll want to change.
+#
+# Once you've edited all the FIXME's, delete this whole message,
+# save this file, and test out your package like this:
+#
+# spack install trilinos
+#
+# You can always get back here to change things with:
+#
+# spack edit trilinos
+#
+# See the spack documentation for more information on building
+# packages.
+#
+from spack import *
+
+class Trilinos(Package):
+ """FIXME: put a proper description of your package here."""
+ # FIXME: add a proper url for your package's homepage here.
+ homepage = "http://www.example.com"
+ url = "http://trilinos.csbsju.edu/download/files/trilinos-12.2.1-Source.tar.gz"
+
+ version('12.2.1' , '6161926ea247863c690e927687f83be9')
+ version('12.0.1' , 'bd99741d047471e127b8296b2ec08017')
+ version('11.14.3', '2f4f83f8333e4233c57d0f01c4b57426')
+ version('11.14.2', 'a43590cf896c677890d75bfe75bc6254')
+ version('11.14.1', '40febc57f76668be8b6a77b7607bb67f')
+
+ # FIXME: Add dependencies if this package requires them.
+ # depends_on("foo")
+
+ def install(self, spec, prefix):
+ # FIXME: Modify the configure line to suit your build system here.
+ cmake('.', *std_cmake_args)
+
+ # FIXME: Add logic to build and install here
+ make()
+ make("install")