From owner-svn-ports-all@freebsd.org Fri Jun 14 17:55:45 2019 Return-Path: <owner-svn-ports-all@freebsd.org> Delivered-To: svn-ports-all@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 0C04D15ADF64; Fri, 14 Jun 2019 17:55:45 +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 9C38F73525; Fri, 14 Jun 2019 17:55:44 +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 3B62733EFE; Fri, 14 Jun 2019 13:55:38 -0400 (EDT) Received: from anthias.microfocus.com (charybdis-ext.suse.de [195.135.221.2]) (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 8BFE733EFD; Fri, 14 Jun 2019 13:55:37 -0400 (EDT) Date: Fri, 14 Jun 2019 19:55:32 +0200 (CEST) From: Gerald Pfeifer <gerald@pfeifer.com> To: Cy Schubert <Cy.Schubert@cschubert.com>, Alexey Dokuchaev <danfe@freebsd.org> cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504198 - head/Mk In-Reply-To: <20190614165425.GA42674@FreeBSD.org> Message-ID: <alpine.LSU.2.21.1906141932170.3441@anthias.pfeifer.com> References: <201906141610.x5EGAdnN049103@repo.freebsd.org> <F69E23F2-E526-4B3F-95EB-1786222C2D61@cschubert.com> <20190614165425.GA42674@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 9C38F73525 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.987,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/> List-Post: <mailto:svn-ports-all@freebsd.org> List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Fri, 14 Jun 2019 17:55:45 -0000 On Fri, 14 Jun 2019, Cy Schubert wrote: > Does anything still depend on gcc49, 5 or 6 anymore? Yes and no. lang/gcc49 was pruned end of April, but lang/gcc48, which is even older, is still in use by two ports, though at least one is being worked on. I actually have a script running twice a week which checks such dependencies. Here is its relevant output: 2 refer to GCC 4.8. sysutils/memtest86+/Makefile:USE_GCC= 4.8 sysutils/uefi-edk2-bhyve/Makefile:USE_GCC= 4.8 0 refer to GCC 5. 1 refer to GCC 6. print/pdftk/Makefile:USE_GCC= 6 On Fri, 14 Jun 2019, Alexey Dokuchaev wrote: > IDK, but I'm very grateful to Gerald for that he does not prune those > actual ports from the tree. I'm still happily using GCC 4.8/5 as my > default USE_GCC ports since they works just fine. You're welcome, Alexey. Though the problem is users (!= danfe) who sometimes use those older versions and then report all sorts of interesting challenges. Gerald