summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-12-31 22:12:03 +0000
committerryoon <ryoon@pkgsrc.org>2013-12-31 22:12:03 +0000
commit3df063ceeec43721bbcd6ddabe86430996ef1d90 (patch)
tree4929a9d943624fbf6a74f4592551bcecb90adfad /devel
parent4964263fc73ecec9424cb044f0093b4353353620 (diff)
downloadpkgsrc-3df063ceeec43721bbcd6ddabe86430996ef1d90.tar.gz
Update to 1.4.3
Changelog: JFlex 1.4.3 (Jan 31, 2009) fixes all known bugs of 1.4.2 Fixed bug #2018299 (lookahead syntax error). Fixed bug #2010261 (min_int in Java example scanner). Fixed bug #2007221 (zzEOFDone not reset in yyreset(Reader)). Fixed bug #1999301 (%type and %int at the same time should produce error message). JFlex 1.4.2 (May 27, 2008) fixes all known bugs of 1.4.1 Implemented feature request #1212181: Now supports generics syntax for %type, %extends, etc. Implemented feature request #1762500: Provided %ctorarg option to add arguments to constructor. Fixed bug #1464525 (Reader.read might return 0). Fixed bug #1968897 (Ambiguous error message in macro expansion). Fixed bug #1832973 (Syntax error in input may cause NullPointerException). Fixed bug #1629920 (Need to defend against path blanks in jflex bash script). Fixed bug #1540228 (EOF actions may be ignored for same lex state). Fixed bug #1498726 (syntax error in generated ZZ_CMAP). Fixed bug #1282840 (lookahead and "|" actions). Fixed bug #1164852 (yytext() longer than expected with lookahead). Fixed bug #1065521 (OS/2 Java 1.1.8 Issues). Fixed bug #421495 (dangerous lookahead check may fail).
Diffstat (limited to 'devel')
-rw-r--r--devel/jflex/DESCR8
-rw-r--r--devel/jflex/Makefile4
-rw-r--r--devel/jflex/PLIST23
-rw-r--r--devel/jflex/distinfo8
4 files changed, 31 insertions, 12 deletions
diff --git a/devel/jflex/DESCR b/devel/jflex/DESCR
index f155704add9..4ff54bd9ecc 100644
--- a/devel/jflex/DESCR
+++ b/devel/jflex/DESCR
@@ -1,4 +1,4 @@
-JFlex is a lexical analyzer generator for Java written in Java. It is
-also a rewrite of the very useful tool JLex which was developed by
-Elliot Berk at Princeton University. As Vern Paxson states for his C/C++
-tool flex: They do not share any code though.
+JFlex is a lexical analyzer generator for Java written in Java. It
+is also a rewrite of the very useful tool JLex which was developed
+by Elliot Berk at Princeton University. As Vern Paxson states for
+his C/C++ tool flex: They do not share any code though.
diff --git a/devel/jflex/Makefile b/devel/jflex/Makefile
index 8597330d332..4eb70e0d9ff 100644
--- a/devel/jflex/Makefile
+++ b/devel/jflex/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2012/10/31 11:17:07 asau Exp $
+# $NetBSD: Makefile,v 1.6 2013/12/31 22:12:03 ryoon Exp $
#
-DISTNAME= jflex-1.4.1
+DISTNAME= jflex-1.4.3
CATEGORIES= devel
MASTER_SITES= http://jflex.de/
diff --git a/devel/jflex/PLIST b/devel/jflex/PLIST
index 71c5fc2fa60..d6b4b9676b5 100644
--- a/devel/jflex/PLIST
+++ b/devel/jflex/PLIST
@@ -1,11 +1,11 @@
-@comment $NetBSD: PLIST,v 1.2 2009/06/14 17:48:49 joerg Exp $
+@comment $NetBSD: PLIST,v 1.3 2013/12/31 22:12:03 ryoon Exp $
bin/jflex
lib/java/JFlex.jar
share/doc/jflex/COPYRIGHT
share/doc/jflex/crossref.png
share/doc/jflex/footnote.png
share/doc/jflex/jflex_anttask.html
-share/doc/jflex/logo.gif
+share/doc/jflex/logo.png
share/doc/jflex/manual.css
share/doc/jflex/manual.html
share/doc/jflex/manual.pdf
@@ -60,6 +60,18 @@ share/examples/jflex/java/java.flex
share/examples/jflex/java/java12.cup
share/examples/jflex/java/lexer-output.good
share/examples/jflex/java/unicode.flex
+share/examples/jflex/pom.xml
+share/examples/jflex/simple-maven/README.txt
+share/examples/jflex/simple-maven/pom.xml
+share/examples/jflex/simple-maven/src/README
+share/examples/jflex/simple-maven/src/main/java/Utility.java
+share/examples/jflex/simple-maven/src/main/java/Yytoken.java
+share/examples/jflex/simple-maven/src/main/jflex/simple.flex
+share/examples/jflex/simple-maven/src/site/apt/usage.apt
+share/examples/jflex/simple-maven/src/site/site.xml
+share/examples/jflex/simple-maven/src/test/java/YylexTest.java
+share/examples/jflex/simple-maven/src/test/resources/output.good
+share/examples/jflex/simple-maven/src/test/resources/test.txt
share/examples/jflex/simple/Makefile
share/examples/jflex/simple/README
share/examples/jflex/simple/Utility.java
@@ -67,8 +79,15 @@ share/examples/jflex/simple/Yytoken.java
share/examples/jflex/simple/output.good
share/examples/jflex/simple/simple.flex
share/examples/jflex/simple/test.txt
+share/examples/jflex/standalone-maven/pom.xml
+share/examples/jflex/standalone-maven/src/main/jflex/standalone.flex
+share/examples/jflex/standalone-maven/src/test/java/de/jflex/example/standalone/SubstTest.java
+share/examples/jflex/standalone-maven/src/test/resources/sample.expected
+share/examples/jflex/standalone-maven/src/test/resources/sample.in
share/examples/jflex/standalone/Makefile
share/examples/jflex/standalone/README
share/examples/jflex/standalone/build.xml
share/examples/jflex/standalone/sample.inp
share/examples/jflex/standalone/standalone.flex
+@pkgdir share/examples/jflex/standalone-maven/src/main/java
+@pkgdir share/examples/jflex/simple-maven/src/main/resources
diff --git a/devel/jflex/distinfo b/devel/jflex/distinfo
index c1f1c982602..154bb008ed5 100644
--- a/devel/jflex/distinfo
+++ b/devel/jflex/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2007/02/22 08:24:44 rillig Exp $
+$NetBSD: distinfo,v 1.2 2013/12/31 22:12:03 ryoon Exp $
-SHA1 (jflex-1.4.1.tar.gz) = 274ced17ce5e9709cdc177ea4e5096c697fee1e5
-RMD160 (jflex-1.4.1.tar.gz) = 043a78f092e2c89253e4c53c6cd8c37aafaf05ed
-Size (jflex-1.4.1.tar.gz) = 986546 bytes
+SHA1 (jflex-1.4.3.tar.gz) = d90c618d6b5dc9650f38843605834f18d0a76a4c
+RMD160 (jflex-1.4.3.tar.gz) = e45d7343cc8c66ceeb13ac9dbcaa8554dbb09f6b
+Size (jflex-1.4.3.tar.gz) = 1247939 bytes