diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-12 22:18:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 16:18:32 +0200 |
commit | 39ded3fa0f9fcaaa8fc1ffdc93c5f46f3ffd0e1e (patch) | |
tree | 49c22a31cc47d73f43d7e34f7643335161a0658c | |
parent | c49e66a06eacea8edeb89d77a66f4e3695e9a683 (diff) | |
download | spack-39ded3fa0f9fcaaa8fc1ffdc93c5f46f3ffd0e1e.tar.gz spack-39ded3fa0f9fcaaa8fc1ffdc93c5f46f3ffd0e1e.tar.bz2 spack-39ded3fa0f9fcaaa8fc1ffdc93c5f46f3ffd0e1e.tar.xz spack-39ded3fa0f9fcaaa8fc1ffdc93c5f46f3ffd0e1e.zip |
ecdsautils: new package at v0.3.2 (#19007)
-rw-r--r-- | var/spack/repos/builtin/packages/ecdsautils/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ecdsautils/package.py b/var/spack/repos/builtin/packages/ecdsautils/package.py new file mode 100644 index 0000000000..cbba4a4f65 --- /dev/null +++ b/var/spack/repos/builtin/packages/ecdsautils/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2020 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 Ecdsautils(CMakePackage): + """Tiny collection of programs used for ECDSA.""" + + homepage = "https://github.com/freifunk-gluon/" + url = "https://github.com/freifunk-gluon/ecdsautils/archive/v0.3.2.tar.gz" + + version('0.3.2', sha256='a828417c985ccfc623bb613e92ccc8af6c6f24a5bcab8b112b90c033a816204f') + version('0.3.1', sha256='4b6efe7802a089e8d64194c954a8f9981ff516b922b40d51e6c7ba565274a87a') + + depends_on('libuecc', type='build') |