summaryrefslogtreecommitdiff
path: root/lang/python26/patches
diff options
context:
space:
mode:
authorobache <obache>2009-09-19 09:06:57 +0000
committerobache <obache>2009-09-19 09:06:57 +0000
commitd9c3006ef4ed1c9af1c1427c8f00a62766d57096 (patch)
tree673551401d5db03860972209232e7238682eddf7 /lang/python26/patches
parent5adfa74629317213cd333d10df5e9b0926a1a3bf (diff)
downloadpkgsrc-d9c3006ef4ed1c9af1c1427c8f00a62766d57096.tar.gz
Fixes modules in disable_module_list
* not "_sqlite", but "_sqlite3", fixes PR#42070. * "bsddb" does not exists. (I can find it in Python21, not in Python23) * "cjkcodecs" should not be disabled. It is expected to exists in all Python variants and py-cjkcodecs was removed. Although, the module name is "_multibytecodec" and "_codecs_*". and missing "," after it kill subsecuent "gdbm". * "mpz" was removed in Python24.
Diffstat (limited to 'lang/python26/patches')
-rw-r--r--lang/python26/patches/patch-am4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python26/patches/patch-am b/lang/python26/patches/patch-am
index 345da215129..865dd75af61 100644
--- a/lang/python26/patches/patch-am
+++ b/lang/python26/patches/patch-am
@@ -1,4 +1,4 @@
-$NetBSD: patch-am,v 1.5 2009/07/18 10:41:33 wiz Exp $
+$NetBSD: patch-am,v 1.6 2009/09/19 09:06:57 obache Exp $
--- setup.py.orig 2009-03-31 18:20:48.000000000 +0000
+++ setup.py
@@ -7,7 +7,7 @@ $NetBSD: patch-am,v 1.5 2009/07/18 10:41:33 wiz Exp $
# This global variable is used to hold the list of modules to be disabled.
-disabled_module_list = []
-+disabled_module_list = ["_bsddb", "_curses", "_curses_panel", "_elementtree", "_sqlite", "_tkinter", "bsddb", "cjkcodecs" "gdbm", "mpz", "expat", "readline"]
++disabled_module_list = ["_bsddb", "_curses", "_curses_panel", "_elementtree", "_sqlite3", "_tkinter", "gdbm", "expat", "readline"]
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if