]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
sshfs: Update to 3.7.1
authorAdolf Belka <ahb.ipfire@gmail.com>
Tue, 5 Jan 2021 14:20:57 +0000 (15:20 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 6 Jan 2021 15:21:42 +0000 (15:21 +0000)
- Update sshfs from 2.2 to 3.7.1
- Changelog is available at https://github.com/libfuse/sshfs/releases
- Build had to be changed from autotools to meson/ninja
- Change in rootfiles

Signed-off-by: Adolf Belka <ahb.ipfire@gmail.com>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/sshfs
lfs/sshfs

index 2cafa3e24c6108a75b105fd0930a920e81af7909..579b938f56297a8a49619865732bdd8f5eae819d 100644 (file)
@@ -1,2 +1,4 @@
 usr/bin/sshfs
+#usr/sbin/mount.fuse.sshfs
+#usr/sbin/mount.sshfs
 #usr/share/man/man1/sshfs.1
index 23fbd18ca8c48cbc627a6917669bf835471bbc16..1e770619454d8745d0bf680dd3d9cbe6f6ce9ae7 100644 (file)
--- a/lfs/sshfs
+++ b/lfs/sshfs
 
 include Config
 
-VER        = 2.2
+VER        = 3.7.1
 
-THISAPP    = sshfs-fuse-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
+THISAPP    = sshfs-$(VER)
+DL_FILE    = $(THISAPP).tar.xz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET = $(DIR_INFO)/$(THISAPP)
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 26e9206eb5169e87e6f95f54bc005a4f
+$(DL_FILE)_MD5 = 22ac23d05ca7c56fb568627f086374d0
 
 install : $(TARGET)
 
@@ -72,9 +72,7 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure --prefix=/usr
-       cd $(DIR_APP) && make $(MAKETUNING)
-       cd $(DIR_APP) && make install
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && meson --prefix=/usr builddir && cd builddir && ninja && ninja install
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)