diff options
author | Tom Stitt <tomstitt@hey.com> | 2021-08-09 04:20:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 13:20:57 +0200 |
commit | 0f514a390acda767f8f6b5696f36a0db85f3b4d0 (patch) | |
tree | f7262e2100199dee405d6ad63f4a34e87fd9340d | |
parent | c513ba25f1ce2733e7de2fe15f8f2517c4b3a766 (diff) | |
download | spack-0f514a390acda767f8f6b5696f36a0db85f3b4d0.tar.gz spack-0f514a390acda767f8f6b5696f36a0db85f3b4d0.tar.bz2 spack-0f514a390acda767f8f6b5696f36a0db85f3b4d0.tar.xz spack-0f514a390acda767f8f6b5696f36a0db85f3b4d0.zip |
xproperty: add new package (#25236)
-rw-r--r-- | var/spack/repos/builtin/packages/xproperty/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xproperty/package.py b/var/spack/repos/builtin/packages/xproperty/package.py new file mode 100644 index 0000000000..80b7e8c14b --- /dev/null +++ b/var/spack/repos/builtin/packages/xproperty/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Xproperty(CMakePackage): + """C++ library providing traitlets-style properties""" + + homepage = "https://github.com/jupyter-xeus/xproperty" + url = "https://github.com/jupyter-xeus/xproperty/archive/0.11.0.tar.gz" + git = "https://github.com/jupyter-xeus/xproperty.git" + + maintainers = ['tomstitt'] + + version('master', branch='master') + version('0.11.0', sha256='bf86a11c6758308aa0aa0f64d8dd24cd3e9d78378467b74002f552bfb75fc0eb') + + depends_on('xtl@0.7.0:0.7.999', when='@0.11.0:') + + # C++14 support + conflicts('%gcc@:4.8') + conflicts('%clang@:3.3') |