pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-gnosis-utils with is a keyword starting wi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6125f8f8a723
branches:  trunk
changeset: 567994:6125f8f8a723
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Mon Nov 30 19:24:06 2009 +0000

description:
with is a keyword starting with Python 2.6 by default, so don't use it
as parameter name.

diffstat:

 textproc/py-gnosis-utils/distinfo         |   3 ++-
 textproc/py-gnosis-utils/patches/patch-ab |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r ffb4a84e6e03 -r 6125f8f8a723 textproc/py-gnosis-utils/distinfo
--- a/textproc/py-gnosis-utils/distinfo Mon Nov 30 19:10:44 2009 +0000
+++ b/textproc/py-gnosis-utils/distinfo Mon Nov 30 19:24:06 2009 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.3 2006/02/20 23:16:00 wiz Exp $
+$NetBSD: distinfo,v 1.4 2009/11/30 19:24:06 joerg Exp $
 
 SHA1 (Gnosis_Utils-1.1.1.tar.gz) = 7e4477d5133656949550c3dfaef5406a601700c5
 RMD160 (Gnosis_Utils-1.1.1.tar.gz) = 44c98cd6a8365439f94e77ab42c60e3a09e23163
 Size (Gnosis_Utils-1.1.1.tar.gz) = 224646 bytes
 SHA1 (patch-aa) = 1162bd97f4c811a8ca16a43a7778fefb449d0912
+SHA1 (patch-ab) = 9a70e0b7ad1ca2b5cffe20fb8307c9ee2b4f17c8
diff -r ffb4a84e6e03 -r 6125f8f8a723 textproc/py-gnosis-utils/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-gnosis-utils/patches/patch-ab Mon Nov 30 19:24:06 2009 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ab,v 1.1 2009/11/30 19:24:06 joerg Exp $
+
+--- gnosis/util/convert/pyfontify.py.orig      2009-11-30 20:12:42.000000000 +0100
++++ gnosis/util/convert/pyfontify.py
+@@ -31,8 +31,8 @@ import string, regex
+ 
+ # First a little helper, since I don't like to repeat things. (Tismer speaking)
+ import string
+-def replace(where, what, with):
+-    return string.join(string.split(where, what), with)
++def replace(where, what, with_):
++    return string.join(string.split(where, what), with_)
+ 
+ # This list of keywords is taken from ref/node13.html of the
+ # Python 1.3 HTML documentation. ("access" is intentionally omitted.)



Home | Main Index | Thread Index | Old Index