[Python-modules-commits] r17154 - in packages/pyke/trunk/debian (2 files)
eriol-guest at users.alioth.debian.org
eriol-guest at users.alioth.debian.org
Thu May 26 04:44:27 UTC 2011
Date: Thursday, May 26, 2011 @ 04:44:26
Author: eriol-guest
Revision: 17154
Dropped 06_disable_write_tables.patch
Modified:
packages/pyke/trunk/debian/changelog
Deleted:
packages/pyke/trunk/debian/patches/06_disable_write_tables.patch
Modified: packages/pyke/trunk/debian/changelog
===================================================================
--- packages/pyke/trunk/debian/changelog 2011-05-26 03:25:56 UTC (rev 17153)
+++ packages/pyke/trunk/debian/changelog 2011-05-26 04:44:26 UTC (rev 17154)
@@ -38,12 +38,8 @@
- Added patch by Jakub Wilk using docstring substitution
* debian/patches/05_do-not-use-embedded-ply.patch
- Do not use embedded copy of python-ply
- * debian/patches/06_disable_write_tables.patch
- - Disable ply.yacc write_tables option so if the version match ply
- will use the generated tables if but if it doesn't it'll just regenerate
- them on the fly and don't save the result anywhere
- -- Daniele Tricoli <eriol at mornie.org> Tue, 24 May 2011 13:35:47 +0200
+ -- Daniele Tricoli <eriol at mornie.org> Thu, 26 May 2011 06:41:07 +0200
pyke (1.1.1-1) unstable; urgency=low
Deleted: packages/pyke/trunk/debian/patches/06_disable_write_tables.patch
===================================================================
--- packages/pyke/trunk/debian/patches/06_disable_write_tables.patch 2011-05-26 03:25:56 UTC (rev 17153)
+++ packages/pyke/trunk/debian/patches/06_disable_write_tables.patch 2011-05-26 04:44:26 UTC (rev 17154)
@@ -1,26 +0,0 @@
-Description: Disable ply.yacc write_tables option so if the version match ply
- will use the generated tables if but if it doesn't it'll just regenerate
- them on the fly and don't save the result anywhere.
-Author: Daniele Tricoli <eriol at mornie.org>
---- a/pyke/krb_compiler/kfbparser.py
-+++ b/pyke/krb_compiler/kfbparser.py
-@@ -137,7 +137,7 @@
- try: os.remove(tables_name + 'o')
- except OSError: pass
- parser = yacc.yacc(module=this_module, debug=0,
-- optimize=1, write_tables=1,
-+ optimize=1, write_tables=0,
- tabmodule='pyke.krb_compiler.kfbparser_tables',
- outputdir=outputdir)
-
---- a/pyke/krb_compiler/krbparser.py
-+++ b/pyke/krb_compiler/krbparser.py
-@@ -580,7 +580,7 @@
- try: os.remove(tables_name + 'o')
- except OSError: pass
- parser = yacc.yacc(module=this_module, debug=0,
-- optimize=1, write_tables=1,
-+ optimize=1, write_tables=0,
- tabmodule='pyke.krb_compiler.krbparser_tables',
- outputdir=outputdir)
-
More information about the Python-modules-commits
mailing list