From owner-svn-ports-head@freebsd.org Sat Jun 2 08:04:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0639BFD5CDC; Sat, 2 Jun 2018 08:04:00 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC61B73C0C; Sat, 2 Jun 2018 08:03:59 +0000 (UTC) (envelope-from gerald@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8EA375205; Sat, 2 Jun 2018 08:03:59 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5283xoF089700; Sat, 2 Jun 2018 08:03:59 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5283xNh089699; Sat, 2 Jun 2018 08:03:59 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201806020803.w5283xNh089699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 2 Jun 2018 08:03:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471347 - head/Mk X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/Mk X-SVN-Commit-Revision: 471347 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2018 08:04:00 -0000 Author: gerald Date: Sat Jun 2 08:03:59 2018 New Revision: 471347 URL: https://svnweb.freebsd.org/changeset/ports/471347 Log: Document the form USE_GCC=X+ instead of the older form USE_GCC=X.Y+ that has been necessary for the GCC 4.x series and should not see any new usage anways. Use more current versions of GCC in examples, choosing the two most realistic options. Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sat Jun 2 08:02:15 2018 (r471346) +++ head/Mk/bsd.gcc.mk Sat Jun 2 08:03:59 2018 (r471347) @@ -14,15 +14,15 @@ # # If your port needs a specific (minimum) version of GCC, you can easily # specify that with a USE_GCC= statement. Unless absolutely necessary -# do so by specifying USE_GCC=X.Y+ which requests at least GCC version -# X.Y. To request a specific version omit the trailing + sign. +# do so by specifying USE_GCC=X+ which requests at least GCC version X. +# To request a specific version omit the trailing + sign. # # Examples: # USE_GCC= yes # port requires a current version of GCC # # as defined in bsd.default-versions.mk. # USE_GCC= any # port requires GCC 4.2 or later. -# USE_GCC= 6+ # port requires GCC 6 or later. -# USE_GCC= 4.9 # port requires GCC 4.9. +# USE_GCC= 7+ # port requires GCC 7 or later. +# USE_GCC= 5 # port requires GCC 5. # # If you are wondering what your port exactly does, use "make test-gcc" # to see some debugging.