From owner-svn-ports-head@freebsd.org Sat Apr 27 22:27:53 2019 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 2D146159EF68; Sat, 27 Apr 2019 22:27:53 +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 D1F0E70D67; Sat, 27 Apr 2019 22:27:51 +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 D3FC233E02; Sat, 27 Apr 2019 18:27:44 -0400 (EDT) Received: from [192.168.1.159] (unknown [112.78.38.211]) (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 3B43533E01; Sat, 27 Apr 2019 18:27:42 -0400 (EDT) Date: Sun, 28 Apr 2019 06:27:39 +0800 (WITA) From: Gerald Pfeifer To: Marcelo Araujo cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r499851 - in head/sysutils: . uefi-edk2-bhyve-devel uefi-edk2-bhyve-devel/files In-Reply-To: <201904241449.x3OEnRCv086599@repo.freebsd.org> Message-ID: References: <201904241449.x3OEnRCv086599@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: D1F0E70D67 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; 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.59 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,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(-1.52)[ip: (-6.28), ipnet: 209.68.0.0/18(-0.64), asn: 7859(-0.61), country: US(-0.06)]; MX_GOOD(-0.01)[mailwash29.pair.com]; NEURAL_HAM_SHORT(-0.76)[-0.758,0]; 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, 27 Apr 2019 22:27:53 -0000 On Wed, 24 Apr 2019, Marcelo Araujo wrote: > - Add a devel version of edk2-bhyve based on the newest stable201903 branch. This is cool! > Added: head/sysutils/uefi-edk2-bhyve-devel/Makefile > ============================================================================== > +USE_GCC= 8+ I notice this uses a modern version of GCC, whereas uefi-edk2-bhyve is stuck with USE_GCC=4.8 as one of only two ports requiring this ancient version of GCC. So thank for working on this update! When do you think uefi-edk2-bhyve can be switched over? > +RUN_DEPENDS:= ${RUN_DEPENDS:Ngcc*} I'll shortly have an update that will allow us to simplify that. Makes your life a bit easier. :-) Gerald