56 lines
2.2 KiB
Python
56 lines
2.2 KiB
Python
# 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 Gnupg(AutotoolsPackage):
|
|
"""GNU Pretty Good Privacy (PGP) package."""
|
|
|
|
homepage = "https://gnupg.org/index.html"
|
|
url = "https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.19.tar.bz2"
|
|
|
|
version('2.2.19', sha256='242554c0e06f3a83c420b052f750b65ead711cc3fddddb5e7274fcdbb4e9dec0')
|
|
version('2.2.17', sha256='afa262868e39b651a2db4c071fba90415154243e83a830ca00516f9a807fd514')
|
|
version('2.2.15', sha256='cb8ce298d7b36558ffc48aec961b14c830ff1783eef7a623411188b5e0f5d454')
|
|
version('2.2.3', sha256='cbd37105d139f7aa74f92b6f65d136658682094b0e308666b820ae4b984084b4')
|
|
version('2.1.21', sha256='7aead8a8ba75b69866f583b6c747d91414d523bfdfbe9a8e0fe026b16ba427dd')
|
|
|
|
depends_on('npth@1.2:')
|
|
depends_on('libgpg-error@1.24:')
|
|
depends_on('libgcrypt@1.7.0:')
|
|
depends_on('libksba@1.3.4:')
|
|
depends_on('libassuan@2.4:', when='@:2.2.3')
|
|
depends_on('libassuan@2.5:', when='@2.2.15:')
|
|
depends_on('pinentry', type='run')
|
|
depends_on('iconv')
|
|
depends_on('zlib')
|
|
|
|
def configure_args(self):
|
|
args = [
|
|
'--disable-bzip2',
|
|
'--disable-sqlite',
|
|
'--disable-ntbtls',
|
|
'--disable-gnutls',
|
|
'--disable-ldap',
|
|
'--disable-regex',
|
|
'--with-pinentry-pgm=' + self.spec['pinentry'].command.path,
|
|
'--with-libgpg-error-prefix=' + self.spec['libgpg-error'].prefix,
|
|
'--with-libgcrypt-prefix=' + self.spec['libgcrypt'].prefix,
|
|
'--with-libassuan-prefix=' + self.spec['libassuan'].prefix,
|
|
'--with-ksba-prefix=' + self.spec['libksba'].prefix,
|
|
'--with-npth-prefix=' + self.spec['npth'].prefix,
|
|
'--with-libiconv-prefix=' + self.spec['iconv'].prefix,
|
|
'--with-zlib=' + self.spec['zlib'].prefix,
|
|
'--without-tar',
|
|
'--without-libiconv-prefix',
|
|
'--without-readline',
|
|
]
|
|
|
|
if self.run_tests:
|
|
args.append('--enable-all-tests')
|
|
|
|
return args
|