diff options
author | obache <obache@pkgsrc.org> | 2009-09-19 09:06:57 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2009-09-19 09:06:57 +0000 |
commit | 1d88b9dcbff723ef649a8e4d1b0fd2098009525a (patch) | |
tree | 673551401d5db03860972209232e7238682eddf7 /lang/python26 | |
parent | d7241c0a75eb0b7db547ebbc04597bfa2a2a5372 (diff) | |
download | pkgsrc-1d88b9dcbff723ef649a8e4d1b0fd2098009525a.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')
-rw-r--r-- | lang/python26/distinfo | 4 | ||||
-rw-r--r-- | lang/python26/patches/patch-am | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/python26/distinfo b/lang/python26/distinfo index 032bec52d55..642e84f07a9 100644 --- a/lang/python26/distinfo +++ b/lang/python26/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2009/07/18 10:41:33 wiz Exp $ +$NetBSD: distinfo,v 1.7 2009/09/19 09:06:57 obache Exp $ SHA1 (Python-2.6.2.tar.bz2) = 125d4ed90f82de1d44f288150bbbda23a6cd27a4 RMD160 (Python-2.6.2.tar.bz2) = 85fa3540cbacf4d0547d2381eb3aa76bef35c2e1 @@ -13,7 +13,7 @@ SHA1 (patch-ai) = 53815e5cd82bf889ec3130b31f8f6ac202dd0948 SHA1 (patch-aj) = a75d680a6b8b1ad3c9222dcb841f4fb10db6d16d SHA1 (patch-ak) = 948362c15ad59abeef46971f9b870b70655a62c7 SHA1 (patch-al) = c39144cfa4a540900fac879b5faa990628fcee3e -SHA1 (patch-am) = 591bca1e2b5c7fb612f07354cb18e0bcd2b08549 +SHA1 (patch-am) = 5a7706aa04b71b24d1400e96f2973699e5c4d147 SHA1 (patch-an) = 17b4e17b3b562c29a050e9bb20447084ce82b8ab SHA1 (patch-ao) = 9bbd5561c010e0a1ab8e0a70d27a5f77fd2089d2 SHA1 (patch-ap) = 39d81b01fa9e1b894be9ae0922881337bb4d17da 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 |