Date: Sun, 6 Mar 2022 15:05:16 GMT From: Rick Macklem <rmacklem@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 0de291a6f5af - main - nfs-over-tls: Update to version 1.2 Message-ID: <202203061505.226F5GZS058547@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by rmacklem (src committer): URL: https://cgit.FreeBSD.org/ports/commit/?id=0de291a6f5afc8096d3894e6eeb326f3cef32258 commit 0de291a6f5afc8096d3894e6eeb326f3cef32258 Author: Rick Macklem <rmacklem@FreeBSD.org> AuthorDate: 2022-03-06 14:59:01 +0000 Commit: Rick Macklem <rmacklem@FreeBSD.org> CommitDate: 2022-03-06 15:01:28 +0000 nfs-over-tls: Update to version 1.2 The nfs-over-tls utilities have been patched to work with newer versions of OpenSSL, which requires that the KTLS be enabled via a library call. This patch updates the port to version 1.2, which has the patched utilities. It also adds an IGNORE check for the case where the system already has the daemons and fixes a typo in an IGNORE message. Reviewed by: yasu Approved by: yasu (ports) --- sysutils/nfs-over-tls/Makefile | 8 ++++++-- sysutils/nfs-over-tls/distinfo | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/sysutils/nfs-over-tls/Makefile b/sysutils/nfs-over-tls/Makefile index be734280cd4c..9d911f53a58c 100644 --- a/sysutils/nfs-over-tls/Makefile +++ b/sysutils/nfs-over-tls/Makefile @@ -1,5 +1,5 @@ PORTNAME= nfs-over-tls -DISTVERSION= 1.1 +DISTVERSION= 1.2 CATEGORIES= sysutils MASTER_SITES= https://people.freebsd.org/~rmacklem/nfs-over-tls/ @@ -15,8 +15,12 @@ USES= kmod ssl .include <bsd.port.pre.mk> .if ${OSVERSION} < 1300133 -IGNORE= Requires FreeBSD 13 or later with in-kernel TLS support \ +IGNORE= requires FreeBSD 13 or later with in-kernel TLS support \ and OpenSSL with KTLS enabled .endif +.if exists(/usr/sbin/rpc.tlsclntd) +IGNORE= already included in the base system +.endif + .include <bsd.port.post.mk> diff --git a/sysutils/nfs-over-tls/distinfo b/sysutils/nfs-over-tls/distinfo index 2dc8b4b9f025..989c50ad53bf 100644 --- a/sysutils/nfs-over-tls/distinfo +++ b/sysutils/nfs-over-tls/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1613226988 -SHA256 (nfs-over-tls-1.1.tar.gz) = 7bc40d7267f4b56bd6083304a4edc02abe8e4b56d0176d9a60b139882cde0243 -SIZE (nfs-over-tls-1.1.tar.gz) = 17229 +TIMESTAMP = 1646512318 +SHA256 (nfs-over-tls-1.2.tar.gz) = eabb557a7e7edd29e8187786d9eebf663e7e1092b79eaf815b90463c2b7ff848 +SIZE (nfs-over-tls-1.2.tar.gz) = 17269
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203061505.226F5GZS058547>