diff options
author | Neil Flood <neilflood@fastmail.fm> | 2018-11-23 04:45:42 +1000 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-11-22 12:45:42 -0600 |
commit | c42ceb886ccc266a2fefe17c1a0604b50a44bea4 (patch) | |
tree | 96da74b7f8355af97c4a2105495b87a2e7e252e1 /var | |
parent | b6e664846acce6d586045f622b8c8c95583e2f1b (diff) | |
download | spack-c42ceb886ccc266a2fefe17c1a0604b50a44bea4.tar.gz spack-c42ceb886ccc266a2fefe17c1a0604b50a44bea4.tar.bz2 spack-c42ceb886ccc266a2fefe17c1a0604b50a44bea4.tar.xz spack-c42ceb886ccc266a2fefe17c1a0604b50a44bea4.zip |
qca: new package (#9924)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/qca/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/qca/package.py b/var/spack/repos/builtin/packages/qca/package.py new file mode 100644 index 0000000000..5faf47e0d7 --- /dev/null +++ b/var/spack/repos/builtin/packages/qca/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2018 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 Qca(CMakePackage): + """Taking a hint from the similarly-named Java Cryptography Architecture, + QCA aims to provide a straightforward and cross-platform crypto API, + using Qt datatypes and conventions. QCA separates the API from the + implementation, using plugins known as Providers. The advantage of + this model is to allow applications to avoid linking to or explicitly + depending on any particular cryptographic library. This allows one to + easily change or upgrade crypto implementations without even needing + to recompile the application! + QCA should work everywhere Qt does, including Windows/Unix/MacOSX. """ + + homepage = "https://userbase.kde.org/QCA" + url = "https://github.com/KDE/qca/archive/v2.1.3.tar.gz" + + version('2.1.3', 'bd646d08fdc1d9be63331a836ecd528f') + + depends_on('qt@4.2:') |