From owner-svn-doc-all@freebsd.org Tue Jun 14 14:17:45 2016 Return-Path: Delivered-To: svn-doc-all@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 72793AF2B87; Tue, 14 Jun 2016 14:17:45 +0000 (UTC) (envelope-from mat@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 284B726C6; Tue, 14 Jun 2016 14:17:45 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5EEHiIT063508; Tue, 14 Jun 2016 14:17:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5EEHiWN063507; Tue, 14 Jun 2016 14:17:44 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201606141417.u5EEHiWN063507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 14 Jun 2016 14:17:44 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r48925 - head/en_US.ISO8859-1/books/porters-handbook/makefiles X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 14:17:45 -0000 Author: mat Date: Tue Jun 14 14:17:44 2016 New Revision: 48925 URL: https://svnweb.freebsd.org/changeset/doc/48925 Log: Document the fact that group names should be restricted to a certain character class. PR: 210251 Sponsored by: Absolight Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Tue Jun 14 14:02:59 2016 (r48924) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Tue Jun 14 14:17:44 2016 (r48925) @@ -2106,6 +2106,14 @@ USE_GITHUB= yes CONFIGURE_ARGS, or whatever is needed so that the software builds correctly. + + As this is only syntastic sugar above + DISTFILES and + MASTER_SITES, the tag names must adhere + to the restrictions on group names outlined in + + Use of <varname>USE_GITHUB</varname> with Multiple Distribution Files @@ -2335,9 +2343,9 @@ EXTRACT_ONLY= source.tar.gzDISTFILES and PATCHFILES which allows files and patches to be postfixed with :n - identifiers. Here, n can be both - [0-9] and denote a group designation. For - example: + identifiers. Here, n can be any word + containing [0-9a-zA-Z_] and denote a group + designation. For example: DISTFILES= alpha:0 beta:1 @@ -2370,6 +2378,14 @@ EXTRACT_ONLY= source.tar.gz + + The group names cannot have dashes in them + (-), in fact, they cannot have any + characters out of the [a-zA-Z0-9_] range. + This is because, while &man.make.1; is ok with variable + names containing dashes, &man.sh.1; is not. + + Simplified Information