diff options
author | Olaf Mersmann <olafm@p-value.net> | 2020-01-20 00:20:22 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2020-01-19 17:20:22 -0600 |
commit | dbb149cd7f5d5c88bfc9787f4c163337f928efc2 (patch) | |
tree | 249950f8aebd3916e3b14c40e3abd8d7626b52b7 | |
parent | 818b00e3027e753937c4d8f4cf6174f9859a283c (diff) | |
download | spack-dbb149cd7f5d5c88bfc9787f4c163337f928efc2.tar.gz spack-dbb149cd7f5d5c88bfc9787f4c163337f928efc2.tar.bz2 spack-dbb149cd7f5d5c88bfc9787f4c163337f928efc2.tar.xz spack-dbb149cd7f5d5c88bfc9787f4c163337f928efc2.zip |
capnproto: New package. (#14557)
* capnproto: New package.
* capnproto: Fix flake8 errors.
* Remove characters invalid in Python 2.
-rw-r--r-- | var/spack/repos/builtin/packages/capnproto/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/capnproto/package.py b/var/spack/repos/builtin/packages/capnproto/package.py new file mode 100644 index 0000000000..2533e8aabe --- /dev/null +++ b/var/spack/repos/builtin/packages/capnproto/package.py @@ -0,0 +1,21 @@ +# 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 Capnproto(AutotoolsPackage): + """Cap'n Proto is an insanely fast data interchange + format and capability-based RPC system. + """ + + homepage = "https://capnproto.org/" + url = "https://capnproto.org/capnproto-c++-0.7.0.tar.gz" + git = "https://github.com/capnproto/capnproto" + + version('0.7.0', sha256='c9a4c0bd88123064d483ab46ecee777f14d933359e23bff6fb4f4dbd28b4cd41') + + def configure_args(self): + return ['--without-openssl'] |