pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/python26 Fixes modules in disable_module_list



details:   https://anonhg.NetBSD.org/pkgsrc/rev/736d42a7e361
branches:  trunk
changeset: 399376:736d42a7e361
user:      obache <obache%pkgsrc.org@localhost>
date:      Sat Sep 19 09:06:57 2009 +0000

description:
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:

 lang/python26/distinfo         |  4 ++--
 lang/python26/patches/patch-am |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 5c1c6f87bf79 -r 736d42a7e361 lang/python26/distinfo
--- a/lang/python26/distinfo    Sat Sep 19 09:01:59 2009 +0000
+++ b/lang/python26/distinfo    Sat Sep 19 09:06:57 2009 +0000
@@ -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-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 -r 5c1c6f87bf79 -r 736d42a7e361 lang/python26/patches/patch-am
--- a/lang/python26/patches/patch-am    Sat Sep 19 09:01:59 2009 +0000
+++ b/lang/python26/patches/patch-am    Sat Sep 19 09:06:57 2009 +0000
@@ -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 @@
  
  # 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



Home | Main Index | Thread Index | Old Index