ports/opt (3.3): sshfs-fuse: update to 3.3.0
commit 40ede79b81e53fa44f960fcdb6e464aa8f7c7afd Author: Juergen Daubert <jue@jue.li> Date: Tue Sep 26 11:45:34 2017 +0200 sshfs-fuse: update to 3.3.0 diff --git a/sshfs-fuse/.footprint b/sshfs-fuse/.footprint index e5ddb6754..91048b9ee 100644 --- a/sshfs-fuse/.footprint +++ b/sshfs-fuse/.footprint @@ -1,7 +1,10 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/sshfs +drwxr-xr-x root/root usr/sbin/ +lrwxrwxrwx root/root usr/sbin/mount.fuse.sshfs -> ../bin/sshfs +lrwxrwxrwx root/root usr/sbin/mount.sshfs -> ../bin/sshfs drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/man/ drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/sshfs.1.gz +-rwxr-xr-x root/root usr/share/man/man1/sshfs.1.gz diff --git a/sshfs-fuse/.md5sum b/sshfs-fuse/.md5sum index 7cd5fb1c7..df51f4777 100644 --- a/sshfs-fuse/.md5sum +++ b/sshfs-fuse/.md5sum @@ -1 +1,2 @@ -dee189442efb22e08d4f233af8626ce7 sshfs-3.2.0.tar.gz +918f99e5a5b077cdfda6bddf8940ee0c sshfs-3.3.0.tar.xz +92e0188ff3349babbed1e73a8c561322 sshfs.1 diff --git a/sshfs-fuse/.signature b/sshfs-fuse/.signature index 415bcea58..a0b0070e0 100644 --- a/sshfs-fuse/.signature +++ b/sshfs-fuse/.signature @@ -1,5 +1,6 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/bjdCSW4V7byJbT1SOT24W0rdl8j31Ei6dZw2zoIhUPkjG9iR0E50DCV0vKlp57OV6CvUAc/Jf2ERi6YPi5AFgY= -SHA256 (Pkgfile) = 6c722dae4dce41ce433c13906d563b25a6472281005152756d0ae93541b4c833 -SHA256 (.footprint) = fa53e4c7d54568efe2e06e42e693a1b5321694979ab8c4141db4917f07ed97d5 -SHA256 (sshfs-3.2.0.tar.gz) = b494cdbac7ba2e77b994b3d3957171610be640e49c287ff6cb8f2959c4768101 +RWSE3ohX2g5d/ZR80VZqlSbCmC2vp+XFoV305Jb9p5Jgmg+ILlx+Vlf72JIf50M+yMSpLtp/WJ+IOCfLY631nUPizj7H0Y/brgo= +SHA256 (Pkgfile) = 963086824578a95e5d71c7dbd9a2502585c04c0c9a1f144940de024a3de09d77 +SHA256 (.footprint) = 7f13776954f8545eaef5b6a706cc8900ea540ff289c89d923825ab97347b0c41 +SHA256 (sshfs-3.3.0.tar.xz) = 9ddfcc2564fafe002706b093b6295afbcb2cc0a3bc52bc805cc5361cb69ca51d +SHA256 (sshfs.1) = 42c34c125251a6e94336f2bc11eee3575cfd63cf20b2b69919c198b4ed33f2ce diff --git a/sshfs-fuse/Pkgfile b/sshfs-fuse/Pkgfile index aba4117ab..ccbf137fc 100644 --- a/sshfs-fuse/Pkgfile +++ b/sshfs-fuse/Pkgfile @@ -5,13 +5,23 @@ # Depends on: fuse3 glib name=sshfs-fuse -version=3.2.0 +version=3.3.0 release=1 -source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$ver...) +source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$ver... + sshfs.1) build() { cd sshfs-$version - ./configure --prefix=/usr - make - make DESTDIR=$PKG install + + # fix man-dir location (only used if python-docutils is installed) + sed -i '/mandir/s/1/man1/' meson.build + + local JOBS= + [[ $MAKEFLAGS =~ (-j|-j *|--jobs=)([[:digit:]]+) ]] && JOBS="-j ${BASH_REMATCH[2]}" + + mkdir build ; cd build + meson .. --prefix /usr + DESTDIR=$PKG ninja $JOBS install + + install -D $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1 }
participants (1)
-
crux@crux.nu