summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-06-06 14:02:10 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2015-06-06 15:26:54 -0700
commit03780ea10557cbcc9846469bbdb8cbfd56ee9d92 (patch)
tree3594c7f641569d548f6b600c093f6f7583b47f9f /var
parent422a75e4b85345bd517c73760430ae773d49dc00 (diff)
downloadspack-03780ea10557cbcc9846469bbdb8cbfd56ee9d92.tar.gz
spack-03780ea10557cbcc9846469bbdb8cbfd56ee9d92.tar.bz2
spack-03780ea10557cbcc9846469bbdb8cbfd56ee9d92.tar.xz
spack-03780ea10557cbcc9846469bbdb8cbfd56ee9d92.zip
Remove autosave files from saravan's PR
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/arpack/package.py.save15
-rw-r--r--var/spack/packages/hypre/package.py.save26
2 files changed, 0 insertions, 41 deletions
diff --git a/var/spack/packages/arpack/package.py.save b/var/spack/packages/arpack/package.py.save
deleted file mode 100644
index fe4f7999c6..0000000000
--- a/var/spack/packages/arpack/package.py.save
+++ /dev/null
@@ -1,15 +0,0 @@
-from spack import *
-
-class Arpack(Package):
- """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
- homepage = "http://www.caam.rice.edu/software/ARPACK/"
- url = "http://www.caam.rice.edu/software/ARPACK/SRC/arpack96.tar.gz"
-
- version('96', 'fffaa970198b285676f4156cebc8626e')
-
- depends_on("blas")
- depends_on("lapack")
-
- def install(self, spec, prefix):
-
diff --git a/var/spack/packages/hypre/package.py.save b/var/spack/packages/hypre/package.py.save
deleted file mode 100644
index 532a1a3c5f..0000000000
--- a/var/spack/packages/hypre/package.py.save
+++ /dev/null
@@ -1,26 +0,0 @@
-from spack import *
-
-class Hypre(Package):
- """Hypre is a library of high performance preconditioners that features parallel multigrid
- methods for both structured and unstructured grid problems."""
-
- homepage = "https://computation.llnl.gov/project/linear_solvers/software.php"
- url = "https://computation.llnl.gov/project/linear_solvers/download/hypre-2.10.0b.tar.gz"
-
- version('2.10.0b', '768be38793a35bb5d055905b271f5b8e')
-
- depends_on("openmpi")
- depends_on("blas")
- depends_on("lapack")
-
- def install(self, spec, prefix):
- lapack_dir = spec['lapack'].prefix
- configure(
- "--prefix=%s" % prefix,
- "--with-blas-libs=blas",
- "--with-blas-lib-dirs=%s/lib" % spec['blas'].prefix,
- "--with-lapack-libs=lapack blas",
- "--with-lapack-lib-dirs=%s/lib" % lapack_dir)
-
- make()
- make("install")