svn commit: r468069 - in branches/2018Q2/devel: aarch64-none-elf-gcc arm-none-eabi-gcc powerpc64-gcc

Kyle Evans kevans at FreeBSD.org
Mon Apr 23 01:25:54 UTC 2018


Author: kevans (src committer)
Date: Mon Apr 23 01:25:53 2018
New Revision: 468069
URL: https://svnweb.freebsd.org/changeset/ports/468069

Log:
  MFH: r467716
  
  Fix arm-none-eabi-gcc/aarch64-none-elf-gcc plist after r466699
  
  jhb fixed these ports in r466699, but include-fixed headers has changed
  since the last update, perhaps due to --sysroot and these ports being built
  differently since then.
  
  Add the extra headers to the plist and bump PORTREVISION due to package
  differences. This fixes some sanity checking in the plist, since these files
  are installed to the stage dir.
  
  Reported by:	Phillip R. Jaenke <prj at rootwyrm.com>
  Approved by:	ler (ports)
  
  Approved by:	ports-secteam (riggs)

Modified:
  branches/2018Q2/devel/aarch64-none-elf-gcc/pkg-plist
  branches/2018Q2/devel/arm-none-eabi-gcc/pkg-plist
  branches/2018Q2/devel/powerpc64-gcc/Makefile
Directory Properties:
  branches/2018Q2/   (props changed)

Modified: branches/2018Q2/devel/aarch64-none-elf-gcc/pkg-plist
==============================================================================
--- branches/2018Q2/devel/aarch64-none-elf-gcc/pkg-plist	Mon Apr 23 00:33:54 2018	(r468068)
+++ branches/2018Q2/devel/aarch64-none-elf-gcc/pkg-plist	Mon Apr 23 01:25:53 2018	(r468069)
@@ -20,9 +20,21 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/ilp32/crti.o
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/ilp32/crtn.o
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/ilp32/libgcc.a
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/ilp32/libgcov.a
-lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/README
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/limits.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_fil.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_lookup.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_nat.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_proxy.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_scan.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_state.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/README
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stddef.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stdio.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stdlib.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/sys/types.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/syslimits.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/unistd.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/wchar.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/arm_acle.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/arm_neon.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/float.h

Modified: branches/2018Q2/devel/arm-none-eabi-gcc/pkg-plist
==============================================================================
--- branches/2018Q2/devel/arm-none-eabi-gcc/pkg-plist	Mon Apr 23 00:33:54 2018	(r468068)
+++ branches/2018Q2/devel/arm-none-eabi-gcc/pkg-plist	Mon Apr 23 01:25:53 2018	(r468069)
@@ -13,9 +13,21 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/crtend.o
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/crtfastmath.o
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/crti.o
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/crtn.o
-lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/README
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/limits.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_fil.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_lookup.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_nat.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_proxy.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_scan.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/netinet/ip_state.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/README
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stddef.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stdio.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/stdlib.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/sys/types.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/syslimits.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/unistd.h
+lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include-fixed/wchar.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/arm_acle.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/arm_neon.h
 lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/include/float.h

Modified: branches/2018Q2/devel/powerpc64-gcc/Makefile
==============================================================================
--- branches/2018Q2/devel/powerpc64-gcc/Makefile	Mon Apr 23 00:33:54 2018	(r468068)
+++ branches/2018Q2/devel/powerpc64-gcc/Makefile	Mon Apr 23 01:25:53 2018	(r468069)
@@ -2,7 +2,7 @@
 
 PORTNAME=	gcc
 PORTVERSION=	6.3.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	devel
 MASTER_SITES=	GCC/releases/gcc-${DISTVERSION}
 PKGNAMEPREFIX?=	powerpc64-


More information about the svn-ports-all mailing list