
* libassuan: Update to v2.5.3 * gnupg: Update to v2.2.15 * libgpg-error: Update to v1.36 * libgcrypt: Update to v1.8.4
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# Copyright 2013-2019 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 Gnupg(AutotoolsPackage):
|
|
"""GnuPG is a complete and free implementation of the OpenPGP
|
|
standard as defined by RFC4880 """
|
|
|
|
homepage = "https://gnupg.org/index.html"
|
|
url = "https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.3.tar.bz2"
|
|
|
|
version('2.2.15', sha256='cb8ce298d7b36558ffc48aec961b14c830ff1783eef7a623411188b5e0f5d454')
|
|
version('2.2.3', '6911c0127e4231ce52d60f26029dba68')
|
|
version('2.1.21', '685ebf4c3a7134ba0209c96b18b2f064')
|
|
|
|
depends_on('libgcrypt')
|
|
depends_on('libassuan@2.4:', when='@:2.2.3')
|
|
depends_on('libassuan@2.5:', when='@2.2.15:')
|
|
depends_on('libksba')
|
|
depends_on('libgpg-error')
|
|
depends_on('npth')
|
|
|
|
def configure_args(self):
|
|
args = ['--with-npth-prefix=%s' % self.spec['npth'].prefix,
|
|
'--with-libgcrypt-prefix=%s' % self.spec['libgcrypt'].prefix,
|
|
'--with-libksba-prefixx=%s' % self.spec['libksba'].prefix,
|
|
'--with-libassuan-prefix=%s' % self.spec['libassuan'].prefix,
|
|
'--with-libpgp-error-prefix=%s' %
|
|
self.spec['libgpg-error'].prefix]
|
|
return args
|