summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHadrien G <knights_of_ni@gmx.com>2018-08-24 23:45:18 +0200
committerscheibelp <scheibel1@llnl.gov>2018-08-24 17:45:18 -0400
commita7f3fa01d5e06f2614087d35db51a400ff26c12c (patch)
tree3b104c4f6d3fbdb86db32e06a66e14bbbd82776f
parentafff196a068a80d59721d7b7f6607d3e25015a53 (diff)
downloadspack-a7f3fa01d5e06f2614087d35db51a400ff26c12c.tar.gz
spack-a7f3fa01d5e06f2614087d35db51a400ff26c12c.tar.bz2
spack-a7f3fa01d5e06f2614087d35db51a400ff26c12c.tar.xz
spack-a7f3fa01d5e06f2614087d35db51a400ff26c12c.zip
new package: GSL - C++ Guideline Support Library (#9091)
Since "GSL" is a highly overloaded acronym, the package name is "cppgsl".
-rw-r--r--var/spack/repos/builtin/packages/cppgsl/package.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cppgsl/package.py b/var/spack/repos/builtin/packages/cppgsl/package.py
new file mode 100644
index 0000000000..06cd2570c0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/cppgsl/package.py
@@ -0,0 +1,51 @@
+##############################################################################
+# Copyright (c) 2013-2018, 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/spack/spack
+# Please also see the NOTICE and LICENSE files 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 *
+
+
+class Cppgsl(CMakePackage):
+ """C++ Guideline Support Library"""
+
+ homepage = "https://github.com/Microsoft/GSL"
+ url = "https://github.com/Microsoft/GSL/archive/v2.0.0.tar.gz"
+ git = "https://github.com/Microsoft/GSL.git"
+
+ version('develop', branch='master')
+ version('2.0.0', sha256='6cce6fb16b651e62711a4f58e484931013c33979b795d1b1f7646f640cfa9c8e')
+ version('1.0.0', sha256='9694b04cd78e5b1a769868f19fdd9eea2002de3d4c3a81a1b769209364543c36')
+
+ variant('cxxstd',
+ default='14',
+ values=('14', '17'),
+ multi=False,
+ description='Use the specified C++ standard when building.')
+
+ depends_on('cmake@3.1.3:', type='build')
+
+ def cmake_args(self):
+ args = [
+ '-DGSL_CXX_STANDARD={0}'.format(self.spec.variants['cxxstd'].value)
+ ]
+ return args