diff options
author | Erik Heeren <erik.heeren@epfl.ch> | 2023-03-30 16:35:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 16:35:33 +0200 |
commit | 2ca471745cfdfe2f79cb55585d57c242ed126455 (patch) | |
tree | 7e1253a428d1692f70a1eec6d33df1d1e832d8a5 | |
parent | 3756d5761b2317174230c174af9fa109f4e0cc29 (diff) | |
download | spack-2ca471745cfdfe2f79cb55585d57c242ed126455.tar.gz spack-2ca471745cfdfe2f79cb55585d57c242ed126455.tar.bz2 spack-2ca471745cfdfe2f79cb55585d57c242ed126455.tar.xz spack-2ca471745cfdfe2f79cb55585d57c242ed126455.zip |
easyloggingpp: new package (#36487)
-rw-r--r-- | var/spack/repos/builtin/packages/easyloggingpp/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/easyloggingpp/package.py b/var/spack/repos/builtin/packages/easyloggingpp/package.py new file mode 100644 index 0000000000..e81089011d --- /dev/null +++ b/var/spack/repos/builtin/packages/easyloggingpp/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2023 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.package import * + + +class Easyloggingpp(CMakePackage): + """Single header C++ logging library""" + + homepage = "https://github.com/zuhd-org/easyloggingpp" + url = "https://github.com/zuhd-org/easyloggingpp/archive/v9.96.7.tar.gz" + + version("9.97.0", sha256="9110638e21ef02428254af8688bf9e766483db8cc2624144aa3c59006907ce22") + version("9.96.7", sha256="237c80072b9b480a9f2942b903b4b0179f65e146e5dcc64864dc91792dedd722") |