37 lines
1.6 KiB
Python
37 lines
1.6 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 Libgcrypt(AutotoolsPackage):
|
|
"""Cryptographic library based on the code from GnuPG."""
|
|
|
|
homepage = "https://gnupg.org/software/libgcrypt/index.html"
|
|
url = "https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.5.tar.bz2"
|
|
|
|
version('1.8.5', sha256='3b4a2a94cb637eff5bdebbcaf46f4d95c4f25206f459809339cdada0eb577ac3')
|
|
version('1.8.4', sha256='f638143a0672628fde0cad745e9b14deb85dffb175709cacc1f4fe24b93f2227')
|
|
version('1.8.1', sha256='7a2875f8b1ae0301732e878c0cca2c9664ff09ef71408f085c50e332656a78b3')
|
|
version('1.7.6', sha256='626aafee84af9d2ce253d2c143dc1c0902dda045780cc241f39970fc60be05bc')
|
|
version('1.6.2', sha256='de084492a6b38cdb27b67eaf749ceba76bf7029f63a9c0c3c1b05c88c9885c4c')
|
|
|
|
depends_on('libgpg-error@1.25:')
|
|
|
|
def check(self):
|
|
# Without this hack, `make check` fails on macOS when SIP is enabled
|
|
# https://bugs.gnupg.org/gnupg/issue2056
|
|
# https://github.com/Homebrew/homebrew-core/pull/3004
|
|
if self.spec.satisfies('platform=darwin'):
|
|
old = self.prefix.lib.join('libgcrypt.20.dylib')
|
|
new = join_path(
|
|
self.stage.source_path, 'src', '.libs', 'libgcrypt.20.dylib')
|
|
filename = 'tests/.libs/random'
|
|
|
|
install_name_tool = Executable('install_name_tool')
|
|
install_name_tool('-change', old, new, filename)
|
|
|
|
make('check')
|