diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-11-04 02:27:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 12:27:22 -0600 |
commit | ffec64ce30157ab1c11902306226a22d4a1ea17e (patch) | |
tree | db7a34a273740e7f3309ae912b15ae4e3e98eba6 | |
parent | b7421c1476039b8b9b567025bab039069cc988e4 (diff) | |
download | spack-ffec64ce30157ab1c11902306226a22d4a1ea17e.tar.gz spack-ffec64ce30157ab1c11902306226a22d4a1ea17e.tar.bz2 spack-ffec64ce30157ab1c11902306226a22d4a1ea17e.tar.xz spack-ffec64ce30157ab1c11902306226a22d4a1ea17e.zip |
Add new package: jose (#19707)
-rw-r--r-- | var/spack/repos/builtin/packages/jose/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/jose/package.py b/var/spack/repos/builtin/packages/jose/package.py new file mode 100644 index 0000000000..b33946e35e --- /dev/null +++ b/var/spack/repos/builtin/packages/jose/package.py @@ -0,0 +1,22 @@ +# 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 Jose(AutotoolsPackage): + """This package contains a C library for performing JOSE operations.""" + + homepage = "https://github.com/latchset/jose/" + url = "https://github.com/latchset/jose/releases/download/v10/jose-10.tar.bz2" + + version('10', sha256='5c9cdcfb535c4d9f781393d7530521c72b1dd81caa9934cab6dd752cc7efcd72') + version('9', sha256='64262b1344d92fc183f70ca93db6100cd97b3dfa7cddea1e08e8588e6cd681eb') + version('8', sha256='24e3d71e3da5a7913ab3c299381d76dfde488d91cb108b1a9527454bf1e9dc51') + + depends_on('pkgconfig', type='build') + depends_on('jansson@2.10:') + depends_on('zlib') + depends_on('openssl@1.0.2:') |