diff options
author | Erik Schnetter <schnetter@gmail.com> | 2023-03-20 18:36:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 15:36:38 -0700 |
commit | b7505aa726ea23ec19b50b8a99729ae1f9882147 (patch) | |
tree | 3112ed122364801f6952e732d7a300d738245a32 /var | |
parent | 2cecb4b00cf617eaa6a706260f964291ec9e73a9 (diff) | |
download | spack-b7505aa726ea23ec19b50b8a99729ae1f9882147.tar.gz spack-b7505aa726ea23ec19b50b8a99729ae1f9882147.tar.bz2 spack-b7505aa726ea23ec19b50b8a99729ae1f9882147.tar.xz spack-b7505aa726ea23ec19b50b8a99729ae1f9882147.zip |
universal: New package (#36168)
* universal: New package
* universal: Update to version 3.68
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/universal/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/universal/package.py b/var/spack/repos/builtin/packages/universal/package.py new file mode 100644 index 0000000000..09a1555fda --- /dev/null +++ b/var/spack/repos/builtin/packages/universal/package.py @@ -0,0 +1,17 @@ +# 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 Universal(CMakePackage): + """Universal: a header-only C++ template library for universal number arithmetic""" + + homepage = "https://github.com/stillwater-sc/universal" + url = "https://github.com/stillwater-sc/universal/archive/refs/tags/v3.68.tar.gz" + + maintainers("eschnett") + + version("3.68", sha256="67de4e0a3276b873a298ab98f1237ff3fd23240178e71405bf813ee38e4b1f62") |