From owner-svn-ports-all@freebsd.org Thu Jun 8 09:37:40 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B504BFAA82; Thu, 8 Jun 2017 09:37:40 +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 mx1.freebsd.org (Postfix) with ESMTPS id 1BBF97B18B; Thu, 8 Jun 2017 09:37:40 +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 v589bdr9001136; Thu, 8 Jun 2017 09:37:39 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v589bdwF001133; Thu, 8 Jun 2017 09:37:39 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201706080937.v589bdwF001133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 8 Jun 2017 09:37:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442910 - head/lang/gcc5-devel X-SVN-Group: ports-head 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.23 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: Thu, 08 Jun 2017 09:37:40 -0000 Author: gerald Date: Thu Jun 8 09:37:38 2017 New Revision: 442910 URL: https://svnweb.freebsd.org/changeset/ports/442910 Log: Update to the 20170606 snapshot of GCC 5.4.1. No longer default to building GCJ/libgcj on any platform, that is, option JAVA no longer is the default anywhere. lang/gcc5 retains this for the time beingand until the default version of GCC has switched to GCC 6, at which point lang/gcc6 (and lang/gcc6-devel) shall remain be the last port providing that. Adjust WWW reference in pkg-descr to https and avoid a trailing slash. Modified: head/lang/gcc5-devel/Makefile head/lang/gcc5-devel/distinfo head/lang/gcc5-devel/pkg-descr Modified: head/lang/gcc5-devel/Makefile ============================================================================== --- head/lang/gcc5-devel/Makefile Thu Jun 8 09:24:01 2017 (r442909) +++ head/lang/gcc5-devel/Makefile Thu Jun 8 09:37:38 2017 (r442910) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 5.4.1.s20170530 +PORTVERSION= 5.4.1.s20170606 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel @@ -46,9 +46,6 @@ OPTIONS_DEFINE_i386= JAVA OPTIONS_DEFINE_amd64= JAVA OPTIONS_DEFINE_powerpc64= JAVA OPTIONS_DEFAULT= BOOTSTRAP -OPTIONS_DEFAULT_i386= JAVA -OPTIONS_DEFAULT_amd64= JAVA -OPTIONS_DEFAULT_powerpc64= JAVA OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations Modified: head/lang/gcc5-devel/distinfo ============================================================================== --- head/lang/gcc5-devel/distinfo Thu Jun 8 09:24:01 2017 (r442909) +++ head/lang/gcc5-devel/distinfo Thu Jun 8 09:37:38 2017 (r442910) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496240115 -SHA256 (gcc-5-20170530.tar.xz) = fdbd8b683b1b6f0875e084aa041e87819b9b4385a8d7899e7c1e4b86b49831b0 -SIZE (gcc-5-20170530.tar.xz) = 73513828 +TIMESTAMP = 1496810155 +SHA256 (gcc-5-20170606.tar.xz) = 646ad9f3d87872b388c3e7b0cf584ab054bbf5e287731d368e826f15a32a61c1 +SIZE (gcc-5-20170606.tar.xz) = 69366112 Modified: head/lang/gcc5-devel/pkg-descr ============================================================================== --- head/lang/gcc5-devel/pkg-descr Thu Jun 8 09:24:01 2017 (r442909) +++ head/lang/gcc5-devel/pkg-descr Thu Jun 8 09:37:38 2017 (r442910) @@ -2,6 +2,6 @@ GCC, the GNU Compiler Collection, supports a number of port installs the C, C++, Fortran and Java front ends as gcc5, g++5, gfortran5, and gcj5, respectively. -WWW: http://gcc.gnu.org/ +WWW: https://gcc.gnu.org Gerald Pfeifer