From owner-dev-commits-src-branches@freebsd.org Wed Jun 30 07:25:03 2021 Return-Path: Delivered-To: dev-commits-src-branches@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 EFE5965E81A; Wed, 30 Jun 2021 07:25:02 +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 4GFCXt2x8Lz4dZp; Wed, 30 Jun 2021 07:25:02 +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 0E93F5FE; Wed, 30 Jun 2021 07:25:02 +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 15U7P1YZ084314; Wed, 30 Jun 2021 07:25:01 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15U7P1xY084313; Wed, 30 Jun 2021 07:25:01 GMT (envelope-from git) Date: Wed, 30 Jun 2021 07:25:01 GMT Message-Id: <202106300725.15U7P1xY084313@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: Emmanuel Vadot Subject: git: 624d52af5b36 - stable/13 - pkgbase: Create a FreeBSD-nfs package MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: manu X-Git-Repository: src X-Git-Refname: refs/heads/stable/13 X-Git-Reftype: branch X-Git-Commit: 624d52af5b364388d9ff11117df985cfd4c0415d Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the stable branches of the FreeBSD src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jun 2021 07:25:03 -0000 The branch stable/13 has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=624d52af5b364388d9ff11117df985cfd4c0415d commit 624d52af5b364388d9ff11117df985cfd4c0415d Author: Emmanuel Vadot AuthorDate: 2021-06-19 15:49:50 +0000 Commit: Emmanuel Vadot CommitDate: 2021-06-30 07:24:32 +0000 pkgbase: Create a FreeBSD-nfs package And move all the nfs related commands there. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D30754 Sponsored by: Diablotin Systems --- libexec/rpc.rquotad/Makefile | 2 ++ release/packages/Makefile.package | 2 ++ usr.bin/nfsstat/Makefile | 2 ++ usr.sbin/clear_locks/Makefile | 2 ++ usr.sbin/nfscbd/Makefile | 2 ++ usr.sbin/nfsd/Makefile | 2 ++ usr.sbin/nfsdumpstate/Makefile | 2 ++ usr.sbin/nfsrevoke/Makefile | 2 ++ usr.sbin/nfsuserd/Makefile | 2 ++ usr.sbin/pnfsdscopymr/Makefile | 2 ++ usr.sbin/pnfsdsfile/Makefile | 2 ++ usr.sbin/pnfsdskill/Makefile | 2 ++ usr.sbin/rpc.lockd/Makefile | 2 ++ usr.sbin/rpc.umntall/Makefile | 2 ++ 14 files changed, 28 insertions(+) diff --git a/libexec/rpc.rquotad/Makefile b/libexec/rpc.rquotad/Makefile index 21cb45d18ad0..52f302e0f00b 100644 --- a/libexec/rpc.rquotad/Makefile +++ b/libexec/rpc.rquotad/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG = rpc.rquotad SRCS = rquotad.c MAN = rpc.rquotad.8 diff --git a/release/packages/Makefile.package b/release/packages/Makefile.package index 459dfdabf590..eef58af542e4 100644 --- a/release/packages/Makefile.package +++ b/release/packages/Makefile.package @@ -59,6 +59,8 @@ kernel_COMMENT= FreeBSD Kernel kernel_DESC= FreeBSD Kernel manuals_COMMENT= Manual Pages manuals_DESC= Manual Pages +nfs_COMMENT= NFS Utilities +nfs_DESC= NFS Utilities openssl_COMMENT= OpenSSL Library and Utility openssl_DESC= OpenSSL Library and Utility rc_COMMENT= RC Scripts diff --git a/usr.bin/nfsstat/Makefile b/usr.bin/nfsstat/Makefile index 76b701f73c7d..0e5d53a95dde 100644 --- a/usr.bin/nfsstat/Makefile +++ b/usr.bin/nfsstat/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +PACKAGE= nfs + PROG= nfsstat CFLAGS+=-DNFS diff --git a/usr.sbin/clear_locks/Makefile b/usr.sbin/clear_locks/Makefile index 6906bf0c7e8a..a9355ed2ba29 100644 --- a/usr.sbin/clear_locks/Makefile +++ b/usr.sbin/clear_locks/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= clear_locks MAN= clear_locks.8 LIBADD= rpcsvc diff --git a/usr.sbin/nfscbd/Makefile b/usr.sbin/nfscbd/Makefile index 1e11e3a81711..668914a88154 100644 --- a/usr.sbin/nfscbd/Makefile +++ b/usr.sbin/nfscbd/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= nfscbd MAN= nfscbd.8 diff --git a/usr.sbin/nfsd/Makefile b/usr.sbin/nfsd/Makefile index 592a1e429cc7..e9d9b31fd168 100644 --- a/usr.sbin/nfsd/Makefile +++ b/usr.sbin/nfsd/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ +PACKAGE= nfs + PROG= nfsd MAN= nfsd.8 nfsv4.4 stablerestart.5 pnfs.4 pnfsserver.4 diff --git a/usr.sbin/nfsdumpstate/Makefile b/usr.sbin/nfsdumpstate/Makefile index 66dd94a71f4a..49f14d7ba4ab 100644 --- a/usr.sbin/nfsdumpstate/Makefile +++ b/usr.sbin/nfsdumpstate/Makefile @@ -2,6 +2,8 @@ .include +PACKAGE= nfs + PROG= nfsdumpstate MAN= nfsdumpstate.8 diff --git a/usr.sbin/nfsrevoke/Makefile b/usr.sbin/nfsrevoke/Makefile index ab78aa3300c3..3583d5e8a67a 100644 --- a/usr.sbin/nfsrevoke/Makefile +++ b/usr.sbin/nfsrevoke/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= nfsrevoke MAN= nfsrevoke.8 diff --git a/usr.sbin/nfsuserd/Makefile b/usr.sbin/nfsuserd/Makefile index aef51aa4c54d..c8a3553191a7 100644 --- a/usr.sbin/nfsuserd/Makefile +++ b/usr.sbin/nfsuserd/Makefile @@ -2,6 +2,8 @@ .include +PACKAGE= nfs + PROG= nfsuserd MAN= nfsuserd.8 WARNS?= 3 diff --git a/usr.sbin/pnfsdscopymr/Makefile b/usr.sbin/pnfsdscopymr/Makefile index 9fd3952198f6..4cefca6af690 100644 --- a/usr.sbin/pnfsdscopymr/Makefile +++ b/usr.sbin/pnfsdscopymr/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= pnfsdscopymr MAN= pnfsdscopymr.8 diff --git a/usr.sbin/pnfsdsfile/Makefile b/usr.sbin/pnfsdsfile/Makefile index 83d82eb6ec69..2a85baf33fc1 100644 --- a/usr.sbin/pnfsdsfile/Makefile +++ b/usr.sbin/pnfsdsfile/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= pnfsdsfile MAN= pnfsdsfile.8 diff --git a/usr.sbin/pnfsdskill/Makefile b/usr.sbin/pnfsdskill/Makefile index 603ab18a4167..49b1c3b00d67 100644 --- a/usr.sbin/pnfsdskill/Makefile +++ b/usr.sbin/pnfsdskill/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PACKAGE= nfs + PROG= pnfsdskill MAN= pnfsdskill.8 diff --git a/usr.sbin/rpc.lockd/Makefile b/usr.sbin/rpc.lockd/Makefile index db812a6c48fd..71c68a2d0ced 100644 --- a/usr.sbin/rpc.lockd/Makefile +++ b/usr.sbin/rpc.lockd/Makefile @@ -1,6 +1,8 @@ # $NetBSD: Makefile,v 1.12 2000/08/07 16:23:31 thorpej Exp $ # $FreeBSD$ +PACKAGE= nfs + PROG= rpc.lockd MAN= rpc.lockd.8 MLINKS= rpc.lockd.8 lockd.8 diff --git a/usr.sbin/rpc.umntall/Makefile b/usr.sbin/rpc.umntall/Makefile index fc4a3998c07c..c44441a6de1a 100644 --- a/usr.sbin/rpc.umntall/Makefile +++ b/usr.sbin/rpc.umntall/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.4 (Berkeley) 6/22/95 # $FreeBSD$ +PACKAGE= nfs + PROG= rpc.umntall MAN= rpc.umntall.8 SRCS= rpc.umntall.c mounttab.c