Index: head/sysutils/fusefs-sshfs/Makefile =================================================================== --- head/sysutils/fusefs-sshfs/Makefile (revision 488805) +++ head/sysutils/fusefs-sshfs/Makefile (revision 488806) @@ -1,29 +1,29 @@ # Created by: Anish Mistry # $FreeBSD$ PORTNAME= sshfs -PORTVERSION= 3.5.0 +PORTVERSION= 3.5.1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- MAINTAINER= bofh@FreeBSD.org COMMENT= Mount remote directories over ssh LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= rst2man:textproc/py-docutils USES= fuse:3 gettext gnome meson pkgconfig USE_GITHUB= yes GH_ACCOUNT= libfuse USE_GNOME= glib20 CFLAGS+= -DNDEBUG PLIST_FILES= bin/sshfs \ man/man1/sshfs.1.gz .include Index: head/sysutils/fusefs-sshfs/distinfo =================================================================== --- head/sysutils/fusefs-sshfs/distinfo (revision 488805) +++ head/sysutils/fusefs-sshfs/distinfo (revision 488806) @@ -1,3 +1,3 @@ -TIMESTAMP = 1543539529 -SHA256 (libfuse-sshfs-sshfs-3.5.0_GH0.tar.gz) = a34b214f41edabe89e1b8172a0c169b3c760e2e1f1d7fb3d5aefdc7a297f7678 -SIZE (libfuse-sshfs-sshfs-3.5.0_GH0.tar.gz) = 56624 +TIMESTAMP = 1546270462 +SHA256 (libfuse-sshfs-sshfs-3.5.1_GH0.tar.gz) = 0312208329ee1cb406dca97a4d3e23a7c31164c4bb9fc6fac5447c2db7ff6eea +SIZE (libfuse-sshfs-sshfs-3.5.1_GH0.tar.gz) = 57335 Index: head/sysutils/fusefs-sshfs/files/patch-meson.build =================================================================== --- head/sysutils/fusefs-sshfs/files/patch-meson.build (revision 488805) +++ head/sysutils/fusefs-sshfs/files/patch-meson.build (revision 488806) @@ -1,27 +1,27 @@ ---- meson.build.orig 2018-06-29 08:34:57 UTC +--- meson.build.orig 2018-12-22 14:33:52 UTC +++ meson.build @@ -19,12 +19,7 @@ int main(void) { (void) get_4(); return 0; }''' -if not cc.compiles(code, args: [ '-O0', '-Werror=unused-result' ]) - message('Compiler warns about unused result even when casting to void') - add_global_arguments('-Wno-unused-result', language: 'c') -endif - - rst2man = find_program('rst2man', required: false) + rst2man = find_program('rst2man', 'rst2man.py', required: false) cfg = configuration_data() @@ -62,11 +57,6 @@ if rst2man.found() else message('rst2man not found, not building manual page.') endif - -meson.add_install_script('utils/install_helper.sh', - get_option('sbindir'), - get_option('bindir')) - subdir('test')