[pkg-java] r12665 - in trunk/antlr3/debian: . scripts

Ludovic Claude ludovicc-guest at alioth.debian.org
Sat Jun 26 22:35:12 UTC 2010


Author: ludovicc-guest
Date: 2010-06-26 22:35:12 +0000 (Sat, 26 Jun 2010)
New Revision: 12665

Added:
   trunk/antlr3/debian/antlr3.manpages
   trunk/antlr3/debian/scripts/antlr3.1
Modified:
   trunk/antlr3/debian/changelog
   trunk/antlr3/debian/rules
   trunk/antlr3/debian/scripts/antlr3
Log:
* New release



Added: trunk/antlr3/debian/antlr3.manpages
===================================================================
--- trunk/antlr3/debian/antlr3.manpages	                        (rev 0)
+++ trunk/antlr3/debian/antlr3.manpages	2010-06-26 22:35:12 UTC (rev 12665)
@@ -0,0 +1 @@
+debian/scripts/antlr3.1

Modified: trunk/antlr3/debian/changelog
===================================================================
--- trunk/antlr3/debian/changelog	2010-06-25 21:25:31 UTC (rev 12664)
+++ trunk/antlr3/debian/changelog	2010-06-26 22:35:12 UTC (rev 12665)
@@ -1,3 +1,15 @@
+antlr3 (3.2-2) unstable; urgency=low
+
+  * New upstream (Closes: #579504)
+  * debian/watch fixes in previous version (Closes: #570684)
+  * Add missing antlr3-runtime.jar library to antlr3 wrapper script
+    (Closes #587212)
+  * Also don't export the CLASSPATH variable, there's no need to affect
+    the whole environement when launching this program
+  * Add man page for antlr3 script
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Sat, 26 Jun 2010 15:36:11 +0200
+
 antlr3 (3.2-1) unstable; urgency=low
 
   [ Ludovic Claude ]

Modified: trunk/antlr3/debian/rules
===================================================================
--- trunk/antlr3/debian/rules	2010-06-25 21:25:31 UTC (rev 12664)
+++ trunk/antlr3/debian/rules	2010-06-26 22:35:12 UTC (rev 12665)
@@ -37,6 +37,7 @@
 binary-post-install/antlr3::
 	mh_linkrepojar -pantlr3 runtime/Java/pom.xml /usr/share/java/antlr3-runtime.jar
 	mh_linkrepojar -pantlr3 tool/pom.xml /usr/share/java/antlr3.jar
+	dh_installman -pantlr3
 
 binary-post-install/antlr3-gcj:: binary-post-install/antlr3
 	[ -f debian/antlr3/usr/share/java/antlr3-$(DEB_UPSTREAM_VERSION).jar ] \

Modified: trunk/antlr3/debian/scripts/antlr3
===================================================================
--- trunk/antlr3/debian/scripts/antlr3	2010-06-25 21:25:31 UTC (rev 12664)
+++ trunk/antlr3/debian/scripts/antlr3	2010-06-26 22:35:12 UTC (rev 12665)
@@ -1,4 +1,4 @@
 #!/bin/sh
 
-export CLASSPATH=/usr/share/java/stringtemplate.jar:/usr/share/java/antlr3.jar
-exec java org.antlr.Tool "$@"
+CLASSPATH=/usr/share/java/stringtemplate.jar:/usr/share/java/antlr3.jar:/usr/share/java/antlr3-runtime.jar
+exec java -cp $CLASSPATH org.antlr.Tool "$@"

Added: trunk/antlr3/debian/scripts/antlr3.1
===================================================================
--- trunk/antlr3/debian/scripts/antlr3.1	                        (rev 0)
+++ trunk/antlr3/debian/scripts/antlr3.1	2010-06-26 22:35:12 UTC (rev 12665)
@@ -0,0 +1,85 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH ANTLR 3 "June 27, 2010" GNU antlr
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH "NAME"
+ANTLR \- ANother Tool for Language Recognition, version 3
+.SH "SYNOPSIS"
+.B java org.antlr.Tool
+.B or
+.B antlr3
+[\fIargs\fR] \fIfile.g\fR \[fIfile2.g\fR \fIfile3.g\fR ...]
+.br
+.SH "DESCRIPTION"
+ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
+language tool that provides a framework for constructing recognizers,
+compilers, and translators from grammatical descriptions containing
+C++ or Java actions.
+.TP
+\fB\-o\fR \fIoutputDir\fR
+specify output directory where all output generated.
+.TP
+\fB\-fo\fR \fIoutputDir\fR
+same as -o but force even files with relative paths to dir.
+.TP
+\fB\-lib\fR \fIdir\fR
+specify location of token files.
+.TP
+\fB\-depend\fR
+generate file dependencies.
+.TP
+\fB\-report\fR
+print out a report about the grammar(s) processed.
+.TP
+\fB\-print\fR
+print out the grammar without actions.
+.TP
+\fB\-debug\fR
+generate a parser that emits debugging events.
+.TP
+\fB\-profile\fR
+generate a parser that computes profiling information.
+.TP
+\fB\-nfa\fR
+generate an NFA for each rule.
+.TP
+\fB\-dfa\fR
+generate a DFA for each decision point.
+.TP
+\fB\-message-format\fR \fIname\fR
+specify output style for messages.
+.TP
+\fB\-verbose\fR
+generate ANTLR version and other information.
+.TP
+\fB\-make\fR
+only build if generated files older than grammar.
+.TP
+\fB\-version\fR
+print the version of ANTLR and exit.
+.TP
+\fB\-X\fR
+display extended argument list.
+
+.SH "AUTHOR"
+This manual page was written by Ludovic Claude <ludovic.claude at laposte.net>
+
+.SH "SEE ALSO"
+.BR java (1),
+.BR runantlr (1),
+.BR http://www.antlr.org/
+.br
+




More information about the pkg-java-commits mailing list