From owner-svn-ports-all@freebsd.org Sun Oct 7 06:08:46 2018 Return-Path: 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 64EE810B2F35; Sun, 7 Oct 2018 06:08:46 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06C0C75BEF; Sun, 7 Oct 2018 06:08:46 +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 E72DD100B1; Sun, 7 Oct 2018 06:08:45 +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 w9768jtP066352; Sun, 7 Oct 2018 06:08:45 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9768jDo066349; Sun, 7 Oct 2018 06:08:45 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201810070608.w9768jDo066349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 7 Oct 2018 06:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481429 - in head/lang/gcc7-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: in head/lang/gcc7-devel: . files X-SVN-Commit-Revision: 481429 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.27 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, 07 Oct 2018 06:08:46 -0000 Author: gerald Date: Sun Oct 7 06:08:44 2018 New Revision: 481429 URL: https://svnweb.freebsd.org/changeset/ports/481429 Log: Update to the 20181004 snapshot of GCC 7.3.1. Add a partial fix for what was reported in PR 231804, the part that's actually relevant upstream and that I made there, cf. https://gcc.gnu.org/ml/gcc-patches/2018-10/msg00076.html as a new local patch files/patch-libgfortran until I have backported this to the upstream release branch and hence we get it via the weekly snapshots. PR: 231804 Added: head/lang/gcc7-devel/files/patch-libgfortran (contents, props changed) Modified: head/lang/gcc7-devel/Makefile head/lang/gcc7-devel/distinfo Modified: head/lang/gcc7-devel/Makefile ============================================================================== --- head/lang/gcc7-devel/Makefile Sun Oct 7 05:15:22 2018 (r481428) +++ head/lang/gcc7-devel/Makefile Sun Oct 7 06:08:44 2018 (r481429) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 7.3.1.s20180927 +PORTVERSION= 7.3.1.s20181004 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc7-devel/distinfo ============================================================================== --- head/lang/gcc7-devel/distinfo Sun Oct 7 05:15:22 2018 (r481428) +++ head/lang/gcc7-devel/distinfo Sun Oct 7 06:08:44 2018 (r481429) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538170254 -SHA256 (gcc-7-20180927.tar.xz) = 5cfeb7288afa6f3bb753c2e049789ed95744a63c4dcb1946ccbc32ab1830cb7f -SIZE (gcc-7-20180927.tar.xz) = 59295408 +TIMESTAMP = 1538848882 +SHA256 (gcc-7-20181004.tar.xz) = 0e8de3aa780b947465c0619bb947a028c7ebfa3853f48dad0d7e6bcfc595b18e +SIZE (gcc-7-20181004.tar.xz) = 59298276 Added: head/lang/gcc7-devel/files/patch-libgfortran ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc7-devel/files/patch-libgfortran Sun Oct 7 06:08:44 2018 (r481429) @@ -0,0 +1,19 @@ +2018-10-02 Gerald Pfeifer + + * io/close.c [!HAVE_UNLINK_OPEN_FILE]: Include . + +--- UTC +Index: libgfortran/io/close.c +=================================================================== +--- libgfortran/io/close.c (revision 264799) ++++ libgfortran/io/close.c (revision 264800) +@@ -26,6 +26,9 @@ see the files COPYING3 and COPYING.RUNTIME respect + #include "unix.h" + #include "async.h" + #include ++#if !HAVE_UNLINK_OPEN_FILE ++#include ++#endif + + typedef enum + { CLOSE_DELETE, CLOSE_KEEP, CLOSE_UNSPECIFIED }