diff options
author | drochner <drochner@pkgsrc.org> | 2002-01-28 09:09:14 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-01-28 09:09:14 +0000 |
commit | f028142fe50b599eca9b794e4c3a69c998abac8e (patch) | |
tree | 1aad4ecf80c460e9f1886e41c739b691b5cbbc00 | |
parent | 8d19facba57f8929ea5974c80f1efa6d87431e57 (diff) | |
download | pkgsrc-f028142fe50b599eca9b794e4c3a69c998abac8e.tar.gz |
don't build curses module - it doesn't work with our curses
-rw-r--r-- | lang/python21/PLIST | 3 | ||||
-rw-r--r-- | lang/python21/distinfo | 4 | ||||
-rw-r--r-- | lang/python21/patches/patch-ac | 15 |
3 files changed, 16 insertions, 6 deletions
diff --git a/lang/python21/PLIST b/lang/python21/PLIST index 96d2ed3b40f..53141dca0a0 100644 --- a/lang/python21/PLIST +++ b/lang/python21/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2002/01/22 13:05:04 drochner Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/01/28 09:09:14 drochner Exp $ bin/pydoc2.1 bin/python2.1 include/python2.1/Python.h @@ -615,7 +615,6 @@ lib/python2.1/knee.py lib/python2.1/knee.pyc lib/python2.1/knee.pyo lib/python2.1/lib-dynload/_codecs.so -lib/python2.1/lib-dynload/_curses.so lib/python2.1/lib-dynload/_locale.so lib/python2.1/lib-dynload/_socket.so lib/python2.1/lib-dynload/_symtable.so diff --git a/lang/python21/distinfo b/lang/python21/distinfo index 735736d34a4..4f4d1fec5a4 100644 --- a/lang/python21/distinfo +++ b/lang/python21/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2002/01/22 13:05:04 drochner Exp $ +$NetBSD: distinfo,v 1.4 2002/01/28 09:09:15 drochner Exp $ SHA1 (Python-2.1.2.tgz) = f7279eaa43a6692948586279c5e85992093a70cc Size (Python-2.1.2.tgz) = 6189889 bytes SHA1 (patch-aa) = 8273acc49a9eedad6e09685098178f3b7fb8f1c6 SHA1 (patch-ab) = f87a4d5c76182ab27ba79b42f00e8a2ff63bcf2b -SHA1 (patch-ac) = b3b61b31daa5d2f5162d363265f0e17e31fb7d10 +SHA1 (patch-ac) = 48c85ff3b1d9cca132d86090aafa74e8e40e448b diff --git a/lang/python21/patches/patch-ac b/lang/python21/patches/patch-ac index 2790cba640d..c7189e4a2fe 100644 --- a/lang/python21/patches/patch-ac +++ b/lang/python21/patches/patch-ac @@ -1,7 +1,7 @@ -$NetBSD: patch-ac,v 1.1 2002/01/22 13:05:05 drochner Exp $ +$NetBSD: patch-ac,v 1.2 2002/01/28 09:09:16 drochner Exp $ --- setup.py.orig Thu Dec 27 22:51:02 2001 -+++ setup.py Tue Jan 22 11:11:35 2002 ++++ setup.py Sun Jan 27 15:53:18 2002 @@ -265,13 +265,13 @@ # These represent audio samples or images as strings: @@ -20,6 +20,17 @@ $NetBSD: patch-ac,v 1.1 2002/01/22 13:05:05 drochner Exp $ # readline if self.compiler.find_library_file(lib_dirs, 'readline'): +@@ -417,8 +417,8 @@ + else: + curses_libs = ['curses', 'termcap'] + +- exts.append( Extension('_curses', ['_cursesmodule.c'], +- libraries = curses_libs) ) ++# exts.append( Extension('_curses', ['_cursesmodule.c'], ++# libraries = curses_libs) ) + + # If the curses module is enabled, check for the panel module + if (os.path.exists('Modules/_curses_panel.c') and @@ -609,7 +609,7 @@ ext_modules=[Extension('struct', ['structmodule.c'])], |