1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
Source: antlr3
Section: java
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Ludovic Claude <ludovic.claude@laposte.net>,
Emmanuel Bourg <ebourg@apache.org>,
Jakub Adam <jakub.adam@ktknet.cz>
Build-Depends: ant,
bnd,
debhelper-compat (= 13),
default-jdk,
javahelper,
junit4,
libmaven-install-plugin-java,
libmaven-plugin-testing-java,
libmaven-plugin-tools-java,
libstringtemplate-java,
libstringtemplate4-java,
maven-debian-helper,
zip
Standards-Version: 4.7.3
Vcs-Git: https://salsa.debian.org/java-team/antlr3.git
Vcs-Browser: https://salsa.debian.org/java-team/antlr3
Homepage: https://www.antlr3.org
Package: antlr3
Architecture: all
Depends: default-jre-headless | java7-runtime-headless,
${java:Depends},
${misc:Depends}
Recommends: ${maven:OptionalDepends}
Description: language tool for constructing recognizers, compilers etc
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 [You can use PCCTS 1.xx to generate C-based parsers].
.
Computer language translation has become a common task. While
compilers and tools for traditional computer languages (such as C
or Java) are still being built, their number is dwarfed by the thousands
of mini-languages for which recognizers and translators are being
developed. Programmers construct translators for database formats,
graphical data files (e.g., PostScript, AutoCAD), text processing
files (e.g., HTML, SGML). ANTLR is designed to handle all of your
translation tasks.
Package: antlr3-maven-plugin
Architecture: all
Depends: antlr3 (>= ${source:Version}),
libmaven3-core-java,
libplexus-compiler-java,
${misc:Depends}
Description: Maven plugin for ANTLR 3
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 [You can use PCCTS 1.xx to generate C-based parsers].
.
This package provides the Maven plugin that supports compiling ANTLR 3
grammars during a Maven build
Package: libantlr3-runtime-java
Architecture: all
Depends: ${java:Depends},
${misc:Depends}
Multi-Arch: foreign
Description: Runtime library for ANTLR 3
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 [You can use PCCTS 1.xx to generate C-based parsers].
.
This package provides the runtime library required to run the parsers
generated by ANTLR 3
Package: libantlr3-gunit-java
Architecture: all
Depends: ${java:Depends},
junit4,
${misc:Depends}
Suggests: antlr3-gunit-maven-plugin
Description: Unit Test framework for ANTLR grammars
gUnit is a "Unit Test" framework for ANTLR grammars. It provides a simple
way to write and run automated tests for ANTLR grammars in a manner similar
to Java unit testing framework jUnit. The basic idea is to create a bunch of
input/output pairs for rules in a grammar and gUnit will verify the expected
output/result. The input can be a single line or multiple lines of strings or
even an external file. The output can be simply success or failure, an
abstract syntax tree (AST), a rule return value, or some text output which
could be a rule's template return value. The current version of gUnit has 2
main functions, interpreter and jUnit generator. The interpreter interprets
your gUnit script and runs unit tests using Java reflection to invoke methods
in your parser objects. The generator, on the other hand, translates your
gUnit script to jUnit Java code that you can compile and execute by hand.
Package: antlr3-gunit-maven-plugin
Architecture: all
Depends: libantlr3-gunit-java (>= ${source:Version}),
libmaven3-core-java,
libplexus-compiler-java,
${misc:Depends}
Description: Maven plugin for gUnit, a unit test framework for ANTLR grammars
gUnit is a "Unit Test" framework for ANTLR grammars. It provides a simple
way to write and run automated tests for ANTLR grammars in a manner similar
to Java unit testing framework jUnit. The basic idea is to create a bunch of
input/output pairs for rules in a grammar and gUnit will verify the expected
output/result. The input can be a single line or multiple lines of strings or
even an external file. The output can be simply success or failure, an
abstract syntax tree (AST), a rule return value, or some text output which
could be a rule's template return value. The current version of gUnit has 2
main functions, interpreter and jUnit generator. The interpreter interprets
your gUnit script and runs unit tests using Java reflection to invoke methods
in your parser objects. The generator, on the other hand, translates your
gUnit script to jUnit Java code that you can compile and execute by hand.
.
This package provides the Maven plugin that allows one to run gUnit tests
during a Maven build.
|