summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-03-26 00:42:31 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2015-06-06 18:18:51 -0700
commit8b9dcfe6359ac0ba044906549dccc5e2e6275c09 (patch)
tree5be032a586cc192a6ed9510d6106dea65f853fdb /var
parent5d94864b6c4ef8d458295daad5284f1e7cc30a65 (diff)
downloadspack-8b9dcfe6359ac0ba044906549dccc5e2e6275c09.tar.gz
spack-8b9dcfe6359ac0ba044906549dccc5e2e6275c09.tar.bz2
spack-8b9dcfe6359ac0ba044906549dccc5e2e6275c09.tar.xz
spack-8b9dcfe6359ac0ba044906549dccc5e2e6275c09.zip
Delete lapack/atlas combined package.
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/lapack-atlas/package.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/var/spack/packages/lapack-atlas/package.py b/var/spack/packages/lapack-atlas/package.py
deleted file mode 100644
index 209b02cb94..0000000000
--- a/var/spack/packages/lapack-atlas/package.py
+++ /dev/null
@@ -1,40 +0,0 @@
-from spack import *
-from spack.util.executable import Executable
-import os
-import urllib
-
-class LapackAtlas(Package):
- """
- Automatically Tuned Linear Algebra Software, generic shared
- ATLAS is an approach for the automatic generation and optimization of
- numerical software. Currently ATLAS supplies optimized versions for the
- complete set of linear algebra kernels known as the Basic Linear Algebra
- Subroutines (BLAS), and a subset of the linear algebra routines in the
- LAPACK library.
- """
- homepage = "http://math-atlas.sourceforge.net/"
- url = "http://downloads.sourceforge.net/project/math-atlas/Stable/3.10.2/atlas3.10.2.tar.bz2"
-
- version('3.10.2', 'a4e21f343dec8f22e7415e339f09f6da')
-
- # FIXME: Add dependencies if this package requires them.
- # depends_on("foo")
-
- def install(self, spec, prefix):
- #os.mkdir('ATLAS-Build')
- #os.chdir('ATLAS-Build')
- with working_dir('ATLAS-Build', create=True):
- self.module.configure = Executable('../configure')
- lapack_file = 'lapack-3.5.0.tgz'
- lapack = urllib.URLopener()
- lapack.retrieve('http://www.netlib.org/lapack/' + lapack_file, lapack_file)
-
- configure("--prefix=%s" % prefix,
- "--shared",
- '--with-netlib-lapack-tarfile=%s' % os.getcwd() + '/' + lapack_file)
-
- make()
- make('check')
- make('ptcheck')
- make('time')
- make("install")