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
|
Source: ply
Section: python
Priority: optional
Maintainer: JCF Ploemen (jcfp) <linux@jcf.pm>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends:
debhelper (>= 11~),
dh-python,
python-all (>= 2.6.6-9~),
python3-all (>= 3.1.2-6~),
perl
Build-Depends-Indep:
python-setuptools,
python3-setuptools
Standards-Version: 4.1.5
Homepage: https://www.dabeaz.com/ply/
Vcs-Git: https://salsa.debian.org/python-team/modules/ply.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/ply
Testsuite: autopkgtest-pkg-python
Package: python-ply
Architecture: all
Multi-Arch: foreign
Depends: ${python:Depends}, ${misc:Depends}
Provides: ${python:Provides}, ${python-ply:Provides}
Breaks: ${python:Breaks}
Suggests: python-ply-doc, python-pkg-resources
Description: Lex and Yacc implementation for Python2
PLY is yet another implementation of lex and yacc for
Python. Although several other parsing tools are available for
Python, there are several reasons why you might want to take a look
at PLY:
* It's implemented entirely in Python.
* It uses LR-parsing which is reasonably efficient and well suited
for larger grammars.
* PLY provides most of the standard lex/yacc features including
support for empty productions, precedence rules, error recovery,
and support for ambiguous grammars.
* PLY is extremely easy to use and provides very extensive error
checking.
.
This package contains the Python 2 module.
Package: python3-ply
Architecture: all
Multi-Arch: foreign
Depends: ${python3:Depends}, ${misc:Depends}
Provides: ${python3:Provides}, ${python3-ply:Provides}
Breaks: ${python3:Breaks}
Suggests: python-ply-doc, python3-pkg-resources
Description: Lex and Yacc implementation for Python3
PLY is yet another implementation of lex and yacc for
Python. Although several other parsing tools are available for
Python, there are several reasons why you might want to take a look
at PLY:
* It's implemented entirely in Python.
* It uses LR-parsing which is reasonably efficient and well suited
for larger grammars.
* PLY provides most of the standard lex/yacc features including
support for empty productions, precedence rules, error recovery,
and support for ambiguous grammars.
* PLY is extremely easy to use and provides very extensive error
checking.
.
This package contains the Python 3 module.
Package: python-ply-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: Lex and Yacc implementation for Python (documentation)
PLY is yet another implementation of lex and yacc for
Python.
.
This package contains the documentation for Ply.
|