From 995c978f5202420ce9ecb4970bf791021079e4ea Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Fri, 26 Mar 2021 11:23:46 +0100 Subject: SquashFUSE: add new package, add libfuse detection (#22511) --- .../repos/builtin/packages/libfuse/package.py | 9 ++++ .../repos/builtin/packages/squashfuse/package.py | 49 ++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 var/spack/repos/builtin/packages/squashfuse/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/libfuse/package.py b/var/spack/repos/builtin/packages/libfuse/package.py index 07a80a8de5..bf576ccf4d 100644 --- a/var/spack/repos/builtin/packages/libfuse/package.py +++ b/var/spack/repos/builtin/packages/libfuse/package.py @@ -4,6 +4,7 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack import * +import re class Libfuse(MesonPackage): @@ -22,6 +23,14 @@ class Libfuse(MesonPackage): variant('useroot', default=False) + executables = ['^fusermount$'] + + @classmethod + def determine_version(cls, exe): + output = Executable(exe)('--version', output=str, error=str) + match = re.search(r'^fusermount.*version: (\S+)', output) + return match.group(1) if match else None + def meson_args(self): args = [] diff --git a/var/spack/repos/builtin/packages/squashfuse/package.py b/var/spack/repos/builtin/packages/squashfuse/package.py new file mode 100644 index 0000000000..c7e4c68aba --- /dev/null +++ b/var/spack/repos/builtin/packages/squashfuse/package.py @@ -0,0 +1,49 @@ +# Copyright 2013-2021 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 Squashfuse(AutotoolsPackage): + """squashfuse - Mount SquashFS archives using FUSE""" + + homepage = "https://github.com/vasi/squashfuse" + url = "https://github.com/vasi/squashfuse/releases/download/0.1.103/squashfuse-0.1.103.tar.gz" + git = "https://github.com/vasi/squashfuse.git" + + maintainers = ['haampie'] + + # there hasn't been a release for a while, and the master branch introduces + # support for fuse@3:, so we have our own spack version here (46 commits + # after 0.1.103) + version('master', branch='master') + version('0.1.103-46', commit='e5dddbfc6e402c82f5fbba115b0eb3476684f50d', preferred=True) + + # official releases + version('0.1.103', sha256='42d4dfd17ed186745117cfd427023eb81effff3832bab09067823492b6b982e7') + + depends_on('libfuse@2.5:') + depends_on('libfuse@:2.99', when='@0.1.103') + + # Note: typically libfuse is external, but this implies that you have to make + # pkg-config external too, because spack's pkg-config doesn't know how to + # locate system pkg-config's fuse.pc/fuse3.pc + depends_on('pkg-config', type='build') + + # compression libs + depends_on('zlib') + depends_on('lz4') + depends_on('lzo') + depends_on('xz') + depends_on('zstd') + + # build deps for non-tarball versions + depends_on('m4', type='build', when='@master,0.1.103-46') + depends_on('autoconf', type='build', when='@master,0.1.103-46') + depends_on('automake', type='build', when='@master,0.1.103-46') + depends_on('libtool', type='build', when='@master,0.1.103-46') + + def configure_args(self): + return ['--disable-demo'] -- cgit v1.2.3-70-g09d2