From owner-svn-ports-all@freebsd.org Sun Nov 15 22:21:19 2020 Return-Path: Delivered-To: svn-ports-all@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 252CE46B6C3; Sun, 15 Nov 2020 22:21:19 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZ69q0cKXz3ntH; Sun, 15 Nov 2020 22:21:19 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0365923650; Sun, 15 Nov 2020 22:21:19 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AFMLIY1090308; Sun, 15 Nov 2020 22:21:18 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFMLINF090307; Sun, 15 Nov 2020 22:21:18 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <202011152221.0AFMLINF090307@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 15 Nov 2020 22:21:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555437 - head/lang/gcc48 X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/lang/gcc48 X-SVN-Commit-Revision: 555437 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 22:21:19 -0000 Author: gerald Date: Sun Nov 15 22:21:18 2020 New Revision: 555437 URL: https://svnweb.freebsd.org/changeset/ports/555437 Log: Resign as maintainer of this port of GCC 4.8 which has been unsupported upstream since 2015 and marked deprecated for three years now. sysutils/memtest86+ and sysutils/uefi-edk2-bhyve are two remaining users in the entire ports tree which hopefully will be converted at one point. On the way refer to GCC 10 instead of GCC 9 for a recommended update. And move the USES block earlier in the Makefile as newer GCC ports do to honor our coding standards (and pet portlint). Modified: head/lang/gcc48/Makefile Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Sun Nov 15 22:18:56 2020 (r555436) +++ head/lang/gcc48/Makefile Sun Nov 15 22:21:18 2020 (r555437) @@ -3,18 +3,18 @@ PORTNAME= gcc PORTVERSION= 4.8.5 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= lang MASTER_SITES= GCC PKGNAMESUFFIX= ${SUFFIX} -MAINTAINER= gerald@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GNU Compiler Collection 4.8 LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi -DEPRECATED= Unsupported by upstream. Use GCC 9 or newer instead. +DEPRECATED= Unsupported by upstream since 2015. Use GCC 10 or newer instead. ONLY_FOR_ARCHS= amd64 i386 LIB_DEPENDS= libgmp.so:math/gmp \ @@ -22,18 +22,18 @@ LIB_DEPENDS= libgmp.so:math/gmp \ libmpc.so:math/mpc BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils RUN_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils - .if defined(MAINTAINER_MODE) BUILD_DEPENDS+= runtest:misc/dejagnu .endif +USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 +USE_BINUTILS= yes +USE_PERL5= build + CPE_VENDOR= gnu GCC_VERSION= ${PORTVERSION} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} -USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:bzip2 -USE_BINUTILS= yes -USE_PERL5= build SSP_UNSAFE= yes CFLAGS:= ${CFLAGS:N-march=haswell:N-march=ivybridge:N-march=westmere:N-mretpoline} CXXFLAGS:= ${CXXFLAGS:N-march=haswell:N-march=ivybridge:N-march=westmere:N-mretpoline}