Date: Tue, 28 Aug 2018 11:59:46 +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: r478302 - in head/net: . nfs-ganesha nfs-ganesha/files Message-ID: <201808281159.w7SBxkCd094485@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Tue Aug 28 11:59:46 2018 New Revision: 478302 URL: https://svnweb.freebsd.org/changeset/ports/478302 Log: NFS-Ganesha is an NFSv3,v4,v4.1 fileserver that runs in user mode. It also supports the 9p.2000L protocol. WWW: https://github.com/nfs-ganesha/nfs-ganesha PR: 230776 Submitted by: fatih@gandi.net Sponsored by: Gandi.net Added: head/net/nfs-ganesha/ head/net/nfs-ganesha/Makefile (contents, props changed) head/net/nfs-ganesha/distinfo (contents, props changed) head/net/nfs-ganesha/files/ head/net/nfs-ganesha/files/ganesha.in (contents, props changed) head/net/nfs-ganesha/files/patch-src_os_freebsd_xattr.c (contents, props changed) head/net/nfs-ganesha/pkg-descr (contents, props changed) head/net/nfs-ganesha/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Aug 28 11:37:24 2018 (r478301) +++ head/net/Makefile Tue Aug 28 11:59:46 2018 (r478302) @@ -519,6 +519,7 @@ SUBDIR += nettest SUBDIR += netwib SUBDIR += neubot + SUBDIR += nfs-ganesha SUBDIR += nfs-ganesha-kmod SUBDIR += nfsshell SUBDIR += ng_mikrotik_eoip Added: head/net/nfs-ganesha/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/Makefile Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= nfs-ganesha +DISTVERSION= 2.7.0 +PORTREVISION= 1 +CATEGORIES= net + +MAINTAINER= fatih@gandi.net +COMMENT= NFS fileserver that runs in user mode + +LIB_DEPENDS= libdbus-1.so:devel/dbus +RUN_DEPENDS= ${KMODDIR}/getfhat.ko:net/nfs-ganesha-kmod + +USES= cmake bison kmod pkgconfig python:build +USE_RC_SUBR= ganesha + +USE_GITHUB= yes +GH_ACCOUNT= nfs-ganesha +GH_PROJECT= nfs-ganesha +GH_TAGNAME= V2.7-rc1 +CFLAGS+= -Wno-error +GH_TUPLE= nfs-ganesha:ntirpc:b69c2c1e353:ganesha/src/libntirpc + +CMAKE_ARGS= -DLIB_INSTALL_DIR=${LOCALBASE}/lib -DUSE_GSS=OFF -DUSE_9P=OFF \ + -DUSE_FSAL_PROXY=OFF -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_CEPH=OFF \ + -DUSE_FSAL_GLUSTER=OFF -DUSE_FSAL_RGW=OFF -DUSE_RADOS_RECOV=OFF \ + -DUSE_DBUS=ON -DUSE_ADMIN_TOOLS=ON +CMAKE_SOURCE_PATH= ${WRKSRC}/src + +WITH_DEBUG= yes + +.include <bsd.port.mk> Added: head/net/nfs-ganesha/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/distinfo Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,5 @@ +TIMESTAMP = 1534776761 +SHA256 (nfs-ganesha-nfs-ganesha-2.7.0-V2.7-rc1_GH0.tar.gz) = bcb7ae7f9a80e23c56164b8b69dd0be88dc9baa9945bbccb90895caa66d0f45f +SIZE (nfs-ganesha-nfs-ganesha-2.7.0-V2.7-rc1_GH0.tar.gz) = 1690807 +SHA256 (nfs-ganesha-ntirpc-b69c2c1e353_GH0.tar.gz) = c035a974cdb49af610a451bc7527b5d3c7891cf54778cde0a76f5c135b422329 +SIZE (nfs-ganesha-ntirpc-b69c2c1e353_GH0.tar.gz) = 373146 Added: head/net/nfs-ganesha/files/ganesha.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/files/ganesha.in Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,37 @@ +#!/bin/sh +# +# PROVIDE: ganesha +# REQUIRE: LOGIN +# KEYWORD: shutdown + +. /etc/rc.subr +name="ganesha" +rcvar=ganesha_enable + +command="/usr/local/bin/ganesha.nfsd" + +start_precmd="ganesha_checkmodules" +restart_precmd="ganesha_checkmodules" + +ganesha_checkmodules() { + list="getfhat fhreadlink fhlink setthreaduid setthreadgid setthreadgroups" + for module in $list; do + kldstat | grep -q $module + if [ $? -ne 0 ]; then + if [ -e "/boot/modules/${module}.ko" ]; then + kldload $module + if [ $? -ne 0 ]; then + echo "Could not load kernel module ${module}" + return 1 + fi + else + echo "Could not find kernel module ${module}" + return 1 + fi + fi + done + return 0 +} + +load_rc_config $name +run_rc_command $1 Added: head/net/nfs-ganesha/files/patch-src_os_freebsd_xattr.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/files/patch-src_os_freebsd_xattr.c Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,15 @@ +--- src/os/freebsd/xattr.c.orig 2018-08-10 21:04:37 UTC ++++ src/os/freebsd/xattr.c +@@ -27,8 +27,12 @@ + + #include <os/freebsd/xattr.h> + #include <sys/extattr.h> ++#include <sys/param.h> + ++ ++#ifndef EXTATTR_MAXNAMELEN + #define EXTATTR_MAXNAMELEN 255 ++#endif + + ssize_t fgetxattr(int fd, const char *name, void *value, size_t size) + { Added: head/net/nfs-ganesha/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/pkg-descr Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,4 @@ +NFS-Ganesha is an NFSv3,v4,v4.1 fileserver that runs in user mode. +It also supports the 9p.2000L protocol. + +WWW: https://github.com/nfs-ganesha/nfs-ganesha Added: head/net/nfs-ganesha/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nfs-ganesha/pkg-plist Tue Aug 28 11:59:46 2018 (r478302) @@ -0,0 +1,131 @@ +include/ntirpc/libc_private.h +include/ntirpc/version.h +include/ntirpc/intrinsic.h +include/ntirpc/rpcsvc/crypt.h +include/ntirpc/reentrant.h +include/ntirpc/getpeereid.h +include/ntirpc/un-namespace.h +include/ntirpc/fpmath.h +include/ntirpc/lttng/rpcping.h +include/ntirpc/lttng/xprt.h +include/ntirpc/misc/socket.h +include/ntirpc/misc/stdint.h +include/ntirpc/misc/stdio.h +include/ntirpc/misc/os_epoll.h +include/ntirpc/misc/portable.h +include/ntirpc/misc/rbtree_x.h +include/ntirpc/misc/bsd_epoll.h +include/ntirpc/misc/citycrc.h +include/ntirpc/misc/opr.h +include/ntirpc/misc/event.h +include/ntirpc/misc/city.h +include/ntirpc/misc/abstract_atomic.h +include/ntirpc/misc/queue.h +include/ntirpc/misc/wait_queue.h +include/ntirpc/misc/opr_queue.h +include/ntirpc/misc/timespec.h +include/ntirpc/misc/winpthreads.h +include/ntirpc/misc/rbtree.h +include/ntirpc/namespace.h +include/ntirpc/rpc/pmap_prot.h +include/ntirpc/rpc/rpc_com.h +include/ntirpc/rpc/xdr_inline.h +include/ntirpc/rpc/gss_internal.h +include/ntirpc/rpc/rpcb_prot.x +include/ntirpc/rpc/rpcb_prot.h +include/ntirpc/rpc/tirpc_compat.h +include/ntirpc/rpc/xdr.h +include/ntirpc/rpc/rpc_msg.h +include/ntirpc/rpc/svc_rqst.h +include/ntirpc/rpc/auth_inline.h +include/ntirpc/rpc/rpc_cksum.h +include/ntirpc/rpc/clnt.h +include/ntirpc/rpc/des_crypt.h +include/ntirpc/rpc/auth_stat.h +include/ntirpc/rpc/clnt_stat.h +include/ntirpc/rpc/xdr_ioq.h +include/ntirpc/rpc/auth_gss.h +include/ntirpc/rpc/rpcent.h +include/ntirpc/rpc/rpcb_clnt.h +include/ntirpc/rpc/rpc_err.h +include/ntirpc/rpc/svc.h +include/ntirpc/rpc/auth_unix.h +include/ntirpc/rpc/types.h +include/ntirpc/rpc/work_pool.h +include/ntirpc/rpc/des.h +include/ntirpc/rpc/pool_queue.h +include/ntirpc/rpc/nettype.h +include/ntirpc/rpc/auth.h +include/ntirpc/rpc/svc_auth.h +include/ntirpc/rpc/pmap_rmt.h +include/ntirpc/rpc/rpc.h +include/ntirpc/netconfig.h +bin/ganesha_stats +bin/ganesha_conf +bin/ganesha_mgr +bin/fake_recall +bin/get_clientids +bin/grace_period +bin/ganesha.nfsd +lib/libntirpc.so.1.7 +lib/libntirpc.so.1.7.0_rc1 +lib/libntirpc.so +lib/ganesha/libfsalmem.so.4 +lib/ganesha/libfsalnull.so +lib/ganesha/libfsaldummylustre.so +lib/ganesha/libfsalmem.so +lib/ganesha/libfsalvfs.so +lib/ganesha/libfsalmem.so.4.2.0 +lib/python2.7/site-packages/Ganesha/config_editor.pyc +lib/python2.7/site-packages/Ganesha/glib_dbus_stats.pyc +lib/python2.7/site-packages/Ganesha/glib_dbus_stats.py +lib/python2.7/site-packages/Ganesha/io_stats.py +lib/python2.7/site-packages/Ganesha/admin.py +lib/python2.7/site-packages/Ganesha/ganesha_mgr_utils.pyc +lib/python2.7/site-packages/Ganesha/admin.pyc +lib/python2.7/site-packages/Ganesha/QtUI/log_settings.py +lib/python2.7/site-packages/Ganesha/QtUI/__init__.py +lib/python2.7/site-packages/Ganesha/QtUI/exports_table.pyc +lib/python2.7/site-packages/Ganesha/QtUI/log_settings.pyc +lib/python2.7/site-packages/Ganesha/QtUI/exports_table.py +lib/python2.7/site-packages/Ganesha/QtUI/clients_table.pyc +lib/python2.7/site-packages/Ganesha/QtUI/__init__.pyc +lib/python2.7/site-packages/Ganesha/QtUI/clients_table.py +lib/python2.7/site-packages/Ganesha/io_stats.pyc +lib/python2.7/site-packages/Ganesha/__init__.py +lib/python2.7/site-packages/Ganesha/config_editor.py +lib/python2.7/site-packages/Ganesha/__init__.pyc +lib/python2.7/site-packages/Ganesha/export_mgr.py +lib/python2.7/site-packages/Ganesha/ganesha_mgr_utils.py +lib/python2.7/site-packages/Ganesha/log_mgr.py +lib/python2.7/site-packages/Ganesha/client_mgr.pyc +lib/python2.7/site-packages/Ganesha/log_mgr.pyc +lib/python2.7/site-packages/Ganesha/export_mgr.pyc +lib/python2.7/site-packages/Ganesha/client_mgr.py +lib/python2.7/site-packages/ganeshactl-2.7_rc1-py2.7.egg-info +libdata/pkgconfig/libntirpc.pc +share/doc/ganesha/config_samples/vfs.conf +share/doc/ganesha/config_samples/config.txt +share/doc/ganesha/config_samples/logrotate_ganesha +share/doc/ganesha/config_samples/gpfs.ganesha.exports.conf +share/doc/ganesha/config_samples/gpfs.ganesha.nfsd.conf +share/doc/ganesha/config_samples/ganesha.conf.example +share/doc/ganesha/config_samples/gpfs.ganesha.main.conf +share/doc/ganesha/config_samples/logrotate_fsal_gluster +share/doc/ganesha/config_samples/gluster.conf +share/doc/ganesha/config_samples/mem.conf +share/doc/ganesha/config_samples/gpfs.ganesha.log.conf +share/doc/ganesha/config_samples/export.txt +share/doc/ganesha/config_samples/ds.conf +share/doc/ganesha/config_samples/ceph.conf +share/doc/ganesha/config_samples/rgw.conf +share/doc/ganesha/config_samples/README +share/doc/ganesha/config_samples/logging.txt +share/doc/ganesha/config_samples/xfs.conf +share/doc/ganesha/config_samples/rgw_bucket.conf +share/doc/ganesha/config_samples/gpfs.conf +share/doc/ganesha/config_samples/proxy.conf +share/doc/ganesha/config_samples/lustre.conf +share/man/man8/ganesha_conf.8 +etc/ganesha/ganesha.conf +@dir var/run/ganesha
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808281159.w7SBxkCd094485>