diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-03-21 16:28:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 09:28:21 +0100 |
commit | 3688f7aea085d060740ef8bc1b6fbc62fa542e91 (patch) | |
tree | ebce59638ec94b45cb0b7c2c743b6f467a700c4a /var | |
parent | bc127ec53edcafbdfa69e6344b1bf9421415ffef (diff) | |
download | spack-3688f7aea085d060740ef8bc1b6fbc62fa542e91.tar.gz spack-3688f7aea085d060740ef8bc1b6fbc62fa542e91.tar.bz2 spack-3688f7aea085d060740ef8bc1b6fbc62fa542e91.tar.xz spack-3688f7aea085d060740ef8bc1b6fbc62fa542e91.zip |
hwdata: new package (#22128)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hwdata/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hwdata/package.py b/var/spack/repos/builtin/packages/hwdata/package.py new file mode 100644 index 0000000000..c699189a40 --- /dev/null +++ b/var/spack/repos/builtin/packages/hwdata/package.py @@ -0,0 +1,16 @@ +# 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 Hwdata(AutotoolsPackage): + """Hardware identification and configuration data.""" + + homepage = "https://github.com/vcrhonek/hwdata" + url = "https://github.com/vcrhonek/hwdata/archive/v0.337.tar.gz" + + version('0.345', sha256='fafcc97421ba766e08a2714ccc3eebb0daabc99e67d53c2d682721dd01ccf7a7') + version('0.340', sha256='e3a0ef18af6795a362345a2c2c7177be351cb27b4cc0ed9278b7409759258802') |