diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-19 12:04:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 23:04:22 -0500 |
commit | e88e6466e2dd3af71bb74074b761d32cb676167d (patch) | |
tree | eea9383d42f3d4304badd841e462de8fcbdb777f | |
parent | 761348a3af3d973a789f614ba4b433210f039229 (diff) | |
download | spack-e88e6466e2dd3af71bb74074b761d32cb676167d.tar.gz spack-e88e6466e2dd3af71bb74074b761d32cb676167d.tar.bz2 spack-e88e6466e2dd3af71bb74074b761d32cb676167d.tar.xz spack-e88e6466e2dd3af71bb74074b761d32cb676167d.zip |
Add new package: soci (#18816)
-rw-r--r-- | var/spack/repos/builtin/packages/soci/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/soci/package.py b/var/spack/repos/builtin/packages/soci/package.py new file mode 100644 index 0000000000..2c8bae12c5 --- /dev/null +++ b/var/spack/repos/builtin/packages/soci/package.py @@ -0,0 +1,17 @@ +# 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 Soci(CMakePackage): + """Official repository of the SOCI - The C++ Database Access Library""" + + homepage = "https://github.com/SOCI/soci" + url = "https://github.com/SOCI/soci/archive/4.0.0.tar.gz" + + version('4.0.0', sha256='359b988d8cbe81357835317821919f7e270c0705e41951a92ac1627cb9fe8faf') + version('3.2.3', sha256='1166664d5d7c4552c4c2abf173f98fa4427fbb454930fd04de3a39782553199e') + version('3.2.2', sha256='cf1a6130ebdf0b84d246da948874ab1312c317e2ec659ede732b688667c355f4') |