[Python-modules-commits] r32187 - in packages/ply/ply/trunk (11 files)

kitterman at users.alioth.debian.org kitterman at users.alioth.debian.org
Sat Apr 4 03:48:04 UTC 2015


    Date: Saturday, April 4, 2015 @ 03:48:03
  Author: kitterman
Revision: 32187

[svn-inject] Applying Debian modifications (3.4-1) to trunk

Added:
  packages/ply/ply/trunk/debian/
  packages/ply/ply/trunk/debian/changelog
  packages/ply/ply/trunk/debian/compat
  packages/ply/ply/trunk/debian/control
  packages/ply/ply/trunk/debian/copyright
  packages/ply/ply/trunk/debian/ply-doc.doc-base
  packages/ply/ply/trunk/debian/ply-doc.docs
  packages/ply/ply/trunk/debian/python-ply.install
  packages/ply/ply/trunk/debian/python3-ply.install
  packages/ply/ply/trunk/debian/rules
  packages/ply/ply/trunk/debian/watch


Property changes on: packages/ply/ply/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/ply/ply/trunk/debian/changelog
===================================================================
--- packages/ply/ply/trunk/debian/changelog	                        (rev 0)
+++ packages/ply/ply/trunk/debian/changelog	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,5 @@
+ply (3.4-1) unstable; urgency=medium
+
+  * Initial release (Closes: #781870)
+
+ -- Scott Kitterman <scott at kitterman.com>  Fri, 03 Apr 2015 22:44:57 -0400

Added: packages/ply/ply/trunk/debian/compat
===================================================================
--- packages/ply/ply/trunk/debian/compat	                        (rev 0)
+++ packages/ply/ply/trunk/debian/compat	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1 @@
+9

Added: packages/ply/ply/trunk/debian/control
===================================================================
--- packages/ply/ply/trunk/debian/control	                        (rev 0)
+++ packages/ply/ply/trunk/debian/control	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,86 @@
+Source: ply
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Scott Kitterman <scott at kitterman.com>
+Build-Depends: debhelper (>= 9), dh-python, python-all (>= 2.6.6-6), python3-all
+Homepage: http://www.dabeaz.com/ply/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/ply/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/ply/trunk/
+Standards-Version: 3.9.6
+
+Package: python-ply
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Suggests: ply-doc
+Description: Python implementation of the common parsing tools lex and yacc
+ python-ply is a 100% Python implementation of the common parsing tools lex and
+ yacc. Here are a few highlights:
+ .
+  * very closely modeled after traditional lex/yacc.
+ .
+  * provides *very* extensive error reporting and diagnostic information to
+    assist in parser construction.
+ .
+  * provides full support for empty productions, error recovery, precedence
+    specifiers, and moderately ambiguous grammars.
+ .
+  * based on LR-parsing which is fast, memory efficient, better suited to large
+    grammars, and has a number of nice properties when dealing with syntax
+    errors and other parsing problems. Builds its parsing tables using the LALR
+    algorithm used in yacc.
+ .
+  * uses Python introspection features to build lexers and parsers. This greatly
+    simplifies the task of parser construction since it reduces the number of
+    files and eliminates the need to run a separate lex/yacc tool before running
+    your program.
+ .
+  * can be used to build parsers for "real" programming languages. Athough not
+    ultra-fast due to its Python implementation, can be used to parse grammars
+    consisting of several hundred rules (as might be found for a language like
+    C). The lexer and LR parser are also reasonably efficient when parsing
+    typically sized programs.
+
+Package: python3-ply
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Suggests: ply-doc
+Description: Python 3 implementation of the common parsing tools lex and yacc
+ python3-ply is a 100% Python 3 implementation of the common parsing tools lex
+ and yacc. Here are a few highlights:
+ .
+  * very closely modeled after traditional lex/yacc.
+ .
+  * provides *very* extensive error reporting and diagnostic information to
+    assist in parser construction.
+ .
+  * provides full support for empty productions, error recovery, precedence
+    specifiers, and moderately ambiguous grammars.
+ .
+  * based on LR-parsing which is fast, memory efficient, better suited to large
+    grammars, and has a number of nice properties when dealing with syntax
+    errors and other parsing problems. Builds its parsing tables using the LALR
+    algorithm used in yacc.
+ .
+  * uses Python introspection features to build lexers and parsers. This greatly
+    simplifies the task of parser construction since it reduces the number of
+    files and eliminates the need to run a separate lex/yacc tool before running
+    your program.
+ .
+  * can be used to build parsers for "real" programming languages. Athough not
+    ultra-fast due to its Python implementation, can be used to parse grammars
+    consisting of several hundred rules (as might be found for a language like
+    C). The lexer and LR parser are also reasonably efficient when parsing
+    typically sized programs.
+
+Package: ply-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Recommends: python-ply | python3-ply
+Description: Documentation for PLY, a Python implementation of lex and yacc
+ PLY is a 100% Python implementation of the common parsing tools lex and
+ yacc.
+ .
+ This package contains the HTML documentation and examples.
+

Added: packages/ply/ply/trunk/debian/copyright
===================================================================
--- packages/ply/ply/trunk/debian/copyright	                        (rev 0)
+++ packages/ply/ply/trunk/debian/copyright	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,33 @@
+This package was debianized by Scott Kitterman <scott at kitterman.com> on
+Fri, 03 Apr 2015 22:44:57 -0400.
+
+This version was downloaded from http://www.dabeaz.com/ply/
+
+Copyright (C) 2001-2011,
+David M. Beazley (Dabeaz LLC)
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+* Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of the David Beazley or Dabeaz LLC may be used to
+  endorse or promote products derived from this software without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: packages/ply/ply/trunk/debian/ply-doc.doc-base
===================================================================
--- packages/ply/ply/trunk/debian/ply-doc.doc-base	                        (rev 0)
+++ packages/ply/ply/trunk/debian/ply-doc.doc-base	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,10 @@
+Document: ply
+Title: PLY Reference and API Documentation
+Author: David M. Beazley (Dabeaz LLC)
+Abstract: Python implementation of the common parsing tools lex and yacc
+ This documentation contains a general reference of PLY and examples
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/ply-doc/ply.html
+Files: /usr/share/doc/ply-doc/*.html

Added: packages/ply/ply/trunk/debian/ply-doc.docs
===================================================================
--- packages/ply/ply/trunk/debian/ply-doc.docs	                        (rev 0)
+++ packages/ply/ply/trunk/debian/ply-doc.docs	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,3 @@
+doc/internal.html
+doc/ply.html
+example

Added: packages/ply/ply/trunk/debian/python-ply.install
===================================================================
--- packages/ply/ply/trunk/debian/python-ply.install	                        (rev 0)
+++ packages/ply/ply/trunk/debian/python-ply.install	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1 @@
+usr/lib/python2.*/dist-packages

Added: packages/ply/ply/trunk/debian/python3-ply.install
===================================================================
--- packages/ply/ply/trunk/debian/python3-ply.install	                        (rev 0)
+++ packages/ply/ply/trunk/debian/python3-ply.install	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1 @@
+usr/lib/python3.*/dist-packages

Added: packages/ply/ply/trunk/debian/rules
===================================================================
--- packages/ply/ply/trunk/debian/rules	                        (rev 0)
+++ packages/ply/ply/trunk/debian/rules	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


Property changes on: packages/ply/ply/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/ply/ply/trunk/debian/watch
===================================================================
--- packages/ply/ply/trunk/debian/watch	                        (rev 0)
+++ packages/ply/ply/trunk/debian/watch	2015-04-04 03:48:03 UTC (rev 32187)
@@ -0,0 +1,3 @@
+version=3
+http://www.dabeaz.com/ply/ply-(.*).tar.gz debian uupdate
+




More information about the Python-modules-commits mailing list