From 64430862226e4606627a06ef91a15400d412967b Mon Sep 17 00:00:00 2001 From: iarspider Date: Fri, 17 Dec 2021 02:02:26 +0100 Subject: CMake: fix rhash detection (#27944) * RHash: update version; create symlink librash.so * Install headers * Flake-8 * Update package.py * Update package.py * Update package.py (#19) * Update package.py * Update package.py * Update var/spack/repos/builtin/packages/rhash/package.py Co-authored-by: Adam J. Stewart * Fix installation on macOS Co-authored-by: Adam J. Stewart --- var/spack/repos/builtin/packages/rhash/package.py | 49 +++++++++++++++++++++-- 1 file changed, 46 insertions(+), 3 deletions(-) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/rhash/package.py b/var/spack/repos/builtin/packages/rhash/package.py index eee6a50b03..641b3dc4f4 100644 --- a/var/spack/repos/builtin/packages/rhash/package.py +++ b/var/spack/repos/builtin/packages/rhash/package.py @@ -3,6 +3,8 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) +import os + class Rhash(MakefilePackage): """RHash is a console utility for computing and verifying hash sums of @@ -13,11 +15,18 @@ class Rhash(MakefilePackage): homepage = "https://sourceforge.net/projects/rhash/" url = "https://github.com/rhash/RHash/archive/v1.3.5.tar.gz" + version('1.4.2', sha256='600d00f5f91ef04194d50903d3c79412099328c42f28ff43a0bdb777b00bec62') version('1.3.5', sha256='98e0688acae29e68c298ffbcdbb0f838864105f9b2bd8857980664435b1f1f2e') + # configure: fix clang detection on macOS + # Patch accepted and merged upstream, remove on next release + patch('https://github.com/rhash/RHash/commit/4dc506066cf1727b021e6352535a8bb315c3f8dc.patch?full_index=1', + when='@1.4.2', sha256='3fbfe4603d2ec5228fd198fc87ff3ee281e1f68d252c1afceaa15cba76e9b6b4') + # For macOS build instructions, see: # https://github.com/Homebrew/homebrew-core/blob/master/Formula/rhash.rb + @when('@:1.3.5') def build(self, spec, prefix): # Doesn't build shared libraries by default make('PREFIX={0}'.format(prefix)) @@ -27,6 +36,11 @@ class Rhash(MakefilePackage): else: make('PREFIX={0}'.format(prefix), 'lib-shared') + @when('@1.3.6:') + def build(self, spec, prefix): + configure('--prefix=') + make() + def check(self): # Makefile has both `test` and `check` targets: # @@ -36,12 +50,19 @@ class Rhash(MakefilePackage): # Default implmentation is to run both `make test` and `make check`. # `test` passes, but `check` fails, so only run `test`. make('test') - make('test-static-lib') + if self.spec.satisfies('@:1.3.5'): + make('test-static-lib') + else: + make('test-lib-static') - if not self.spec.satisfies('platform=darwin'): + if not self.spec.satisfies('@:1.3.5 platform=darwin'): make('test-shared') - make('test-shared-lib') + if self.spec.satisfies('@:1.3.5'): + make('test-shared-lib') + else: + make('test-lib-shared') + @when('@:1.3.5') def install(self, spec, prefix): # Some things are installed to $(DESTDIR)$(PREFIX) while other things # are installed to $DESTDIR/etc. @@ -52,3 +73,25 @@ class Rhash(MakefilePackage): install('librhash/*.dylib', prefix.lib) else: make('install-lib-shared', 'DESTDIR={0}'.format(prefix), 'PREFIX=') + os.symlink(join_path(prefix.lib, 'librhash.so.0'), + join_path(prefix.lib, 'librhash.so')) + + @when('@1.3.6:') + def install(self, spec, prefix): + # Intermittent issues during installation, prefix.bin directory already exists + make('install', 'DESTDIR={0}'.format(prefix), parallel=False) + make('install-pkg-config', 'DESTDIR={0}'.format(prefix)) + make('install-lib-so-link', 'DESTDIR={0}'.format(prefix)) + make('install-lib-headers', 'DESTDIR={0}'.format(prefix)) + + @run_after('install') + def darwin_fix(self): + # The shared library is not installed correctly on Darwin; fix this + if self.spec.satisfies('@1.3.6: platform=darwin'): + # Fix RPATH for /bin/rhash + old = '/lib/librhash.0.dylib' + new = self.prefix.lib.join('librhash.dylib') + install_name_tool = Executable('install_name_tool') + install_name_tool('-change', old, new, self.prefix.bin.rhash) + # Fix RPATH for /lib/librhash.dylib + fix_darwin_install_name(self.prefix.lib) -- cgit v1.2.3-60-g2f50