summaryrefslogtreecommitdiff
path: root/lang/python25
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2009-09-19 09:18:53 +0000
committerobache <obache@pkgsrc.org>2009-09-19 09:18:53 +0000
commitef9c8da93971361b94c27d6324f020ca77f1d177 (patch)
tree61f654bf74fb413d6609b65878a0a855375f2cb4 /lang/python25
parent1d88b9dcbff723ef649a8e4d1b0fd2098009525a (diff)
downloadpkgsrc-ef9c8da93971361b94c27d6324f020ca77f1d177.tar.gz
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.
Diffstat (limited to 'lang/python25')
-rw-r--r--lang/python25/distinfo4
-rw-r--r--lang/python25/patches/patch-am4
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/python25/distinfo b/lang/python25/distinfo
index 0cdf63de23a..6fd6d4c3675 100644
--- a/lang/python25/distinfo
+++ b/lang/python25/distinfo
@@ -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
diff --git a/lang/python25/patches/patch-am b/lang/python25/patches/patch-am
index 47e4fe5c864..2d555b6c014 100644
--- a/lang/python25/patches/patch-am
+++ b/lang/python25/patches/patch-am
@@ -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