From owner-dev-commits-ports-main@freebsd.org Mon Sep 6 20:10:18 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2BACD67A8DB; Mon, 6 Sep 2021 20:10:18 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H3KJV0Wvyz4Rk6; Mon, 6 Sep 2021 20:10:18 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E213B2504D; Mon, 6 Sep 2021 20:10:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 186KAHIj008351; Mon, 6 Sep 2021 20:10:17 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 186KAHvg008347; Mon, 6 Sep 2021 20:10:17 GMT (envelope-from git) Date: Mon, 6 Sep 2021 20:10:17 GMT Message-Id: <202109062010.186KAHvg008347@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: =?utf-8?Q?Stefan E=C3=9Fer?= Subject: git: 1497b78ecb44 - main - sysutils/fusefs-libs3: update to version 3.10.5 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: se X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1497b78ecb44653e8153f8d3b1ad4512f3fd191b Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Sep 2021 20:10:18 -0000 The branch main has been updated by se: URL: https://cgit.FreeBSD.org/ports/commit/?id=1497b78ecb44653e8153f8d3b1ad4512f3fd191b commit 1497b78ecb44653e8153f8d3b1ad4512f3fd191b Author: Stefan Eßer AuthorDate: 2021-09-06 20:00:00 +0000 Commit: Stefan Eßer CommitDate: 2021-09-06 20:10:14 +0000 sysutils/fusefs-libs3: update to version 3.10.5 The test_syscalls command uses O_PATH and cannot be built on FreeBSD versions before 14-CURRENT as of 6 May 2021 (OSVERSION 1400014). --- sysutils/fusefs-libs3/Makefile | 5 ++++- sysutils/fusefs-libs3/distinfo | 6 +++--- sysutils/fusefs-libs3/files/extra-patch-test_meson.build | 15 +++++++++++++++ 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/sysutils/fusefs-libs3/Makefile b/sysutils/fusefs-libs3/Makefile index d72c04339a25..a9aa2df5bffc 100644 --- a/sysutils/fusefs-libs3/Makefile +++ b/sysutils/fusefs-libs3/Makefile @@ -1,7 +1,7 @@ # Created by: Stefan Esser PORTNAME= fusefs-libs3 -DISTVERSION= 3.10.4 +DISTVERSION= 3.10.5 CATEGORIES= sysutils MASTER_SITES= https://github.com/libfuse/libfuse/releases/download/fuse-${DISTVERSION}/ DISTNAME= fuse-${DISTVERSION} @@ -22,6 +22,9 @@ PLIST_SUB= VERSION=${PORTVERSION} .include +.if ${OPSYS} == "FreeBSD" && ${OSVERSION} < 1400014 +EXTRA_PATCHES= ${FILESDIR}/extra-patch-test_meson.build +.endif .if ${OPSYS} == DragonFly IGNORE= fusefs has not been implemented on DragonFly .endif diff --git a/sysutils/fusefs-libs3/distinfo b/sysutils/fusefs-libs3/distinfo index 930e70ae5f6b..f526affcb235 100644 --- a/sysutils/fusefs-libs3/distinfo +++ b/sysutils/fusefs-libs3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1623227790 -SHA256 (fuse-3.10.4.tar.xz) = 9365b74fd8471caecdb3cc5adf25a821f70a931317ee9103d15bd39089e3590d -SIZE (fuse-3.10.4.tar.xz) = 2787472 +TIMESTAMP = 1630955600 +SHA256 (fuse-3.10.5.tar.xz) = b2e283485d47404ac896dd0bb7f7ba81e1470838e677e45f659804c3a3b69666 +SIZE (fuse-3.10.5.tar.xz) = 2931828 diff --git a/sysutils/fusefs-libs3/files/extra-patch-test_meson.build b/sysutils/fusefs-libs3/files/extra-patch-test_meson.build new file mode 100644 index 000000000000..f7a17a17e4e7 --- /dev/null +++ b/sysutils/fusefs-libs3/files/extra-patch-test_meson.build @@ -0,0 +1,15 @@ +--- test/meson.build.orig 2021-09-06 12:45:29 UTC ++++ test/meson.build +@@ -7,9 +7,9 @@ foreach prog: [ 'test_write_cache', 'test_setattr' ] + dependencies: thread_dep, + install: false) + endforeach +-td += executable('test_syscalls', 'test_syscalls.c', +- include_directories: include_dirs, +- install: false) ++#td += executable('test_syscalls', 'test_syscalls.c', ++# include_directories: include_dirs, ++# install: false) + td += executable('readdir_inode', 'readdir_inode.c', + include_directories: include_dirs, + install: false)