summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2021-03-26 11:23:46 +0100
committerGitHub <noreply@github.com>2021-03-26 11:23:46 +0100
commit995c978f5202420ce9ecb4970bf791021079e4ea (patch)
treef9e89d7ea83144334635890fc363d51750cdbcef /var
parentd56c6299326ee53de6b64a409bb1ca631aeeb7e6 (diff)
downloadspack-995c978f5202420ce9ecb4970bf791021079e4ea.tar.gz
spack-995c978f5202420ce9ecb4970bf791021079e4ea.tar.bz2
spack-995c978f5202420ce9ecb4970bf791021079e4ea.tar.xz
spack-995c978f5202420ce9ecb4970bf791021079e4ea.zip
SquashFUSE: add new package, add libfuse detection (#22511)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libfuse/package.py9
-rw-r--r--var/spack/repos/builtin/packages/squashfuse/package.py49
2 files changed, 58 insertions, 0 deletions
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']