From owner-svn-ports-head@freebsd.org Tue Dec 31 09:04:35 2019 Return-Path: Delivered-To: svn-ports-head@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 D21351F7A78; Tue, 31 Dec 2019 09:04:35 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 47n7fB6C97z44TX; Tue, 31 Dec 2019 09:04:34 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id B5B4733E1E; Tue, 31 Dec 2019 03:59:18 -0500 (EST) Received: from anthias (unknown [103.14.88.219]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 1DD5C33E1C; Tue, 31 Dec 2019 03:59:05 -0500 (EST) Date: Tue, 31 Dec 2019 18:58:49 +1000 (+10) From: Gerald Pfeifer To: Torsten Zuehlsdorff cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r521584 - head/Mk In-Reply-To: <5eadceb4-790d-21c3-e5db-cd5a27d8e5f4@toco-domains.de> Message-ID: References: <201912310306.xBV36oQM081788@repo.freebsd.org> <5eadceb4-790d-21c3-e5db-cd5a27d8e5f4@toco-domains.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 47n7fB6C97z44TX X-Spamd-Bar: ++++++++ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of gerald@pfeifer.com designates 209.68.5.143 as permitted sender) smtp.mailfrom=gerald@pfeifer.com X-Spamd-Result: default: False [8.89 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RECEIVED_SPAMHAUS_XBL(5.00)[219.88.14.103.khpj7ygk5idzvmvt5x4ziurxhy.zen.dq.spamhaus.net : 127.0.0.4]; RCPT_COUNT_THREE(0.00)[4]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(0.00)[+a:hamza.pair.com:c]; FROM_HAS_DN(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; SH_AUTHBL_RECEIVED(4.00)[219.88.14.103.khpj7ygk5idzvmvt5x4ziurxhy.authbl.dq.spamhaus.net : 127.0.0.20]; NEURAL_SPAM_MEDIUM(0.92)[0.922,0]; BAD_REP_POLICIES(0.10)[]; RCVD_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_SPAM_LONG(1.00)[0.999,0]; RCVD_IN_DNSWL_NONE(0.00)[143.5.68.209.list.dnswl.org : 127.0.10.0]; IP_SCORE(-2.03)[ip: (-7.11), ipnet: 209.68.0.0/18(-1.91), asn: 7859(-1.07), country: US(-0.05)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7859, ipnet:209.68.0.0/18, country:US]; RCVD_TLS_LAST(0.00)[]; GREYLIST(0.00)[pass,body]; RECEIVED_SPAMHAUS_PBL(0.00)[219.88.14.103.khpj7ygk5idzvmvt5x4ziurxhy.zen.dq.spamhaus.net : 127.0.0.11] X-Spam: Yes X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 31 Dec 2019 09:04:35 -0000 On Tue, 31 Dec 2019, Torsten Zuehlsdorff wrote: >> -# USE_GCC= 7+ # port requires GCC 7 or later. >> -# USE_GCC= 6 # port requires GCC 6. > You remove the USE_GCC= 7+ comment here, while 7 is still used later. Is > this intended? The idea was not to remove that example altogether, but update it to use a newer version. A simplified version of the commit looks as follows: -# USE_GCC= 7+ # port requires GCC 7 or later. +# USE_GCC= 9+ # port requires GCC 9 or later. The other example that referred to GCC 6 was mandatory to update since USE_GCC=6 is not supported any more; version 7 I could have left in, but figured pointing people to something newer would be better. In general the USE_GCC=X+ is mostly used for ports newer than the current default. Just with GCC_DEFAULT at 9, which is the newest release available, that was the highest choice available - until GCC 10 becomes available in spring. ;-) Would you prefer different examples in Mk/bsd.gcc.mk? Gerald