Date: Fri, 14 Apr 2017 20:50:33 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438545 - in head/lang: gcc gcc46 gcc47 gcc48 gcc49 gcc5 gcc5-devel gcc6 gcc6-devel Message-ID: <201704142050.v3EKoXdO030523@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Fri Apr 14 20:50:32 2017 New Revision: 438545 URL: https://svnweb.freebsd.org/changeset/ports/438545 Log: - Fix shebang Approved by: gerald (maintainer via mail) Modified: head/lang/gcc/Makefile head/lang/gcc46/Makefile head/lang/gcc47/Makefile head/lang/gcc48/Makefile head/lang/gcc49/Makefile head/lang/gcc5-devel/Makefile head/lang/gcc5/Makefile head/lang/gcc6-devel/Makefile head/lang/gcc6/Makefile Modified: head/lang/gcc/Makefile ============================================================================== --- head/lang/gcc/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.4.0 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} @@ -46,6 +47,9 @@ OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc46/Makefile ============================================================================== --- head/lang/gcc46/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc46/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.6.4 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${PORTVERSION} @@ -45,6 +45,9 @@ OPTIONS_DEFAULT_amd64= JAVA OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .include <bsd.port.pre.mk> .if ${ARCH} == "amd64" Modified: head/lang/gcc47/Makefile ============================================================================== --- head/lang/gcc47/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc47/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.7.4 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${PORTVERSION} @@ -45,6 +45,9 @@ OPTIONS_DEFAULT_amd64= JAVA OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .include <bsd.port.pre.mk> .if ${ARCH} == "amd64" Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc48/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.8.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${PORTVERSION} PKGNAMESUFFIX= ${SUFFIX} @@ -45,6 +45,9 @@ OPTIONS_DEFAULT_amd64= JAVA OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc49/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.9.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} @@ -46,6 +46,9 @@ OPTIONS_DEFAULT_amd64= JAVA OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc5-devel/Makefile ============================================================================== --- head/lang/gcc5-devel/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc5-devel/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.4.1.s20170411 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} DISTNAME= gcc-${DIST_VERSION} @@ -53,6 +54,9 @@ OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc5/Makefile ============================================================================== --- head/lang/gcc5/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc5/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 5.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} @@ -46,6 +46,9 @@ OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations +JAVA_USES= python:build shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc6-devel/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -32,7 +32,7 @@ CPE_VERSION= ${GCC_VERSION} # Y.2.1.s20140817 results in values of Y-20140817, Y.2.1, and Y # for these three. DIST_VERSION= ${PORTVERSION:C/([0-9]+).*\.s([0-9]+)/\1-\2/} -PORTREVISION= 1 +PORTREVISION= 2 GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} ONLY_FOR_ARCHS= aarch64 amd64 i386 powerpc powerpc64 sparc64 arm armv6 @@ -53,6 +53,9 @@ OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations +JAVA_USES= python shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB Modified: head/lang/gcc6/Makefile ============================================================================== --- head/lang/gcc6/Makefile Fri Apr 14 20:47:47 2017 (r438544) +++ head/lang/gcc6/Makefile Fri Apr 14 20:50:32 2017 (r438545) @@ -3,7 +3,7 @@ PORTNAME= gcc PORTVERSION= 6.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} @@ -46,6 +46,9 @@ OPTIONS_EXCLUDE_DragonFly= JAVA BOOTSTRAP_DESC= Build using a full bootstrap GRAPHITE_DESC= Support for Graphite loop optimizations +JAVA_USES= python shebangfix +SHEBANG_FILES= libjava/contrib/aot-compile.in + .if exists(/usr/lib32/libc.so) OPTIONS_DEFINE_powerpc64+= MULTILIB OPTIONS_DEFAULT_powerpc64+= MULTILIB
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704142050.v3EKoXdO030523>