Date: Tue, 28 Aug 2018 11:37:24 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478301 - in head/net: . nfs-ganesha-kmod Message-ID: <201808281137.w7SBbO6I083450@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Tue Aug 28 11:37:24 2018 New Revision: 478301 URL: https://svnweb.freebsd.org/changeset/ports/478301 Log: NFS-Ganesha is an NFSv3,v4,v4.1 fileserver that runs in user mode. It also supports the 9p.2000L protocol. This port contains the kernel modules which implement required syscalls. WWW: https://github.com/gandi/nfs-ganesha-kmod PR: 230777 Submitted by: fatih@gandi.net Sponsored by: Gandi.net Added: head/net/nfs-ganesha-kmod/ head/net/nfs-ganesha-kmod/Makefile (contents, props changed) head/net/nfs-ganesha-kmod/distinfo (contents, props changed) head/net/nfs-ganesha-kmod/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Aug 28 11:30:07 2018 (r478300) +++ head/net/Makefile Tue Aug 28 11:37:24 2018 (r478301) @@ -519,6 +519,7 @@ SUBDIR += nettest SUBDIR += netwib SUBDIR += neubot + SUBDIR += nfs-ganesha-kmod SUBDIR += nfsshell SUBDIR += ng_mikrotik_eoip SUBDIR += ngrep Added: head/net/nfs-ganesha-kmod/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha-kmod/Makefile Tue Aug 28 11:37:24 2018 (r478301) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= nfs-ganesha-kmod +DISTVERSION= 0.1 +CATEGORIES= net +DISTVERSIONPREFIX= v + +MAINTAINER= fatih@gandi.net +COMMENT= Modules to implement required syscalls for userspace fileservers + +LICENSE= BSD3CLAUSE + +USES= kmod uidfix + +USE_GITHUB= yes +GH_ACCOUNT= Gandi +GH_PROJECT= nfs-ganesha-kmod + +GANESHA_MODULE= getfhat \ + fhreadlink \ + fhlink \ + setthreaduid \ + setthreadgid \ + setthreadgroups + +.for f in ${GANESHA_MODULE} +PLIST_FILES+= ${KMODDIR}/${f}.ko +.endfor + +do-install: +.for f in ${GANESHA_MODULE} + ${INSTALL_DATA} ${WRKSRC}/${f}/${f}.ko ${STAGEDIR}/${KMODDIR}/ +.endfor + +.include <bsd.port.mk> Added: head/net/nfs-ganesha-kmod/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha-kmod/distinfo Tue Aug 28 11:37:24 2018 (r478301) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535455958 +SHA256 (Gandi-nfs-ganesha-kmod-v0.1_GH0.tar.gz) = e55aa64c159abde27670b5d517ce18cb2d4ede7deb15c88f92b2e15b61bfeb5e +SIZE (Gandi-nfs-ganesha-kmod-v0.1_GH0.tar.gz) = 5920 Added: head/net/nfs-ganesha-kmod/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha-kmod/pkg-descr Tue Aug 28 11:37:24 2018 (r478301) @@ -0,0 +1,6 @@ +NFS-Ganesha is an NFSv3,v4,v4.1 fileserver that runs in user mode. +It also supports the 9p.2000L protocol. + +This port contains the kernel modules which implement required syscalls. + +WWW: https://github.com/gandi/nfs-ganesha-kmod
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808281137.w7SBbO6I083450>