From owner-svn-ports-head@freebsd.org Thu May 31 11:37:33 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 18D50F74E9C; Thu, 31 May 2018 11:37:33 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (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 B6BF97F495; Thu, 31 May 2018 11:37:32 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 9B0FA12540E; Thu, 31 May 2018 07:37:25 -0400 (EDT) Received: from anthias (vie-188-118-240-174.dsl.sil.at [188.118.240.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id BA4155C1BE; Thu, 31 May 2018 07:37:24 -0400 (EDT) Date: Thu, 31 May 2018 13:37:23 +0200 (CEST) From: Gerald Pfeifer To: Eric Turgeon cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r471043 - head/lang/gcc6-aux In-Reply-To: <201805281420.w4SEKNQX028529@repo.freebsd.org> Message-ID: References: <201805281420.w4SEKNQX028529@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII 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: Thu, 31 May 2018 11:37:33 -0000 On Mon, 28 May 2018, Eric Turgeon wrote: > Log: > Update gcc6-aux to 6.5.0 and fix i386 Nice. > Modified: head/lang/gcc6-aux/Makefile.version > ============================================================================== > -MAIN_PR= 1 > -UTIL_PR= 1 > -ARMV7_PR= 2 > -ARM64_PR= 3 > -X86_PR= 2 > +MAIN_PR= 0 > +UTIL_PR= 0 > +ARMV7_PR= 0 > +ARM64_PR= 0 > +X86_PR= 0 I know this predates your engagement, but would you consider simplifying this to just PORTREVISION across the board? This elaborate scheme being used here really does not work with PORTREVISION bumps, and is overly complicated overall (whereas nearly everywhere in the tree we simply use PORTREVISION) for what appears moderate benefit (a few rebuilds saved). Gerald