From owner-svn-src-projects@freebsd.org Tue Feb 9 16:58:56 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F127EAA31D6 for ; Tue, 9 Feb 2016 16:58:55 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1903676; Tue, 9 Feb 2016 16:58:55 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u19Gws0X088696; Tue, 9 Feb 2016 16:58:54 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u19GwpRt088658; Tue, 9 Feb 2016 16:58:51 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201602091658.u19GwpRt088658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 9 Feb 2016 16:58:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r295439 - in projects/release-pkg/bin: cat chflags chio chmod cp csh date dd df domainname echo ed expr freebsd-version getfacl hostname kenv kill ln ls mkdir mv pax pkill ps pwait pwd ... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Feb 2016 16:58:56 -0000 Author: gjb Date: Tue Feb 9 16:58:50 2016 New Revision: 295439 URL: https://svnweb.freebsd.org/changeset/base/295439 Log: Explicitly add unmarked bin/ binaries to the runtime package. Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate package, which requires pre-install/post-install scripts, to be added later. Sponsored by: The FreeBSD Foundation Modified: projects/release-pkg/bin/cat/Makefile projects/release-pkg/bin/chflags/Makefile projects/release-pkg/bin/chio/Makefile projects/release-pkg/bin/chmod/Makefile projects/release-pkg/bin/cp/Makefile projects/release-pkg/bin/csh/Makefile projects/release-pkg/bin/date/Makefile projects/release-pkg/bin/dd/Makefile projects/release-pkg/bin/df/Makefile projects/release-pkg/bin/domainname/Makefile projects/release-pkg/bin/echo/Makefile projects/release-pkg/bin/ed/Makefile projects/release-pkg/bin/expr/Makefile projects/release-pkg/bin/freebsd-version/Makefile projects/release-pkg/bin/getfacl/Makefile projects/release-pkg/bin/hostname/Makefile projects/release-pkg/bin/kenv/Makefile projects/release-pkg/bin/kill/Makefile projects/release-pkg/bin/ln/Makefile projects/release-pkg/bin/ls/Makefile projects/release-pkg/bin/mkdir/Makefile projects/release-pkg/bin/mv/Makefile projects/release-pkg/bin/pax/Makefile projects/release-pkg/bin/pkill/Makefile projects/release-pkg/bin/ps/Makefile projects/release-pkg/bin/pwait/Makefile projects/release-pkg/bin/pwd/Makefile projects/release-pkg/bin/realpath/Makefile projects/release-pkg/bin/rm/Makefile projects/release-pkg/bin/rmdir/Makefile projects/release-pkg/bin/setfacl/Makefile projects/release-pkg/bin/sh/Makefile projects/release-pkg/bin/sleep/Makefile projects/release-pkg/bin/stty/Makefile projects/release-pkg/bin/sync/Makefile projects/release-pkg/bin/test/Makefile projects/release-pkg/bin/uuidgen/Makefile Modified: projects/release-pkg/bin/cat/Makefile ============================================================================== --- projects/release-pkg/bin/cat/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/cat/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= cat .if ${MK_TESTS} != "no" Modified: projects/release-pkg/bin/chflags/Makefile ============================================================================== --- projects/release-pkg/bin/chflags/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/chflags/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +PACKAGE=runtime PROG= chflags .include Modified: projects/release-pkg/bin/chio/Makefile ============================================================================== --- projects/release-pkg/bin/chio/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/chio/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +PACKAGE=runtime PROG= chio .include Modified: projects/release-pkg/bin/chmod/Makefile ============================================================================== --- projects/release-pkg/bin/chmod/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/chmod/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= chmod .include Modified: projects/release-pkg/bin/cp/Makefile ============================================================================== --- projects/release-pkg/bin/cp/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/cp/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= cp SRCS= cp.c utils.c CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED -D_ACL_PRIVATE Modified: projects/release-pkg/bin/csh/Makefile ============================================================================== --- projects/release-pkg/bin/csh/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/csh/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -8,6 +8,7 @@ .include +PACKAGE=runtime TCSHDIR= ${.CURDIR}/../../contrib/tcsh .PATH: ${TCSHDIR} Modified: projects/release-pkg/bin/date/Makefile ============================================================================== --- projects/release-pkg/bin/date/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/date/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= date SRCS= date.c netdate.c vary.c Modified: projects/release-pkg/bin/dd/Makefile ============================================================================== --- projects/release-pkg/bin/dd/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/dd/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= dd SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c Modified: projects/release-pkg/bin/df/Makefile ============================================================================== --- projects/release-pkg/bin/df/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/df/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.3 (Berkeley) 5/8/95 # $FreeBSD$ +PACKAGE=runtime MOUNT= ${.CURDIR}/../../sbin/mount .PATH: ${MOUNT} Modified: projects/release-pkg/bin/domainname/Makefile ============================================================================== --- projects/release-pkg/bin/domainname/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/domainname/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= domainname .include Modified: projects/release-pkg/bin/echo/Makefile ============================================================================== --- projects/release-pkg/bin/echo/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/echo/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= echo .include Modified: projects/release-pkg/bin/ed/Makefile ============================================================================== --- projects/release-pkg/bin/ed/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/ed/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -2,6 +2,7 @@ .include +PACKAGE=runtime PROG= ed SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c LINKS= ${BINDIR}/ed ${BINDIR}/red Modified: projects/release-pkg/bin/expr/Makefile ============================================================================== --- projects/release-pkg/bin/expr/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/expr/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -2,6 +2,7 @@ .include +PACKAGE=runtime PROG= expr SRCS= expr.y YFLAGS= Modified: projects/release-pkg/bin/freebsd-version/Makefile ============================================================================== --- projects/release-pkg/bin/freebsd-version/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/freebsd-version/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime SCRIPTS = freebsd-version MAN = freebsd-version.1 CLEANFILES = freebsd-version freebsd-version.sh Modified: projects/release-pkg/bin/getfacl/Makefile ============================================================================== --- projects/release-pkg/bin/getfacl/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/getfacl/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= getfacl .include Modified: projects/release-pkg/bin/hostname/Makefile ============================================================================== --- projects/release-pkg/bin/hostname/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/hostname/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= hostname .include Modified: projects/release-pkg/bin/kenv/Makefile ============================================================================== --- projects/release-pkg/bin/kenv/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/kenv/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= kenv .include Modified: projects/release-pkg/bin/kill/Makefile ============================================================================== --- projects/release-pkg/bin/kill/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/kill/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= kill .include Modified: projects/release-pkg/bin/ln/Makefile ============================================================================== --- projects/release-pkg/bin/ln/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/ln/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.2 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= ln MAN= ln.1 symlink.7 Modified: projects/release-pkg/bin/ls/Makefile ============================================================================== --- projects/release-pkg/bin/ls/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/ls/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= ls SRCS= cmp.c ls.c print.c util.c LIBADD= xo util Modified: projects/release-pkg/bin/mkdir/Makefile ============================================================================== --- projects/release-pkg/bin/mkdir/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/mkdir/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= mkdir .include Modified: projects/release-pkg/bin/mv/Makefile ============================================================================== --- projects/release-pkg/bin/mv/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/mv/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= mv .if ${MK_TESTS} != "no" Modified: projects/release-pkg/bin/pax/Makefile ============================================================================== --- projects/release-pkg/bin/pax/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/pax/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -27,6 +27,7 @@ # regex routines and must define NET2_REGEX. # Pax may not compile if this not (un)defined properly. +PACKAGE=runtime PROG= pax SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \ gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \ Modified: projects/release-pkg/bin/pkill/Makefile ============================================================================== --- projects/release-pkg/bin/pkill/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/pkill/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= pkill LIBADD= kvm jail Modified: projects/release-pkg/bin/ps/Makefile ============================================================================== --- projects/release-pkg/bin/ps/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/ps/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/2/93 +PACKAGE=runtime PROG= ps SRCS= fmt.c keyword.c nlist.c print.c ps.c Modified: projects/release-pkg/bin/pwait/Makefile ============================================================================== --- projects/release-pkg/bin/pwait/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/pwait/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= pwait .include Modified: projects/release-pkg/bin/pwd/Makefile ============================================================================== --- projects/release-pkg/bin/pwd/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/pwd/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= pwd .include Modified: projects/release-pkg/bin/realpath/Makefile ============================================================================== --- projects/release-pkg/bin/realpath/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/realpath/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= realpath .include Modified: projects/release-pkg/bin/rm/Makefile ============================================================================== --- projects/release-pkg/bin/rm/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/rm/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= rm LINKS= ${BINDIR}/rm ${BINDIR}/unlink Modified: projects/release-pkg/bin/rmdir/Makefile ============================================================================== --- projects/release-pkg/bin/rmdir/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/rmdir/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= rmdir .include Modified: projects/release-pkg/bin/setfacl/Makefile ============================================================================== --- projects/release-pkg/bin/setfacl/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/setfacl/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= setfacl SRCS= file.c mask.c merge.c remove.c setfacl.c util.c Modified: projects/release-pkg/bin/sh/Makefile ============================================================================== --- projects/release-pkg/bin/sh/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/sh/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= sh INSTALLFLAGS= -S SHSRCS= alias.c arith_yacc.c arith_yylex.c cd.c echo.c error.c eval.c \ Modified: projects/release-pkg/bin/sleep/Makefile ============================================================================== --- projects/release-pkg/bin/sleep/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/sleep/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= sleep .if ${MK_TESTS} != "no" Modified: projects/release-pkg/bin/stty/Makefile ============================================================================== --- projects/release-pkg/bin/stty/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/stty/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= stty SRCS= cchar.c gfmt.c key.c modes.c print.c stty.c util.c Modified: projects/release-pkg/bin/sync/Makefile ============================================================================== --- projects/release-pkg/bin/sync/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/sync/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +PACKAGE=runtime PROG= sync MAN= sync.8 Modified: projects/release-pkg/bin/test/Makefile ============================================================================== --- projects/release-pkg/bin/test/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/test/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -3,6 +3,7 @@ .include +PACKAGE=runtime PROG= test LINKS= ${BINDIR}/test ${BINDIR}/[ MLINKS= test.1 [.1 Modified: projects/release-pkg/bin/uuidgen/Makefile ============================================================================== --- projects/release-pkg/bin/uuidgen/Makefile Tue Feb 9 16:56:35 2016 (r295438) +++ projects/release-pkg/bin/uuidgen/Makefile Tue Feb 9 16:58:50 2016 (r295439) @@ -1,5 +1,6 @@ # $FreeBSD$ +PACKAGE=runtime PROG= uuidgen .include