[125286] trunk/dports/cross/arm-none-linux-gnueabi-gcc

mf2k at macports.org mf2k at macports.org
Fri Sep 12 12:27:00 PDT 2014


Revision: 125286
          https://trac.macports.org/changeset/125286
Author:   mf2k at macports.org
Date:     2014-09-12 12:27:00 -0700 (Fri, 12 Sep 2014)
Log Message:
-----------
arm-none-linux-gnueabi-gcc: Add maintainer. Fix patchfile name. (#44962)

Modified Paths:
--------------
    trunk/dports/cross/arm-none-linux-gnueabi-gcc/Portfile

Added Paths:
-----------
    trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/patch-c-parse.in.diff

Removed Paths:
-------------
    trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/c-parse.in.patch

Modified: trunk/dports/cross/arm-none-linux-gnueabi-gcc/Portfile
===================================================================
--- trunk/dports/cross/arm-none-linux-gnueabi-gcc/Portfile	2014-09-12 19:22:34 UTC (rev 125285)
+++ trunk/dports/cross/arm-none-linux-gnueabi-gcc/Portfile	2014-09-12 19:27:00 UTC (rev 125286)
@@ -18,7 +18,7 @@
 platforms       	darwin
 categories      	cross devel
 license         	GPL-2+
-maintainers     	nomaintainer
+maintainers     	gmail.com:stuartwesterman openmaintainer
 master_sites		macports:pguyot
 distfiles			gcc-${version}.tar.bz2
 worksrcdir			gcc-${gccversion}
@@ -52,7 +52,7 @@
 				RANLIB_FOR_TARGET=${crossgcc-target}-ranlib]
 
 # fix bad yacc code, ticket #28296
-patchfiles      c-parse.in.patch
+patchfiles      patch-c-parse.in.diff
 
 # Build in a different directory, as advised in the README file.
 pre-configure   {

Deleted: trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/c-parse.in.patch
===================================================================
--- trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/c-parse.in.patch	2014-09-12 19:22:34 UTC (rev 125285)
+++ trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/c-parse.in.patch	2014-09-12 19:27:00 UTC (rev 125286)
@@ -1,35 +0,0 @@
---- gcc/c-parse.in	2009/03/22 05:10:22	23
-+++ gcc/c-parse.in	2009/04/13 17:05:33	24
-@@ -1730,7 +1730,7 @@
- 
- structsp_attr:
- 	  struct_head identifier '{'
--		{ $$ = start_struct (RECORD_TYPE, $2);
-+		{ $<ttype>$ = start_struct (RECORD_TYPE, $2);
- 		  /* Start scope of tag before parsing components.  */
- 		}
- 	  component_decl_list '}' maybe_attribute
-@@ -1741,7 +1741,7 @@
- 				      nreverse ($3), chainon ($1, $5));
- 		}
- 	| union_head identifier '{'
--		{ $$ = start_struct (UNION_TYPE, $2); }
-+		{ $<ttype>$ = start_struct (UNION_TYPE, $2); }
- 	  component_decl_list '}' maybe_attribute
- 		{ $$ = finish_struct ($<ttype>4, nreverse ($5),
- 				      chainon ($1, $7)); }
-@@ -1750,12 +1750,12 @@
- 				      nreverse ($3), chainon ($1, $5));
- 		}
- 	| enum_head identifier '{'
--		{ $$ = start_enum ($2); }
-+		{ $<ttype>$ = start_enum ($2); }
- 	  enumlist maybecomma_warn '}' maybe_attribute
- 		{ $$ = finish_enum ($<ttype>4, nreverse ($5),
- 				    chainon ($1, $8)); }
- 	| enum_head '{'
--		{ $$ = start_enum (NULL_TREE); }
-+		{ $<ttype>$ = start_enum (NULL_TREE); }
- 	  enumlist maybecomma_warn '}' maybe_attribute
- 		{ $$ = finish_enum ($<ttype>3, nreverse ($4),
- 				    chainon ($1, $7)); }

Copied: trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/patch-c-parse.in.diff (from rev 125273, trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/c-parse.in.patch)
===================================================================
--- trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/patch-c-parse.in.diff	                        (rev 0)
+++ trunk/dports/cross/arm-none-linux-gnueabi-gcc/files/patch-c-parse.in.diff	2014-09-12 19:27:00 UTC (rev 125286)
@@ -0,0 +1,35 @@
+--- gcc/c-parse.in	2009/03/22 05:10:22	23
++++ gcc/c-parse.in	2009/04/13 17:05:33	24
+@@ -1730,7 +1730,7 @@
+ 
+ structsp_attr:
+ 	  struct_head identifier '{'
+-		{ $$ = start_struct (RECORD_TYPE, $2);
++		{ $<ttype>$ = start_struct (RECORD_TYPE, $2);
+ 		  /* Start scope of tag before parsing components.  */
+ 		}
+ 	  component_decl_list '}' maybe_attribute
+@@ -1741,7 +1741,7 @@
+ 				      nreverse ($3), chainon ($1, $5));
+ 		}
+ 	| union_head identifier '{'
+-		{ $$ = start_struct (UNION_TYPE, $2); }
++		{ $<ttype>$ = start_struct (UNION_TYPE, $2); }
+ 	  component_decl_list '}' maybe_attribute
+ 		{ $$ = finish_struct ($<ttype>4, nreverse ($5),
+ 				      chainon ($1, $7)); }
+@@ -1750,12 +1750,12 @@
+ 				      nreverse ($3), chainon ($1, $5));
+ 		}
+ 	| enum_head identifier '{'
+-		{ $$ = start_enum ($2); }
++		{ $<ttype>$ = start_enum ($2); }
+ 	  enumlist maybecomma_warn '}' maybe_attribute
+ 		{ $$ = finish_enum ($<ttype>4, nreverse ($5),
+ 				    chainon ($1, $8)); }
+ 	| enum_head '{'
+-		{ $$ = start_enum (NULL_TREE); }
++		{ $<ttype>$ = start_enum (NULL_TREE); }
+ 	  enumlist maybecomma_warn '}' maybe_attribute
+ 		{ $$ = finish_enum ($<ttype>3, nreverse ($4),
+ 				    chainon ($1, $7)); }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140912/d9210280/attachment.html>


More information about the macports-changes mailing list