summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2017-06-13 18:03:49 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2017-06-13 18:03:49 -0700
commit6af44e63add228614cd776229ff1da8c863e1fdc (patch)
tree92d784988f0a647e1dcded00ac0ad7f568618291 /var
parent56f7c85c939231c289c1b497607058f8bb57245f (diff)
downloadspack-6af44e63add228614cd776229ff1da8c863e1fdc.tar.gz
spack-6af44e63add228614cd776229ff1da8c863e1fdc.tar.bz2
spack-6af44e63add228614cd776229ff1da8c863e1fdc.tar.xz
spack-6af44e63add228614cd776229ff1da8c863e1fdc.zip
coinhsl 2014.01.17: new package (#4482)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/coinhsl/package.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/coinhsl/package.py b/var/spack/repos/builtin/packages/coinhsl/package.py
new file mode 100644
index 0000000000..87d866ec58
--- /dev/null
+++ b/var/spack/repos/builtin/packages/coinhsl/package.py
@@ -0,0 +1,47 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+import os
+
+
+class Coinhsl(AutotoolsPackage):
+ """CoinHSL is a collection of linear algebra libraries (KB22, MA27,
+ MA28, MA54, MA57, MA64, MA77, MA86, MA97, MC19, MC34, MC64, MC68,
+ MC69, MC78, MC80, OF01, ZB01, ZB11) bundled for use with IPOPT and
+ other applications that use these HSL routines.
+
+ Note: CoinHSL is licensed software. You will need to request a
+ license from Research Councils UK and download a .tar.gz archive
+ of CoinHSL yourself. Spack will search your current directory for
+ the download file. Alternatively, add this file to a mirror so
+ that Spack can find it. For instructions on how to set up a
+ mirror, see http://spack.readthedocs.io/en/latest/mirrors.html"""
+
+ # NOTE(oxberry1@llnl.gov): an HTTPS version of the URL below does not
+ # exist
+ homepage = "http://www.hsl.rl.ac.uk/ipopt/"
+ url = "file://{0}/coinhsl-archive-2014.01.17.tar.gz".format(os.getcwd())
+
+ version('2014.01.17', '9eb3dd40ed034814ed8dfee75b281180c1d9d2ae')