[Python-modules-commits] r5776 - in packages/pyparsing/trunk/debian (3 files)
shlomme at users.alioth.debian.org
shlomme at users.alioth.debian.org
Tue Jul 1 15:18:54 UTC 2008
Date: Tuesday, July 1, 2008 @ 15:18:53
Author: shlomme
Revision: 5776
* new upstream release 1.5.0
Modified:
packages/pyparsing/trunk/debian/changelog
packages/pyparsing/trunk/debian/control
packages/pyparsing/trunk/debian/patches/01_leaveWhitespace.dpatch
Modified: packages/pyparsing/trunk/debian/changelog
===================================================================
--- packages/pyparsing/trunk/debian/changelog 2008-07-01 15:04:43 UTC (rev 5775)
+++ packages/pyparsing/trunk/debian/changelog 2008-07-01 15:18:53 UTC (rev 5776)
@@ -1,3 +1,12 @@
+pyparsing (1.5.0-1) unstable; urgency=low
+
+ * New upstream release
+ * debian/control
+ - updated standards version to 3.8.0, no changes necessary
+ - fix small bug in description (Closes: #481883)
+
+ -- Torsten Marek <shlomme at debian.org> Tue, 01 Jul 2008 17:04:58 +0200
+
pyparsing (1.4.11-2) unstable; urgency=low
* Reinstate release 1.4.10-2 changes, which I inadvertently omitted.
Modified: packages/pyparsing/trunk/debian/control
===================================================================
--- packages/pyparsing/trunk/debian/control 2008-07-01 15:04:43 UTC (rev 5775)
+++ packages/pyparsing/trunk/debian/control 2008-07-01 15:18:53 UTC (rev 5776)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Kevin Coyner <kcoyner at debian.org>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>, Torsten Marek <shlomme at debian.org>
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), dpatch
Build-Depends-Indep: python-support (>= 0.5.3), tofrodos
Homepage: http://pyparsing.wikispaces.com/
@@ -25,7 +25,7 @@
.
Here's an example:
.
- from parsing import Word, alphas
+ from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString(hello)
Modified: packages/pyparsing/trunk/debian/patches/01_leaveWhitespace.dpatch
===================================================================
--- packages/pyparsing/trunk/debian/patches/01_leaveWhitespace.dpatch 2008-07-01 15:04:43 UTC (rev 5775)
+++ packages/pyparsing/trunk/debian/patches/01_leaveWhitespace.dpatch 2008-07-01 15:18:53 UTC (rev 5776)
@@ -5,27 +5,15 @@
## DP: Bug #381627
@DPATCH@
-diff -urNad pyparsing-1.4.11~/HowToUsePyparsing.html pyparsing-1.4.11/HowToUsePyparsing.html
---- pyparsing-1.4.11~/HowToUsePyparsing.html 2007-12-10 10:48:12.000000000 -0500
-+++ pyparsing-1.4.11/HowToUsePyparsing.html 2008-02-24 13:58:16.000000000 -0500
-@@ -563,7 +563,7 @@
- parse expression in different places in a grammar, with different parse actions
- attached to each</p>
+diff -urNad pyparsing-1.5.0~/HowToUsePyparsing.html pyparsing-1.5.0/HowToUsePyparsing.html
+--- pyparsing-1.5.0~/HowToUsePyparsing.html 2008-06-01 05:15:56.000000000 +0200
++++ pyparsing-1.5.0/HowToUsePyparsing.html 2008-07-01 17:10:18.000000000 +0200
+@@ -450,7 +450,7 @@
+ newline from the set of skippable whitespace characters. Calling
+ this method will affect all pyparsing expressions defined afterward.</p>
</li>
--<li><p class="first"><tt class="docutils literal"><span class="pre">leaveWhiteSpace()</span></tt> - change default behavior of skipping
-+<li><p class="first"><tt class="docutils literal"><span class="pre">leaveWhitespace()</span></tt> - change default behavior of skipping
- whitespace before starting matching (mostly used internally to the
- pyparsing module, rarely used by client code)</p>
+-<li><p class="first">call <tt class="docutils literal"><span class="pre">leaveWhitespace()</span></tt> on individual expressions, to suppress the
++<li><p class="first">call <tt class="docutils literal"><span class="pre">leaveWhiteSpace()</span></tt> on individual expressions, to suppress the
+ skipping of whitespace before trying to match the expression</p>
</li>
-diff -urNad pyparsing-1.4.11~/docs/HowToUsePyparsing.html pyparsing-1.4.11/docs/HowToUsePyparsing.html
---- pyparsing-1.4.11~/docs/HowToUsePyparsing.html 2007-12-10 10:48:12.000000000 -0500
-+++ pyparsing-1.4.11/docs/HowToUsePyparsing.html 2008-02-24 13:58:30.000000000 -0500
-@@ -563,7 +563,7 @@
- parse expression in different places in a grammar, with different parse actions
- attached to each</p>
- </li>
--<li><p class="first"><tt class="docutils literal"><span class="pre">leaveWhiteSpace()</span></tt> - change default behavior of skipping
-+<li><p class="first"><tt class="docutils literal"><span class="pre">leaveWhitespace()</span></tt> - change default behavior of skipping
- whitespace before starting matching (mostly used internally to the
- pyparsing module, rarely used by client code)</p>
- </li>
+ <li><p class="first">use <tt class="docutils literal"><span class="pre">Combine</span></tt> to require that successive expressions must be
More information about the Python-modules-commits
mailing list