Yasuhiro Kimura <[email protected]> wrote: > Rick Macklem <[email protected]> wrote: > > Hi, > > > > I have an update to version 1.2 of sysutils/nfs-over-tls > > so that the daemons work with newer versions of > > the OpenSSL libraries. > > > > I need someone to review/approve this update. > > The "git diff" is attached. > > > > Thanks, rick > > Isn't it better to add following lines to Makefile than adding > explanation to pkg-descr? > > .if exists(/usr/sbin/rpc.tlsclntd) > IGNORE= Already included in base system > .endif Yes, that should work! Good suggestion.
Attached is an updated diff for the port. Thanks, rick Best Regards. --- Yasuhiro Kimura
diff --git a/sysutils/nfs-over-tls/Makefile b/sysutils/nfs-over-tls/Makefile index be734280cd4c..d5581b4f0d4c 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/ @@ -19,4 +19,8 @@ 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
