Fixes module names in disabled_module_list

* not "_sqlite", but "_sqlite3"
 * "bsddb" does not exists, probably removed/renamed before Python24
 * "cjkcodes" does not exists (and should not be disabled)
 * missng "," afiter it
 * "mpz" was removed in Python24.
This commit is contained in:
obache 2009-09-19 09:18:53 +00:00
parent 8a776ca2c1
commit d927d62f76
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.10 2009/09/09 05:37:51 dsainty Exp $
$NetBSD: distinfo,v 1.11 2009/09/19 09:18:53 obache Exp $
SHA1 (Python-2.5.4.tar.bz2) = 0f2e819d6381f72f26c734e00a6780b3933ea404
RMD160 (Python-2.5.4.tar.bz2) = 3a76c83464c3b1c38a60351ab054e33ac7195663
@ -14,7 +14,7 @@ SHA1 (patch-ai) = a89bee00860910f53a23b1c670d9c091846a03c1
SHA1 (patch-aj) = a75d680a6b8b1ad3c9222dcb841f4fb10db6d16d
SHA1 (patch-ak) = 948362c15ad59abeef46971f9b870b70655a62c7
SHA1 (patch-al) = 6247e3f85d555bae7850befbd7bfffbb233cecb3
SHA1 (patch-am) = f444bb78a0ca8ea3fa3435e5946c8d9251cb5102
SHA1 (patch-am) = 9f3f418d9a9b652ea0098b34cb57bb5319445778
SHA1 (patch-an) = 17b4e17b3b562c29a050e9bb20447084ce82b8ab
SHA1 (patch-ao) = 9bbd5561c010e0a1ab8e0a70d27a5f77fd2089d2
SHA1 (patch-ap) = b864db92761c843a91374663bd2dbcfa57b317cf

View file

@ -1,4 +1,4 @@
$NetBSD: patch-am,v 1.4 2009/09/09 05:37:51 dsainty Exp $
$NetBSD: patch-am,v 1.5 2009/09/19 09:18:53 obache Exp $
--- setup.py.orig 2008-10-16 14:58:19.000000000 -0400
+++ setup.py
@ -7,7 +7,7 @@ $NetBSD: patch-am,v 1.4 2009/09/09 05:37:51 dsainty 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