summaryrefslogtreecommitdiff
path: root/lang/python24
diff options
context:
space:
mode:
authorobache <obache>2009-09-19 09:30:41 +0000
committerobache <obache>2009-09-19 09:30:41 +0000
commit34c29a226d35d1777c821bddcb209c47ce2a2c41 (patch)
tree54d8d19b762b86e1d03cdeedcf8a648669052831 /lang/python24
parent499d9636741a115e496622b5fc2a8257685ca7eb (diff)
downloadpkgsrc-34c29a226d35d1777c821bddcb209c47ce2a2c41.tar.gz
Fixes module names in disabled_module_list
* "bsddb" does not exists, probably removed/renamed before/in Python24. * "mpz" was removed in Python24.
Diffstat (limited to 'lang/python24')
-rw-r--r--lang/python24/distinfo4
-rw-r--r--lang/python24/patches/patch-am4
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/python24/distinfo b/lang/python24/distinfo
index 540d8e1cff4..e5c81c1fcab 100644
--- a/lang/python24/distinfo
+++ b/lang/python24/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.32 2009/09/09 05:59:37 dsainty Exp $
+$NetBSD: distinfo,v 1.33 2009/09/19 09:30:41 obache Exp $
SHA1 (Python-2.4.5.tar.bz2) = 6e9e1ac2b70cc10c36063a25ab5a5ddb53177107
RMD160 (Python-2.4.5.tar.bz2) = b43f2114697be751f03ec7cfb46f8c4946a73097
@@ -15,7 +15,7 @@ SHA1 (patch-ai) = 6435c5a7269c14d94eab6fb9777b9d059507e7b8
SHA1 (patch-aj) = e471737ade95423039661b475f2dd0fc27aa9dac
SHA1 (patch-ak) = 4c6708eb29757179e6855d8fbe78cab92c5a18d5
SHA1 (patch-al) = 10acea9003d856d2663a4b5bbecbd801eca8c0c8
-SHA1 (patch-am) = 4acf5857624fbb50e1ca4d570b69d02239d32b43
+SHA1 (patch-am) = 31158eee32363963e2f6d0bd528f0b291453de74
SHA1 (patch-an) = 0ae5b3d547c7dbe1366c5ae6c60c11516e4550b8
SHA1 (patch-ao) = 1ef48142acd8b591b11013b46048d9145f235843
SHA1 (patch-ap) = 8fbfecdb80ee851db569b64201ccd94bd3552a81
diff --git a/lang/python24/patches/patch-am b/lang/python24/patches/patch-am
index 082dd8a51c8..ca5559e75c2 100644
--- a/lang/python24/patches/patch-am
+++ b/lang/python24/patches/patch-am
@@ -1,4 +1,4 @@
-$NetBSD: patch-am,v 1.5 2009/09/09 05:59:38 dsainty Exp $
+$NetBSD: patch-am,v 1.6 2009/09/19 09:30:41 obache Exp $
--- setup.py.orig 2006-10-08 17:41:25.000000000 +0000
+++ setup.py
@@ -7,7 +7,7 @@ $NetBSD: patch-am,v 1.5 2009/09/09 05:59:38 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", "_tkinter", "bsddb", "gdbm", "mpz", "pyexpat", "readline"]
++disabled_module_list = ["_bsddb", "_curses", "_curses_panel", "_tkinter", "gdbm", "pyexpat", "readline"]
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if