From owner-svn-ports-head@freebsd.org Sat Feb 22 11:12:42 2020 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 961EE238B9A; Sat, 22 Feb 2020 11:12:42 +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 48PlzY4vB9z3BwF; Sat, 22 Feb 2020 11:12:41 +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 E39F233E1B; Sat, 22 Feb 2020 06:12:34 -0500 (EST) Received: from anthias (unknown [77.118.146.182]) (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 24BC233E1A; Sat, 22 Feb 2020 06:12:34 -0500 (EST) Date: Sat, 22 Feb 2020 12:12:28 +0100 (CET) From: Gerald Pfeifer To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Antoine Brodin Subject: Re: svn commit: r526751 - head/Mk In-Reply-To: <202002221015.01MAF4uQ047966@repo.freebsd.org> Message-ID: References: <202002221015.01MAF4uQ047966@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 48PlzY4vB9z3BwF 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 [-4.37 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; R_SPF_ALLOW(-0.20)[+a:hamza.pair.com]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TO_DN_SOME(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; IP_SCORE(-2.07)[ip: (-7.03), ipnet: 209.68.0.0/18(-2.12), asn: 7859(-1.17), 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)[] 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: Sat, 22 Feb 2020 11:12:42 -0000 On Sat, 22 Feb 2020, Gerald Pfeifer wrote: > Log: > Significantly simplify the logic to determine which port (or base version) > of GCC to use based on the specification of USE_GCC. > > This is based on the observation that we now only have a single version > of GCC in base, namely GCC 4.2, which is not in ports any longer. And > we limit our choice to either the specific version requested or the > default version of GCC in the ports tree; i.e., we no longer consider > an installed port of any version in between (which is a fringe case > extremely few, if any, users would have experienced, and then only > outside a clean build environment in any case). > > Streamline some debugging output accordingly. > > Overall this removes some 25 lines of largely complex logic. Oops, I missed: PR: 244008 Tested by: antoine (exp-run) ...and a big thanks to Antoine! Gerald