diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2017-01-13 07:21:04 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2017-01-13 07:21:04 +0000 |
commit | 9063f9304ce8598f71c59d404dda7fabd8cdc077 (patch) | |
tree | ac57f5ed25dbd047668d7b3028d2914c5ee6ec4c /lang/hla | |
parent | 3b027b7d05d5546056f679102f4d328e3e5f0b33 (diff) | |
download | ports-9063f9304ce8598f71c59d404dda7fabd8cdc077.tar.gz ports-9063f9304ce8598f71c59d404dda7fabd8cdc077.zip |
Update to 3.0.4
- Add LICENSE
- Use USES=localbase
- Use PORTDATA
- Sort PLIST
Changes: http://git.savannah.gnu.org/cgit/bison.git/tree/NEWS
Differential Revision: https://reviews.FreeBSD.org/D9073
PR: 215840
Exp-run by: antoine
Notes
Notes:
svn path=/head/; revision=431345
Diffstat (limited to 'lang/hla')
-rw-r--r-- | lang/hla/Makefile | 2 | ||||
-rw-r--r-- | lang/hla/files/patch-hlaparse.bsn | 107 |
2 files changed, 108 insertions, 1 deletions
diff --git a/lang/hla/Makefile b/lang/hla/Makefile index 4d1d39580ad9..b524c4ca399d 100644 --- a/lang/hla/Makefile +++ b/lang/hla/Makefile @@ -12,7 +12,7 @@ EXTRACT_ONLY= ${PORTNAME}src${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= High Level Assembly -USES= bison zip:infozip +USES= bison dos2unix zip:infozip WRKSRC= ${WRKDIR}/hlasrc/trunk/trunk MAKEFILE= makefile.bsd diff --git a/lang/hla/files/patch-hlaparse.bsn b/lang/hla/files/patch-hlaparse.bsn new file mode 100644 index 000000000000..da50d7d26cf0 --- /dev/null +++ b/lang/hla/files/patch-hlaparse.bsn @@ -0,0 +1,107 @@ +--- hlaparse.bsn.orig 2017-01-09 13:30:03 UTC ++++ hlaparse.bsn +@@ -1,4 +1,4 @@ +-%pure_parser ++%define api.pure + + + /*****************************/ +@@ -2749,7 +2749,7 @@ doTextBlock: + + _here; + doTextBlock7( $<idStr>3, YYS &$<v>6 ); +- YYACCEPT ++ YYACCEPT; + } + + +@@ -2763,7 +2763,7 @@ doTextBlock: + + _here; + doTextBlock7a( $<s>3, YYS &$<v>6 ); +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -2811,7 +2811,7 @@ doStringBlock: + + _here; + doStringBlock( $<idStr>3, YYS &$<v>6 ); +- YYACCEPT ++ YYACCEPT; + } + + +@@ -2825,7 +2825,7 @@ doStringBlock: + + _here; + doStringBlocka( $<s>3, YYS &$<v>6 ); +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -2865,7 +2865,7 @@ doMatchBlock: + + _here; + doMatchBlock( $<s>3, YYS &$<v>6 ); +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -2900,7 +2900,7 @@ doPrint: + fputs( "\n", PrintOut ); + + _endif +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -2961,7 +2961,7 @@ doParseObjID: + _here; + memcpy( &d1dnReturnVal, &$<dotName>2, sizeof( union YYSTYPE )); + _here; +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -2972,7 +2972,7 @@ doParseClassID: + _here; + memcpy( &d1dnReturnVal, &$<dotName>2, sizeof( union YYSTYPE )); + _here; +- YYACCEPT ++ YYACCEPT; + } + ; + +@@ -10577,7 +10577,7 @@ OptionalInherit: + + Empty + { +- $<s>$ = NULL ++ $<s>$ = NULL; + } + + +@@ -10657,7 +10657,7 @@ OptInherits: + + Empty + { +- $<ru.base>-1 = NULL ++ $<ru.base>-1 = NULL; + } + + /* +@@ -28209,7 +28209,7 @@ OneOrMoreParms: + varTkn /* $4 */ + { + ProcGlobal = $<s>3; +- fastLookup = 1 ++ fastLookup = 1; + } + ';' /* $6 */ + { /* $7 */ |