[antlr3.2] 12/46: * New release

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Mon Oct 26 20:24:53 UTC 2015


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository antlr3.2.

commit 6ce6f0cba4f4d81506413a4e3ce16dba9d5f042f
Author: Ludovic Claude <ludovic.claude at laposte.net>
Date:   Sat Jun 26 22:35:12 2010 +0000

    * New release
---
 debian/antlr3.manpages  |  1 +
 debian/changelog        | 12 +++++++
 debian/rules            |  1 +
 debian/scripts/antlr3   |  4 +--
 debian/scripts/antlr3.1 | 85 +++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 101 insertions(+), 2 deletions(-)

diff --git a/debian/antlr3.manpages b/debian/antlr3.manpages
new file mode 100644
index 0000000..29e298b
--- /dev/null
+++ b/debian/antlr3.manpages
@@ -0,0 +1 @@
+debian/scripts/antlr3.1
diff --git a/debian/changelog b/debian/changelog
index b418421..f60cd2e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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 ]
diff --git a/debian/rules b/debian/rules
index a30f1de..07d7dd4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,6 +37,7 @@ before-mvn-build::
 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 ] \
diff --git a/debian/scripts/antlr3 b/debian/scripts/antlr3
index 18d0b56..7cfa489 100755
--- a/debian/scripts/antlr3
+++ b/debian/scripts/antlr3
@@ -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 "$@"
diff --git a/debian/scripts/antlr3.1 b/debian/scripts/antlr3.1
new file mode 100644
index 0000000..1bbc69a
--- /dev/null
+++ b/debian/scripts/antlr3.1
@@ -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
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/antlr3.2.git



More information about the pkg-java-commits mailing list