Upgrade to Python v2.1.
This commit is contained in:
parent
8335840edf
commit
990d1f6361
@ -1,13 +1,15 @@
|
|||||||
# $OpenBSD: Makefile,v 1.29 2001/03/29 16:54:05 jasoni Exp $
|
# $OpenBSD: Makefile,v 1.30 2001/06/05 17:00:21 jasoni Exp $
|
||||||
|
|
||||||
COMMENT= "interpreted object-oriented programming language"
|
COMMENT= "interpreted object-oriented programming language"
|
||||||
COMMENT-tools= "extra tools for python"
|
COMMENT-tools= "extra tools for python"
|
||||||
|
|
||||||
VERSION= 2.0
|
VERSION= 2.1
|
||||||
DISTNAME= python-${VERSION}
|
PKGNAME= python-${VERSION}
|
||||||
|
DISTNAME= Python-${VERSION}
|
||||||
CATEGORIES= lang
|
CATEGORIES= lang
|
||||||
NEED_VERSION= 1.363
|
NEED_VERSION= 1.363
|
||||||
MASTER_SITES= ftp://www.python.org/pub/python/src/
|
MASTER_SITES= ftp://ftp.python.org/pub/python/${VERSION}/
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
||||||
HOMEPAGE= http://www.python.org/
|
HOMEPAGE= http://www.python.org/
|
||||||
|
|
||||||
@ -42,7 +44,7 @@ MAKE_FLAGS+= OPT="${CFLAGS}"
|
|||||||
|
|
||||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libgmp.a::devel/gmp
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libgmp.a::devel/gmp
|
||||||
|
|
||||||
WRKDIST= ${WRKDIR}/Python-${VERSION}
|
#WRKDIST= ${WRKDIR}/Python-${VERSION}
|
||||||
|
|
||||||
# If libc_r exists, thread support is compiled in by default unless this
|
# If libc_r exists, thread support is compiled in by default unless this
|
||||||
# is a SPARC system where threads are currently non functional.
|
# is a SPARC system where threads are currently non functional.
|
||||||
@ -75,10 +77,14 @@ pre-configure:
|
|||||||
post-configure:
|
post-configure:
|
||||||
cd ${.CURDIR} && make finish-setup
|
cd ${.CURDIR} && make finish-setup
|
||||||
|
|
||||||
|
patch:
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
|
@${INSTALL_SCRIPT} ${WRKSRC}/Tools/scripts/pydoc ${PREFIX}/bin
|
||||||
@strip ${PREFIX}/bin/python
|
@strip ${PREFIX}/bin/python
|
||||||
@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python${VERSION}; tar -xf -)
|
@cd ${WRKSRC}; tar -cf - Tools | (cd ${PREFIX}/lib/python${VERSION}; \
|
||||||
|
tar -xf -)
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
||||||
.if defined(NO64BIT)
|
.if defined(NO64BIT)
|
||||||
@ -99,3 +105,4 @@ finish-setup:
|
|||||||
@sed -e 's,@NOSHARED@,${NOSHARED},g' \
|
@sed -e 's,@NOSHARED@,${NOSHARED},g' \
|
||||||
${FILESDIR}/${file} >> ${WRKSRC}/Modules/Setup.local
|
${FILESDIR}/${file} >> ${WRKSRC}/Modules/Setup.local
|
||||||
.endfor
|
.endfor
|
||||||
|
(cd ${WRKSRC}; make Makefile)
|
@ -2,16 +2,18 @@
|
|||||||
# The file Setup is used by the makesetup script to construct the files
|
# The file Setup is used by the makesetup script to construct the files
|
||||||
# Makefile and config.c, from Makefile.pre and config.c.in,
|
# Makefile and config.c, from Makefile.pre and config.c.in,
|
||||||
# respectively. The file Setup itself is initially copied from
|
# respectively. The file Setup itself is initially copied from
|
||||||
# Setup.in; once it exists it will not be overwritten, so you can edit
|
# Setup.dist; once it exists it will not be overwritten, so you can edit
|
||||||
# Setup to your heart's content. Note that Makefile.pre is created
|
# Setup to your heart's content. Note that Makefile.pre is created
|
||||||
# from Makefile.pre.in by the toplevel configure script.
|
# from Makefile.pre.in by the toplevel configure script.
|
||||||
|
|
||||||
# (VPATH notes: Setup and Makefile.pre are in the build directory, as
|
# (VPATH notes: Setup and Makefile.pre are in the build directory, as
|
||||||
# are Makefile and config.c; the *.in files are in the source
|
# are Makefile and config.c; the *.in and *.dist files are in the source
|
||||||
# directory.)
|
# directory.)
|
||||||
|
|
||||||
# Each line in this file describes one or more optional modules.
|
# Each line in this file describes one or more optional modules.
|
||||||
# Comment out lines to suppress modules.
|
# Modules enabled here will not be compiled by the setup.py script,
|
||||||
|
# so the file can be used to override setup.py's behavior.
|
||||||
|
|
||||||
# Lines have the following structure:
|
# Lines have the following structure:
|
||||||
#
|
#
|
||||||
# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
|
# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
|
||||||
@ -79,6 +81,10 @@ TESTPATH=
|
|||||||
# Path components for machine- or system-dependent modules and shared libraries
|
# Path components for machine- or system-dependent modules and shared libraries
|
||||||
MACHDEPPATH=:plat-$(MACHDEP)
|
MACHDEPPATH=:plat-$(MACHDEP)
|
||||||
|
|
||||||
|
# Path component for the Tkinter-related modules
|
||||||
|
# The TKPATH variable is always enabled, to save you the effort.
|
||||||
|
TKPATH=:lib-tk
|
||||||
|
|
||||||
COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(TKPATH)
|
COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(TKPATH)
|
||||||
PYTHONPATH=$(COREPYTHONPATH)
|
PYTHONPATH=$(COREPYTHONPATH)
|
||||||
|
|
||||||
@ -87,14 +93,22 @@ PYTHONPATH=$(COREPYTHONPATH)
|
|||||||
# various reasons; therefore they are listed here instead of in the
|
# various reasons; therefore they are listed here instead of in the
|
||||||
# normal order.
|
# normal order.
|
||||||
|
|
||||||
# Some modules that are normally always on:
|
# This only contains the minimal set of modules required to run the
|
||||||
|
# setup.py script in the root of the Python source tree.
|
||||||
|
|
||||||
regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style
|
|
||||||
pcre pcremodule.c pypcre.c # Regular expressions, Perl style (for re.py)
|
|
||||||
posix posixmodule.c # posix (UNIX) system calls
|
posix posixmodule.c # posix (UNIX) system calls
|
||||||
signal signalmodule.c # signal(2)
|
|
||||||
_sre _sre.c # Fredrik Lundh's new regular expressions
|
_sre _sre.c # Fredrik Lundh's new regular expressions
|
||||||
|
|
||||||
|
# The rest of the modules listed in this file are all commented out by
|
||||||
|
# default. Usually they can be detected and built as dynamically
|
||||||
|
# loaded modules by the new setup.py script added in Python 2.1. If
|
||||||
|
# you're on a platform that doesn't support dynamic loading, want to
|
||||||
|
# compile modules statically into the Python binary, or need to
|
||||||
|
# specify some odd set of compiler switches, you can uncomment the
|
||||||
|
# appropriate lines below.
|
||||||
|
|
||||||
|
# ======================================================================
|
||||||
|
|
||||||
# The SGI specific GL module:
|
# The SGI specific GL module:
|
||||||
|
|
||||||
GLHACK=-Dclear=__GLclear
|
GLHACK=-Dclear=__GLclear
|
||||||
@ -129,15 +143,14 @@ readline readline.c -lreadline -ltermcap
|
|||||||
array arraymodule.c # array objects
|
array arraymodule.c # array objects
|
||||||
cmath cmathmodule.c # -lm # complex math library functions
|
cmath cmathmodule.c # -lm # complex math library functions
|
||||||
math mathmodule.c # -lm # math library functions, e.g. sin()
|
math mathmodule.c # -lm # math library functions, e.g. sin()
|
||||||
strop stropmodule.c # fast string operations implemented in C
|
|
||||||
struct structmodule.c # binary structure packing/unpacking
|
struct structmodule.c # binary structure packing/unpacking
|
||||||
time timemodule.c # -lm # time operations and variables
|
time timemodule.c # -lm # time operations and variables
|
||||||
operator operator.c # operator.add() and similar goodies
|
operator operator.c # operator.add() and similar goodies
|
||||||
|
_weakref _weakref.c # basic weak reference support
|
||||||
_codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
_codecs _codecsmodule.c # access to the builtin codecs and codec registry
|
||||||
|
_testcapi _testcapimodule.c # Python C API test module
|
||||||
|
|
||||||
unicodedata unicodedata.c unicodedatabase.c
|
unicodedata unicodedata.c # static Unicode character database
|
||||||
# static Unicode character database
|
|
||||||
ucnhash ucnhash.c # Unicode Character Name expansion hash table
|
|
||||||
|
|
||||||
_locale _localemodule.c # access to ISO C locale support
|
_locale _localemodule.c # access to ISO C locale support
|
||||||
|
|
||||||
@ -151,21 +164,27 @@ pwd pwdmodule.c # pwd(3)
|
|||||||
grp grpmodule.c # grp(3)
|
grp grpmodule.c # grp(3)
|
||||||
errno errnomodule.c # posix (UNIX) errno values
|
errno errnomodule.c # posix (UNIX) errno values
|
||||||
select selectmodule.c # select(2); not on ancient System V
|
select selectmodule.c # select(2); not on ancient System V
|
||||||
#_socket socketmodule.c # socket(2)
|
|
||||||
|
|
||||||
# Memory-mapped files (also works on Win32).
|
# Memory-mapped files (also works on Win32).
|
||||||
mmap mmapmodule.c
|
mmap mmapmodule.c
|
||||||
|
|
||||||
# Socket module compiled with SSL support; you must edit the SSL variable:
|
# Dynamic readlines
|
||||||
|
#xreadlines xreadlinesmodule.c
|
||||||
|
|
||||||
|
# for socket(2), without SSL support.
|
||||||
|
#_socket socketmodule.c
|
||||||
|
|
||||||
|
# Socket module compiled with SSL support; you must comment out the other
|
||||||
|
# socket line above, and possibly edit the SSL variable:
|
||||||
#SSL=/usr/local/ssl
|
#SSL=/usr/local/ssl
|
||||||
#_socket socketmodule.c \
|
|
||||||
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
|
|
||||||
# -L$(SSL)/lib -lssl -lcrypto
|
|
||||||
_socket socketmodule.c \
|
_socket socketmodule.c \
|
||||||
-DUSE_SSL -I/usr/include/ssl -lssl -lcrypto
|
-DUSE_SSL -I/usr/include/ssl -lssl -lcrypto
|
||||||
|
|
||||||
# The crypt module is now disabled by default because it breaks builds
|
# The crypt module is now disabled by default because it breaks builds
|
||||||
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
|
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
|
||||||
|
#
|
||||||
|
# First, look at Setup.config; configure may have set this for you.
|
||||||
|
|
||||||
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
|
||||||
|
|
||||||
|
|
||||||
@ -211,6 +230,7 @@ sha shamodule.c
|
|||||||
# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
|
# ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
|
||||||
|
|
||||||
#GMP=/ufs/guido/src/gmp
|
#GMP=/ufs/guido/src/gmp
|
||||||
|
#mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
|
||||||
mpz mpzmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -lgmp
|
mpz mpzmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -lgmp
|
||||||
|
|
||||||
|
|
||||||
@ -255,7 +275,8 @@ mpz mpzmodule.c -I${LOCALBASE}/include -L${LOCALBASE}/lib -lgmp
|
|||||||
#sunaudiodev sunaudiodev.c
|
#sunaudiodev sunaudiodev.c
|
||||||
|
|
||||||
|
|
||||||
# Linux specific modules -- off by default:
|
# A Linux specific module -- off by default; this may also work on
|
||||||
|
# some *BSDs.
|
||||||
|
|
||||||
#linuxaudiodev linuxaudiodev.c
|
#linuxaudiodev linuxaudiodev.c
|
||||||
|
|
||||||
@ -267,9 +288,6 @@ timing timingmodule.c
|
|||||||
|
|
||||||
# The _tkinter module.
|
# The _tkinter module.
|
||||||
#
|
#
|
||||||
# The TKPATH variable is always enabled, to save you the effort.
|
|
||||||
TKPATH=:lib-tk
|
|
||||||
|
|
||||||
# The command for _tkinter is long and site specific. Please
|
# The command for _tkinter is long and site specific. Please
|
||||||
# uncomment and/or edit those parts as indicated. If you don't have a
|
# uncomment and/or edit those parts as indicated. If you don't have a
|
||||||
# specific extension (e.g. Tix or BLT), leave the corresponding line
|
# specific extension (e.g. Tix or BLT), leave the corresponding line
|
||||||
@ -281,6 +299,8 @@ TKPATH=:lib-tk
|
|||||||
|
|
||||||
# *** Always uncomment this (leave the leading underscore in!):
|
# *** Always uncomment this (leave the leading underscore in!):
|
||||||
# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
|
||||||
|
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
|
||||||
|
# -L/usr/local/lib \
|
||||||
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
|
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
|
||||||
# -I/usr/local/include \
|
# -I/usr/local/include \
|
||||||
# *** Uncomment and edit to reflect where your X11 header files are:
|
# *** Uncomment and edit to reflect where your X11 header files are:
|
||||||
@ -288,17 +308,16 @@ TKPATH=:lib-tk
|
|||||||
# *** Or uncomment this for Solaris:
|
# *** Or uncomment this for Solaris:
|
||||||
# -I/usr/openwin/include \
|
# -I/usr/openwin/include \
|
||||||
# *** Uncomment and edit for Tix extension only:
|
# *** Uncomment and edit for Tix extension only:
|
||||||
# -DWITH_TIX -ltix4.1.8.0 \
|
# -DWITH_TIX -ltix8.1.8.2 \
|
||||||
# *** Uncomment and edit for BLT extension only:
|
# *** Uncomment and edit for BLT extension only:
|
||||||
# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
|
# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
|
||||||
# *** Uncomment and edit for PIL (TkImaging) extension only:
|
# *** Uncomment and edit for PIL (TkImaging) extension only:
|
||||||
|
# (See http://www.pythonware.com/products/pil/ for more info)
|
||||||
# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
|
# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
|
||||||
# *** Uncomment and edit for TOGL extension only:
|
# *** Uncomment and edit for TOGL extension only:
|
||||||
# -DWITH_TOGL togl.c \
|
# -DWITH_TOGL togl.c \
|
||||||
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
|
|
||||||
# -L/usr/local/lib \
|
|
||||||
# *** Uncomment and edit to reflect your Tcl/Tk versions:
|
# *** Uncomment and edit to reflect your Tcl/Tk versions:
|
||||||
# -ltk8.0 -ltcl8.0 \
|
# -ltk8.2 -ltcl8.2 \
|
||||||
# *** Uncomment and edit to reflect where your X11 libraries are:
|
# *** Uncomment and edit to reflect where your X11 libraries are:
|
||||||
# -L/usr/X11R6/lib \
|
# -L/usr/X11R6/lib \
|
||||||
# *** Or uncomment this for Solaris:
|
# *** Or uncomment this for Solaris:
|
||||||
@ -320,9 +339,12 @@ syslog syslogmodule.c # syslog daemon interface
|
|||||||
# provided by the ncurses library. e.g. on Linux, link with -lncurses
|
# provided by the ncurses library. e.g. on Linux, link with -lncurses
|
||||||
# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
|
# instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
|
||||||
# -L/usr/5lib before -lcurses).
|
# -L/usr/5lib before -lcurses).
|
||||||
|
#
|
||||||
|
# First, look at Setup.config; configure may have set this for you.
|
||||||
|
|
||||||
_curses _cursesmodule.c -lcurses -ltermcap
|
_curses _cursesmodule.c -lcurses -ltermcap
|
||||||
|
# Wrapper for the panel library that's part of ncurses and SYSV curses.
|
||||||
|
_curses_panel _curses_panel.c -lpanel -lcurses
|
||||||
|
|
||||||
|
|
||||||
# Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
|
# Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
|
||||||
@ -345,11 +367,18 @@ new newmodule.c
|
|||||||
# implementation independent wrapper for these; dumbdbm.py provides
|
# implementation independent wrapper for these; dumbdbm.py provides
|
||||||
# similar functionality (but slower of course) implemented in Python.
|
# similar functionality (but slower of course) implemented in Python.
|
||||||
|
|
||||||
# The standard Unix dbm module:
|
# The standard Unix dbm module has been moved to Setup.config so that
|
||||||
|
# it will be compiled as a shared library by default. Compiling it as
|
||||||
|
# a built-in module causes conflicts with the pybsddb3 module since it
|
||||||
|
# creates a static dependency on an out-of-date version of db.so.
|
||||||
|
#
|
||||||
|
# First, look at Setup.config; configure may have set this for you.
|
||||||
|
|
||||||
dbm dbmmodule.c # dbm(3) may require -lndbm or similar
|
dbm dbmmodule.c # dbm(3) may require -lndbm or similar
|
||||||
|
|
||||||
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
|
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
|
||||||
|
#
|
||||||
|
# First, look at Setup.config; configure may have set this for you.
|
||||||
|
|
||||||
#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
|
#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
|
||||||
|
|
||||||
@ -376,9 +405,6 @@ dbm dbmmodule.c # dbm(3) may require -lndbm or similar
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# David Wayne Williams' soundex module (obsolete -- this will disappear!)
|
|
||||||
#soundex soundex.c
|
|
||||||
|
|
||||||
# Helper module for various ascii-encoders
|
# Helper module for various ascii-encoders
|
||||||
binascii binascii.c
|
binascii binascii.c
|
||||||
|
|
||||||
@ -437,3 +463,4 @@ zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
|||||||
|
|
||||||
# Example -- included for reference only:
|
# Example -- included for reference only:
|
||||||
# xx xxmodule.c
|
# xx xxmodule.c
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
MD5 (python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
MD5 (Python-2.1.tgz) = 2ba2baeccd6100a4be80e6368a975054
|
||||||
RMD160 (python-2.0.tar.gz) = f3087ef879174cd5dfcf8e0117bb8b3770cc148c
|
RMD160 (Python-2.1.tgz) = 5fa0613b0a4f1bb7c8830d0264907dacf48e2ba2
|
||||||
SHA1 (python-2.0.tar.gz) = 16ca42c5be1ddf5dc08d9b59b97f728f330e1fdc
|
SHA1 (Python-2.1.tgz) = f0abefe1d213ab72ddea9eca87af9ec7c27d9983
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
--- Lib/tempfile.py.orig Mon Nov 6 00:47:23 2000
|
$OpenBSD: patch-Lib_tempfile_py,v 1.5 2001/06/05 17:00:23 jasoni Exp $
|
||||||
+++ Lib/tempfile.py Mon Nov 6 00:48:02 2000
|
--- Lib/tempfile.py.orig Thu Mar 1 21:51:16 2001
|
||||||
@@ -23,7 +23,7 @@ def gettempdir():
|
+++ Lib/tempfile.py Sun Jun 3 09:18:01 2001
|
||||||
|
@@ -21,7 +21,7 @@ def gettempdir():
|
||||||
pwd = os.getcwd()
|
pwd = os.getcwd()
|
||||||
except (AttributeError, os.error):
|
except (AttributeError, os.error):
|
||||||
pwd = os.curdir
|
pwd = os.curdir
|
||||||
- attempdirs = ['/var/tmp', '/usr/tmp', '/tmp', pwd]
|
- attempdirs = ['/tmp', '/var/tmp', '/usr/tmp', pwd]
|
||||||
+ attempdirs = ['/var/tmp', '/tmp', pwd]
|
+ attempdirs = ['/tmp', '/var/tmp', pwd]
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
attempdirs.insert(0, 'C:\\TEMP')
|
attempdirs.insert(0, 'C:\\TEMP')
|
||||||
attempdirs.insert(0, '\\TEMP')
|
attempdirs.insert(0, '\\TEMP')
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
--- Makefile.in.orig Mon Oct 16 15:50:06 2000
|
|
||||||
+++ Makefile.in Mon Nov 20 16:26:08 2000
|
|
||||||
@@ -100,8 +100,8 @@ FILEMODE= 644
|
|
||||||
|
|
||||||
# Portable install script (configure doesn't always guess right)
|
|
||||||
INSTALL= @srcdir@/install-sh -c
|
|
||||||
-INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
|
|
||||||
-INSTALL_DATA= ${INSTALL} -m $(FILEMODE)
|
|
||||||
+INSTALL_PROGRAM=${BSD_INSTALL_SCRIPT}
|
|
||||||
+INSTALL_DATA= ${BSD_INSTALL_DATA}
|
|
||||||
|
|
||||||
# Use this to make a link between python$(VERSION) and python in $(BINDIR)
|
|
||||||
LN=@LN@
|
|
||||||
@@ -260,7 +260,7 @@ maninstall:
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Misc/python.man \
|
|
||||||
- $(MANDIR)/man1/python.1
|
|
||||||
+ $(MANDIR)/man1/python2.1
|
|
||||||
|
|
||||||
# Install the library
|
|
||||||
PLATDIR= plat-$(MACHDEP)
|
|
12
lang/python/patches/patch-Makefile_pre_in
Normal file
12
lang/python/patches/patch-Makefile_pre_in
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-Makefile_pre_in,v 1.1 2001/06/05 17:00:23 jasoni Exp $
|
||||||
|
--- Makefile.pre.in.orig Sat Apr 14 10:57:07 2001
|
||||||
|
+++ Makefile.pre.in Sun Jun 3 09:16:44 2001
|
||||||
|
@@ -552,7 +552,7 @@ maninstall:
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
$(INSTALL_DATA) $(srcdir)/Misc/python.man \
|
||||||
|
- $(MANDIR)/man1/python.1
|
||||||
|
+ $(MANDIR)/man1/python2.1
|
||||||
|
|
||||||
|
# Install the library
|
||||||
|
PLATDIR= plat-$(MACHDEP)
|
@ -1,15 +0,0 @@
|
|||||||
--- Python/dynload_shlib.c.orig Mon Nov 6 00:50:29 2000
|
|
||||||
+++ Python/dynload_shlib.c Mon Nov 6 00:51:25 2000
|
|
||||||
@@ -55,8 +55,10 @@ dl_funcptr _PyImport_GetDynLoadFunc(cons
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ### should there be a leading underscore for some platforms? */
|
|
||||||
- sprintf(funcname, "init%.200s", shortname);
|
|
||||||
-
|
|
||||||
+ /* sprintf(funcname, "init%.200s", shortname); */
|
|
||||||
+ /* Like on OpenBSD */
|
|
||||||
+ sprintf(funcname, "_init%.200s", shortname);
|
|
||||||
+
|
|
||||||
if (fp != NULL) {
|
|
||||||
int i;
|
|
||||||
struct stat statb;
|
|
13
lang/python/patches/patch-setup_py
Normal file
13
lang/python/patches/patch-setup_py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
$OpenBSD: patch-setup_py,v 1.1 2001/06/05 17:00:25 jasoni Exp $
|
||||||
|
--- setup.py.orig Tue Jun 5 08:43:34 2001
|
||||||
|
+++ setup.py Tue Jun 5 08:44:07 2001
|
||||||
|
@@ -607,7 +607,8 @@ def main():
|
||||||
|
ext_modules=[Extension('struct', ['structmodule.c'])],
|
||||||
|
|
||||||
|
# Scripts to install
|
||||||
|
- scripts = ['Tools/scripts/pydoc']
|
||||||
|
+ #scripts = ['Tools/scripts/pydoc']
|
||||||
|
+ scripts = []
|
||||||
|
)
|
||||||
|
|
||||||
|
# --install-platlib
|
@ -10,7 +10,7 @@ PREFIX=${PKG_PREFIX:-/usr/local}
|
|||||||
|
|
||||||
if [ -L ${PREFIX}/bin/python ]; then
|
if [ -L ${PREFIX}/bin/python ]; then
|
||||||
LINK=`readlink ${PREFIX}/bin/python`
|
LINK=`readlink ${PREFIX}/bin/python`
|
||||||
if [ ${LINK} == "python2.0" ]; then
|
if [ ${LINK} == "python2.1" ]; then
|
||||||
rm -f ${PREFIX}/bin/python
|
rm -f ${PREFIX}/bin/python
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
#
|
#
|
||||||
# $OpenBSD: INSTALL,v 1.1 2000/12/13 05:26:48 jasoni Exp $
|
# $OpenBSD: INSTALL,v 1.2 2001/06/05 17:00:25 jasoni Exp $
|
||||||
#
|
#
|
||||||
# python2 installation
|
# python2 installation
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ do_notice_oldpython()
|
|||||||
{
|
{
|
||||||
echo "| - there appears to another version of python installed, to avoid"
|
echo "| - there appears to another version of python installed, to avoid"
|
||||||
echo "| conflict, this python binary has been installed as:"
|
echo "| conflict, this python binary has been installed as:"
|
||||||
echo "| ${PREFIX}/bin/python2.0"
|
echo "| ${PREFIX}/bin/python2.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
do_notice_bottom()
|
do_notice_bottom()
|
||||||
@ -48,7 +48,7 @@ case $2 in
|
|||||||
POST-INSTALL)
|
POST-INSTALL)
|
||||||
do_notice_top $1
|
do_notice_top $1
|
||||||
if [ ! -e ${PREFIX}/bin/python ]; then
|
if [ ! -e ${PREFIX}/bin/python ]; then
|
||||||
ln -s python2.0 ${PREFIX}/bin/python
|
ln -s python2.1 ${PREFIX}/bin/python
|
||||||
else
|
else
|
||||||
do_notice_oldpython $1
|
do_notice_oldpython $1
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PFRAG.mm,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
@comment $OpenBSD: PFRAG.mm,v 1.7 2001/06/05 17:00:25 jasoni Exp $
|
||||||
lib/python2.0/lib-dynload/audioop.so
|
lib/python2.1/lib-dynload/audioop.so
|
||||||
lib/python2.0/lib-dynload/imageop.so
|
lib/python2.1/lib-dynload/imageop.so
|
||||||
lib/python2.0/lib-dynload/rgbimgmodule.so
|
lib/python2.1/lib-dynload/rgbimgmodule.so
|
||||||
|
@ -1,42 +1,50 @@
|
|||||||
@comment $OpenBSD: PFRAG.shared,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
@comment $OpenBSD: PFRAG.shared,v 1.7 2001/06/05 17:00:26 jasoni Exp $
|
||||||
%%mm%%
|
%%mm%%
|
||||||
%%tk%%
|
%%tk%%
|
||||||
lib/python2.0/lib-dynload/_codecsmodule.so
|
lib/python2.1/lib-dynload/_codecsmodule.so
|
||||||
lib/python2.0/lib-dynload/_cursesmodule.so
|
lib/python2.1/lib-dynload/_curses_panel.so
|
||||||
lib/python2.0/lib-dynload/_localemodule.so
|
lib/python2.1/lib-dynload/_cursesmodule.so
|
||||||
lib/python2.0/lib-dynload/_socketmodule.so
|
lib/python2.1/lib-dynload/_localemodule.so
|
||||||
lib/python2.0/lib-dynload/arraymodule.so
|
lib/python2.1/lib-dynload/_socketmodule.so
|
||||||
lib/python2.0/lib-dynload/binascii.so
|
lib/python2.1/lib-dynload/_symtable.so
|
||||||
lib/python2.0/lib-dynload/cPickle.so
|
lib/python2.1/lib-dynload/_testcapimodule.so
|
||||||
lib/python2.0/lib-dynload/cStringIO.so
|
lib/python2.1/lib-dynload/_weakref.so
|
||||||
lib/python2.0/lib-dynload/cmathmodule.so
|
lib/python2.1/lib-dynload/arraymodule.so
|
||||||
lib/python2.0/lib-dynload/cryptmodule.so
|
lib/python2.1/lib-dynload/binascii.so
|
||||||
lib/python2.0/lib-dynload/dbmmodule.so
|
lib/python2.1/lib-dynload/bsddb.so
|
||||||
lib/python2.0/lib-dynload/errnomodule.so
|
lib/python2.1/lib-dynload/cPickle.so
|
||||||
lib/python2.0/lib-dynload/fcntlmodule.so
|
lib/python2.1/lib-dynload/cStringIO.so
|
||||||
lib/python2.0/lib-dynload/fpectlmodule.so
|
lib/python2.1/lib-dynload/cmathmodule.so
|
||||||
lib/python2.0/lib-dynload/fpetestmodule.so
|
lib/python2.1/lib-dynload/cryptmodule.so
|
||||||
lib/python2.0/lib-dynload/grpmodule.so
|
lib/python2.1/lib-dynload/dbmmodule.so
|
||||||
lib/python2.0/lib-dynload/mathmodule.so
|
lib/python2.1/lib-dynload/errnomodule.so
|
||||||
lib/python2.0/lib-dynload/md5module.so
|
lib/python2.1/lib-dynload/fcntlmodule.so
|
||||||
lib/python2.0/lib-dynload/mmapmodule.so
|
lib/python2.1/lib-dynload/fpectlmodule.so
|
||||||
lib/python2.0/lib-dynload/mpzmodule.so
|
lib/python2.1/lib-dynload/fpetestmodule.so
|
||||||
lib/python2.0/lib-dynload/newmodule.so
|
lib/python2.1/lib-dynload/grpmodule.so
|
||||||
lib/python2.0/lib-dynload/operator.so
|
lib/python2.1/lib-dynload/mathmodule.so
|
||||||
lib/python2.0/lib-dynload/parsermodule.so
|
lib/python2.1/lib-dynload/md5module.so
|
||||||
lib/python2.0/lib-dynload/pwdmodule.so
|
lib/python2.1/lib-dynload/mmapmodule.so
|
||||||
lib/python2.0/lib-dynload/readline.so
|
lib/python2.1/lib-dynload/mpzmodule.so
|
||||||
lib/python2.0/lib-dynload/resource.so
|
lib/python2.1/lib-dynload/newmodule.so
|
||||||
lib/python2.0/lib-dynload/rotormodule.so
|
lib/python2.1/lib-dynload/nis.so
|
||||||
lib/python2.0/lib-dynload/selectmodule.so
|
lib/python2.1/lib-dynload/operator.so
|
||||||
lib/python2.0/lib-dynload/shamodule.so
|
lib/python2.1/lib-dynload/parsermodule.so
|
||||||
lib/python2.0/lib-dynload/stropmodule.so
|
lib/python2.1/lib-dynload/pcre.so
|
||||||
lib/python2.0/lib-dynload/structmodule.so
|
lib/python2.1/lib-dynload/pwdmodule.so
|
||||||
lib/python2.0/lib-dynload/syslogmodule.so
|
lib/python2.1/lib-dynload/readline.so
|
||||||
lib/python2.0/lib-dynload/termios.so
|
lib/python2.1/lib-dynload/regex.so
|
||||||
lib/python2.0/lib-dynload/timemodule.so
|
lib/python2.1/lib-dynload/resource.so
|
||||||
lib/python2.0/lib-dynload/timingmodule.so
|
lib/python2.1/lib-dynload/rotormodule.so
|
||||||
lib/python2.0/lib-dynload/ucnhash.so
|
lib/python2.1/lib-dynload/selectmodule.so
|
||||||
lib/python2.0/lib-dynload/unicodedata.so
|
lib/python2.1/lib-dynload/shamodule.so
|
||||||
lib/python2.0/lib-dynload/zlibmodule.so
|
lib/python2.1/lib-dynload/strop.so
|
||||||
@dirrm lib/python2.0/lib-dynload
|
lib/python2.1/lib-dynload/structmodule.so
|
||||||
|
lib/python2.1/lib-dynload/syslogmodule.so
|
||||||
|
lib/python2.1/lib-dynload/termios.so
|
||||||
|
lib/python2.1/lib-dynload/timemodule.so
|
||||||
|
lib/python2.1/lib-dynload/timingmodule.so
|
||||||
|
lib/python2.1/lib-dynload/unicodedata.so
|
||||||
|
lib/python2.1/lib-dynload/xreadlines.so
|
||||||
|
lib/python2.1/lib-dynload/zlibmodule.so
|
||||||
|
@dirrm lib/python2.1/lib-dynload
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
@comment $OpenBSD: PFRAG.tk,v 1.6 2000/12/13 05:26:49 jasoni Exp $
|
@comment $OpenBSD: PFRAG.tk,v 1.7 2001/06/05 17:00:26 jasoni Exp $
|
||||||
lib/python2.0/lib-dynload/_tkinter.so
|
lib/python2.1/lib-dynload/_tkinter.so
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,254 +1,263 @@
|
|||||||
@comment $OpenBSD: PLIST-tools,v 1.7 2000/12/13 05:26:49 jasoni Exp $
|
@comment $OpenBSD: PLIST-tools,v 1.8 2001/06/05 17:00:26 jasoni Exp $
|
||||||
@option no-default-conflict
|
@option no-default-conflict
|
||||||
@pkgdep python-2.0-*
|
@pkgdep python-2.1-*
|
||||||
@pkgcfl python-tools-2.0
|
@pkgcfl python-tools-2.1
|
||||||
lib/python2.0/Tools/README
|
lib/python2.1/Tools/README
|
||||||
lib/python2.0/Tools/audiopy/README
|
lib/python2.1/Tools/audiopy/README
|
||||||
lib/python2.0/Tools/audiopy/audiopy
|
lib/python2.1/Tools/audiopy/audiopy
|
||||||
lib/python2.0/Tools/bgen/README
|
lib/python2.1/Tools/bgen/README
|
||||||
lib/python2.0/Tools/bgen/bgen/bgen.py
|
lib/python2.1/Tools/bgen/bgen/bgen.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenBuffer.py
|
lib/python2.1/Tools/bgen/bgen/bgenBuffer.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenGenerator.py
|
lib/python2.1/Tools/bgen/bgen/bgenGenerator.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenGeneratorGroup.py
|
lib/python2.1/Tools/bgen/bgen/bgenGeneratorGroup.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenHeapBuffer.py
|
lib/python2.1/Tools/bgen/bgen/bgenHeapBuffer.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenModule.py
|
lib/python2.1/Tools/bgen/bgen/bgenModule.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenObjectDefinition.py
|
lib/python2.1/Tools/bgen/bgen/bgenObjectDefinition.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenOutput.py
|
lib/python2.1/Tools/bgen/bgen/bgenOutput.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenStackBuffer.py
|
lib/python2.1/Tools/bgen/bgen/bgenStackBuffer.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenStringBuffer.py
|
lib/python2.1/Tools/bgen/bgen/bgenStringBuffer.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenType.py
|
lib/python2.1/Tools/bgen/bgen/bgenType.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenVariable.py
|
lib/python2.1/Tools/bgen/bgen/bgenVariable.py
|
||||||
lib/python2.0/Tools/bgen/bgen/bgenlocations.py
|
lib/python2.1/Tools/bgen/bgen/bgenlocations.py
|
||||||
lib/python2.0/Tools/bgen/bgen/macsupport.py
|
lib/python2.1/Tools/bgen/bgen/macsupport.py
|
||||||
lib/python2.0/Tools/bgen/bgen/scantools.py
|
lib/python2.1/Tools/bgen/bgen/scantools.py
|
||||||
lib/python2.0/Tools/compiler/compile.py
|
lib/python2.1/Tools/compiler/compile.py
|
||||||
lib/python2.0/Tools/compiler/compiler/__init__.py
|
lib/python2.1/Tools/compiler/compiler/__init__.py
|
||||||
lib/python2.0/Tools/compiler/compiler/ast.py
|
lib/python2.1/Tools/compiler/compiler/ast.py
|
||||||
lib/python2.0/Tools/compiler/compiler/consts.py
|
lib/python2.1/Tools/compiler/compiler/ast.txt
|
||||||
lib/python2.0/Tools/compiler/compiler/misc.py
|
lib/python2.1/Tools/compiler/compiler/astgen.py
|
||||||
lib/python2.0/Tools/compiler/compiler/pyassem.py
|
lib/python2.1/Tools/compiler/compiler/consts.py
|
||||||
lib/python2.0/Tools/compiler/compiler/pycodegen.py
|
lib/python2.1/Tools/compiler/compiler/future.py
|
||||||
lib/python2.0/Tools/compiler/compiler/transformer.py
|
lib/python2.1/Tools/compiler/compiler/misc.py
|
||||||
lib/python2.0/Tools/compiler/compiler/visitor.py
|
lib/python2.1/Tools/compiler/compiler/pyassem.py
|
||||||
lib/python2.0/Tools/compiler/demo.py
|
lib/python2.1/Tools/compiler/compiler/pycodegen.py
|
||||||
lib/python2.0/Tools/compiler/dumppyc.py
|
lib/python2.1/Tools/compiler/compiler/symbols.py
|
||||||
lib/python2.0/Tools/compiler/regrtest.py
|
lib/python2.1/Tools/compiler/compiler/transformer.py
|
||||||
lib/python2.0/Tools/compiler/setup.py
|
lib/python2.1/Tools/compiler/compiler/visitor.py
|
||||||
lib/python2.0/Tools/faqwiz/README
|
lib/python2.1/Tools/compiler/demo.py
|
||||||
lib/python2.0/Tools/faqwiz/faqconf.py
|
lib/python2.1/Tools/compiler/dumppyc.py
|
||||||
lib/python2.0/Tools/faqwiz/faqcust.py
|
lib/python2.1/Tools/compiler/regrtest.py
|
||||||
lib/python2.0/Tools/faqwiz/faqw.py
|
lib/python2.1/Tools/compiler/setup.py
|
||||||
lib/python2.0/Tools/faqwiz/faqwiz.py
|
lib/python2.1/Tools/faqwiz/README
|
||||||
lib/python2.0/Tools/freeze/README
|
lib/python2.1/Tools/faqwiz/faqconf.py
|
||||||
lib/python2.0/Tools/freeze/bkfile.py
|
lib/python2.1/Tools/faqwiz/faqcust.py
|
||||||
lib/python2.0/Tools/freeze/checkextensions.py
|
lib/python2.1/Tools/faqwiz/faqw.py
|
||||||
lib/python2.0/Tools/freeze/checkextensions_win32.py
|
lib/python2.1/Tools/faqwiz/faqwiz.py
|
||||||
lib/python2.0/Tools/freeze/extensions_win32.ini
|
lib/python2.1/Tools/freeze/.cvsignore
|
||||||
lib/python2.0/Tools/freeze/freeze.py
|
lib/python2.1/Tools/freeze/README
|
||||||
lib/python2.0/Tools/freeze/hello.py
|
lib/python2.1/Tools/freeze/bkfile.py
|
||||||
lib/python2.0/Tools/freeze/makeconfig.py
|
lib/python2.1/Tools/freeze/checkextensions.py
|
||||||
lib/python2.0/Tools/freeze/makefreeze.py
|
lib/python2.1/Tools/freeze/checkextensions_win32.py
|
||||||
lib/python2.0/Tools/freeze/makemakefile.py
|
lib/python2.1/Tools/freeze/extensions_win32.ini
|
||||||
lib/python2.0/Tools/freeze/modulefinder.py
|
lib/python2.1/Tools/freeze/freeze.py
|
||||||
lib/python2.0/Tools/freeze/parsesetup.py
|
lib/python2.1/Tools/freeze/hello.py
|
||||||
lib/python2.0/Tools/freeze/win32.html
|
lib/python2.1/Tools/freeze/makeconfig.py
|
||||||
lib/python2.0/Tools/freeze/winmakemakefile.py
|
lib/python2.1/Tools/freeze/makefreeze.py
|
||||||
lib/python2.0/Tools/i18n/msgfmt.py
|
lib/python2.1/Tools/freeze/makemakefile.py
|
||||||
lib/python2.0/Tools/i18n/pygettext.py
|
lib/python2.1/Tools/freeze/modulefinder.py
|
||||||
lib/python2.0/Tools/idle/AutoExpand.py
|
lib/python2.1/Tools/freeze/parsesetup.py
|
||||||
lib/python2.0/Tools/idle/AutoIndent.py
|
lib/python2.1/Tools/freeze/win32.html
|
||||||
lib/python2.0/Tools/idle/Bindings.py
|
lib/python2.1/Tools/freeze/winmakemakefile.py
|
||||||
lib/python2.0/Tools/idle/BrowserControl.py
|
lib/python2.1/Tools/i18n/msgfmt.py
|
||||||
lib/python2.0/Tools/idle/CallTipWindow.py
|
lib/python2.1/Tools/i18n/pygettext.py
|
||||||
lib/python2.0/Tools/idle/CallTips.py
|
lib/python2.1/Tools/idle/AutoExpand.py
|
||||||
lib/python2.0/Tools/idle/ChangeLog
|
lib/python2.1/Tools/idle/AutoIndent.py
|
||||||
lib/python2.0/Tools/idle/ClassBrowser.py
|
lib/python2.1/Tools/idle/Bindings.py
|
||||||
lib/python2.0/Tools/idle/ColorDelegator.py
|
lib/python2.1/Tools/idle/BrowserControl.py
|
||||||
lib/python2.0/Tools/idle/Debugger.py
|
lib/python2.1/Tools/idle/CallTipWindow.py
|
||||||
lib/python2.0/Tools/idle/Delegator.py
|
lib/python2.1/Tools/idle/CallTips.py
|
||||||
lib/python2.0/Tools/idle/EditorWindow.py
|
lib/python2.1/Tools/idle/ChangeLog
|
||||||
lib/python2.0/Tools/idle/FileList.py
|
lib/python2.1/Tools/idle/ClassBrowser.py
|
||||||
lib/python2.0/Tools/idle/FormatParagraph.py
|
lib/python2.1/Tools/idle/ColorDelegator.py
|
||||||
lib/python2.0/Tools/idle/FrameViewer.py
|
lib/python2.1/Tools/idle/Debugger.py
|
||||||
lib/python2.0/Tools/idle/GrepDialog.py
|
lib/python2.1/Tools/idle/Delegator.py
|
||||||
lib/python2.0/Tools/idle/IOBinding.py
|
lib/python2.1/Tools/idle/EditorWindow.py
|
||||||
lib/python2.0/Tools/idle/Icons/folder.gif
|
lib/python2.1/Tools/idle/FileList.py
|
||||||
lib/python2.0/Tools/idle/Icons/minusnode.gif
|
lib/python2.1/Tools/idle/FormatParagraph.py
|
||||||
lib/python2.0/Tools/idle/Icons/openfolder.gif
|
lib/python2.1/Tools/idle/FrameViewer.py
|
||||||
lib/python2.0/Tools/idle/Icons/plusnode.gif
|
lib/python2.1/Tools/idle/GrepDialog.py
|
||||||
lib/python2.0/Tools/idle/Icons/python.gif
|
lib/python2.1/Tools/idle/IOBinding.py
|
||||||
lib/python2.0/Tools/idle/Icons/tk.gif
|
lib/python2.1/Tools/idle/Icons/folder.gif
|
||||||
lib/python2.0/Tools/idle/IdleConf.py
|
lib/python2.1/Tools/idle/Icons/minusnode.gif
|
||||||
lib/python2.0/Tools/idle/IdleHistory.py
|
lib/python2.1/Tools/idle/Icons/openfolder.gif
|
||||||
lib/python2.0/Tools/idle/MultiScrolledLists.py
|
lib/python2.1/Tools/idle/Icons/plusnode.gif
|
||||||
lib/python2.0/Tools/idle/MultiStatusBar.py
|
lib/python2.1/Tools/idle/Icons/python.gif
|
||||||
lib/python2.0/Tools/idle/NEWS.txt
|
lib/python2.1/Tools/idle/Icons/tk.gif
|
||||||
lib/python2.0/Tools/idle/ObjectBrowser.py
|
lib/python2.1/Tools/idle/IdleConf.py
|
||||||
lib/python2.0/Tools/idle/OldStackViewer.py
|
lib/python2.1/Tools/idle/IdleHistory.py
|
||||||
lib/python2.0/Tools/idle/OutputWindow.py
|
lib/python2.1/Tools/idle/MultiScrolledLists.py
|
||||||
lib/python2.0/Tools/idle/ParenMatch.py
|
lib/python2.1/Tools/idle/MultiStatusBar.py
|
||||||
lib/python2.0/Tools/idle/PathBrowser.py
|
lib/python2.1/Tools/idle/NEWS.txt
|
||||||
lib/python2.0/Tools/idle/Percolator.py
|
lib/python2.1/Tools/idle/ObjectBrowser.py
|
||||||
lib/python2.0/Tools/idle/PyParse.py
|
lib/python2.1/Tools/idle/OldStackViewer.py
|
||||||
lib/python2.0/Tools/idle/PyShell.py
|
lib/python2.1/Tools/idle/OutputWindow.py
|
||||||
lib/python2.0/Tools/idle/README.txt
|
lib/python2.1/Tools/idle/ParenMatch.py
|
||||||
lib/python2.0/Tools/idle/RemoteInterp.py
|
lib/python2.1/Tools/idle/PathBrowser.py
|
||||||
lib/python2.0/Tools/idle/ReplaceDialog.py
|
lib/python2.1/Tools/idle/Percolator.py
|
||||||
lib/python2.0/Tools/idle/ScriptBinding.py
|
lib/python2.1/Tools/idle/PyParse.py
|
||||||
lib/python2.0/Tools/idle/ScrolledList.py
|
lib/python2.1/Tools/idle/PyShell.py
|
||||||
lib/python2.0/Tools/idle/SearchBinding.py
|
lib/python2.1/Tools/idle/README.txt
|
||||||
lib/python2.0/Tools/idle/SearchDialog.py
|
lib/python2.1/Tools/idle/RemoteInterp.py
|
||||||
lib/python2.0/Tools/idle/SearchDialogBase.py
|
lib/python2.1/Tools/idle/ReplaceDialog.py
|
||||||
lib/python2.0/Tools/idle/SearchEngine.py
|
lib/python2.1/Tools/idle/ScriptBinding.py
|
||||||
lib/python2.0/Tools/idle/Separator.py
|
lib/python2.1/Tools/idle/ScrolledList.py
|
||||||
lib/python2.0/Tools/idle/StackViewer.py
|
lib/python2.1/Tools/idle/SearchBinding.py
|
||||||
lib/python2.0/Tools/idle/TODO.txt
|
lib/python2.1/Tools/idle/SearchDialog.py
|
||||||
lib/python2.0/Tools/idle/ToolTip.py
|
lib/python2.1/Tools/idle/SearchDialogBase.py
|
||||||
lib/python2.0/Tools/idle/TreeWidget.py
|
lib/python2.1/Tools/idle/SearchEngine.py
|
||||||
lib/python2.0/Tools/idle/UndoDelegator.py
|
lib/python2.1/Tools/idle/Separator.py
|
||||||
lib/python2.0/Tools/idle/WidgetRedirector.py
|
lib/python2.1/Tools/idle/StackViewer.py
|
||||||
lib/python2.0/Tools/idle/WindowList.py
|
lib/python2.1/Tools/idle/TODO.txt
|
||||||
lib/python2.0/Tools/idle/ZoomHeight.py
|
lib/python2.1/Tools/idle/ToolTip.py
|
||||||
lib/python2.0/Tools/idle/__init__.py
|
lib/python2.1/Tools/idle/TreeWidget.py
|
||||||
lib/python2.0/Tools/idle/config-unix.txt
|
lib/python2.1/Tools/idle/UndoDelegator.py
|
||||||
lib/python2.0/Tools/idle/config-win.txt
|
lib/python2.1/Tools/idle/WidgetRedirector.py
|
||||||
lib/python2.0/Tools/idle/config.txt
|
lib/python2.1/Tools/idle/WindowList.py
|
||||||
lib/python2.0/Tools/idle/eventparse.py
|
lib/python2.1/Tools/idle/ZoomHeight.py
|
||||||
lib/python2.0/Tools/idle/extend.txt
|
lib/python2.1/Tools/idle/__init__.py
|
||||||
lib/python2.0/Tools/idle/help.txt
|
lib/python2.1/Tools/idle/config-unix.txt
|
||||||
lib/python2.0/Tools/idle/idle.bat
|
lib/python2.1/Tools/idle/config-win.txt
|
||||||
lib/python2.0/Tools/idle/idle.py
|
lib/python2.1/Tools/idle/config.txt
|
||||||
lib/python2.0/Tools/idle/idle.pyw
|
lib/python2.1/Tools/idle/eventparse.py
|
||||||
lib/python2.0/Tools/idle/idlever.py
|
lib/python2.1/Tools/idle/extend.txt
|
||||||
lib/python2.0/Tools/idle/keydefs.py
|
lib/python2.1/Tools/idle/help.txt
|
||||||
lib/python2.0/Tools/idle/testcode.py
|
lib/python2.1/Tools/idle/idle
|
||||||
lib/python2.0/Tools/modulator/EXAMPLE.py
|
lib/python2.1/Tools/idle/idle.bat
|
||||||
lib/python2.0/Tools/modulator/README
|
lib/python2.1/Tools/idle/idle.py
|
||||||
lib/python2.0/Tools/modulator/ScrolledListbox.py
|
lib/python2.1/Tools/idle/idle.pyw
|
||||||
lib/python2.0/Tools/modulator/Templates/copyright
|
lib/python2.1/Tools/idle/idlever.py
|
||||||
lib/python2.0/Tools/modulator/Templates/module_head
|
lib/python2.1/Tools/idle/keydefs.py
|
||||||
lib/python2.0/Tools/modulator/Templates/module_method
|
lib/python2.1/Tools/idle/setup.py
|
||||||
lib/python2.0/Tools/modulator/Templates/module_tail
|
lib/python2.1/Tools/idle/testcode.py
|
||||||
lib/python2.0/Tools/modulator/Templates/object_head
|
lib/python2.1/Tools/modulator/EXAMPLE.py
|
||||||
lib/python2.0/Tools/modulator/Templates/object_method
|
lib/python2.1/Tools/modulator/README
|
||||||
lib/python2.0/Tools/modulator/Templates/object_mlist
|
lib/python2.1/Tools/modulator/ScrolledListbox.py
|
||||||
lib/python2.0/Tools/modulator/Templates/object_new
|
lib/python2.1/Tools/modulator/Templates/copyright
|
||||||
lib/python2.0/Tools/modulator/Templates/object_structure
|
lib/python2.1/Tools/modulator/Templates/module_head
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tail
|
lib/python2.1/Tools/modulator/Templates/module_method
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_mapping
|
lib/python2.1/Tools/modulator/Templates/module_tail
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_number
|
lib/python2.1/Tools/modulator/Templates/object_head
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_as_sequence
|
lib/python2.1/Tools/modulator/Templates/object_method
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_call
|
lib/python2.1/Tools/modulator/Templates/object_mlist
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_compare
|
lib/python2.1/Tools/modulator/Templates/object_new
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_dealloc
|
lib/python2.1/Tools/modulator/Templates/object_structure
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_getattr
|
lib/python2.1/Tools/modulator/Templates/object_tail
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_hash
|
lib/python2.1/Tools/modulator/Templates/object_tp_as_mapping
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_print
|
lib/python2.1/Tools/modulator/Templates/object_tp_as_number
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_repr
|
lib/python2.1/Tools/modulator/Templates/object_tp_as_sequence
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_setattr
|
lib/python2.1/Tools/modulator/Templates/object_tp_call
|
||||||
lib/python2.0/Tools/modulator/Templates/object_tp_str
|
lib/python2.1/Tools/modulator/Templates/object_tp_compare
|
||||||
lib/python2.0/Tools/modulator/Tkextra.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_dealloc
|
||||||
lib/python2.0/Tools/modulator/genmodule.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_getattr
|
||||||
lib/python2.0/Tools/modulator/modulator.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_hash
|
||||||
lib/python2.0/Tools/modulator/varsubst.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_print
|
||||||
lib/python2.0/Tools/pynche/ChipViewer.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_repr
|
||||||
lib/python2.0/Tools/pynche/ColorDB.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_setattr
|
||||||
lib/python2.0/Tools/pynche/DetailsViewer.py
|
lib/python2.1/Tools/modulator/Templates/object_tp_str
|
||||||
lib/python2.0/Tools/pynche/ListViewer.py
|
lib/python2.1/Tools/modulator/Tkextra.py
|
||||||
lib/python2.0/Tools/pynche/Main.py
|
lib/python2.1/Tools/modulator/genmodule.py
|
||||||
lib/python2.0/Tools/pynche/PyncheWidget.py
|
lib/python2.1/Tools/modulator/modulator.py
|
||||||
lib/python2.0/Tools/pynche/README
|
lib/python2.1/Tools/modulator/varsubst.py
|
||||||
lib/python2.0/Tools/pynche/StripViewer.py
|
lib/python2.1/Tools/pynche/ChipViewer.py
|
||||||
lib/python2.0/Tools/pynche/Switchboard.py
|
lib/python2.1/Tools/pynche/ColorDB.py
|
||||||
lib/python2.0/Tools/pynche/TextViewer.py
|
lib/python2.1/Tools/pynche/DetailsViewer.py
|
||||||
lib/python2.0/Tools/pynche/TypeinViewer.py
|
lib/python2.1/Tools/pynche/ListViewer.py
|
||||||
lib/python2.0/Tools/pynche/X/rgb.txt
|
lib/python2.1/Tools/pynche/Main.py
|
||||||
lib/python2.0/Tools/pynche/X/xlicense.txt
|
lib/python2.1/Tools/pynche/PyncheWidget.py
|
||||||
lib/python2.0/Tools/pynche/__init__.py
|
lib/python2.1/Tools/pynche/README
|
||||||
lib/python2.0/Tools/pynche/html40colors.txt
|
lib/python2.1/Tools/pynche/StripViewer.py
|
||||||
lib/python2.0/Tools/pynche/namedcolors.txt
|
lib/python2.1/Tools/pynche/Switchboard.py
|
||||||
lib/python2.0/Tools/pynche/pyColorChooser.py
|
lib/python2.1/Tools/pynche/TextViewer.py
|
||||||
lib/python2.0/Tools/pynche/pynche
|
lib/python2.1/Tools/pynche/TypeinViewer.py
|
||||||
lib/python2.0/Tools/pynche/pynche.pyw
|
lib/python2.1/Tools/pynche/X/rgb.txt
|
||||||
lib/python2.0/Tools/pynche/webcolors.txt
|
lib/python2.1/Tools/pynche/X/xlicense.txt
|
||||||
lib/python2.0/Tools/pynche/websafe.txt
|
lib/python2.1/Tools/pynche/__init__.py
|
||||||
lib/python2.0/Tools/scripts/README
|
lib/python2.1/Tools/pynche/html40colors.txt
|
||||||
lib/python2.0/Tools/scripts/byteyears.py
|
lib/python2.1/Tools/pynche/namedcolors.txt
|
||||||
lib/python2.0/Tools/scripts/checkappend.py
|
lib/python2.1/Tools/pynche/pyColorChooser.py
|
||||||
lib/python2.0/Tools/scripts/checkpyc.py
|
lib/python2.1/Tools/pynche/pynche
|
||||||
lib/python2.0/Tools/scripts/classfix.py
|
lib/python2.1/Tools/pynche/pynche.pyw
|
||||||
lib/python2.0/Tools/scripts/copytime.py
|
lib/python2.1/Tools/pynche/webcolors.txt
|
||||||
lib/python2.0/Tools/scripts/crlf.py
|
lib/python2.1/Tools/pynche/websafe.txt
|
||||||
lib/python2.0/Tools/scripts/cvsfiles.py
|
lib/python2.1/Tools/scripts/README
|
||||||
lib/python2.0/Tools/scripts/dutree.doc
|
lib/python2.1/Tools/scripts/byteyears.py
|
||||||
lib/python2.0/Tools/scripts/dutree.py
|
lib/python2.1/Tools/scripts/checkappend.py
|
||||||
lib/python2.0/Tools/scripts/eptags.py
|
lib/python2.1/Tools/scripts/checkpyc.py
|
||||||
lib/python2.0/Tools/scripts/findlinksto.py
|
lib/python2.1/Tools/scripts/classfix.py
|
||||||
lib/python2.0/Tools/scripts/fixcid.py
|
lib/python2.1/Tools/scripts/copytime.py
|
||||||
lib/python2.0/Tools/scripts/fixheader.py
|
lib/python2.1/Tools/scripts/crlf.py
|
||||||
lib/python2.0/Tools/scripts/fixnotice.py
|
lib/python2.1/Tools/scripts/cvsfiles.py
|
||||||
lib/python2.0/Tools/scripts/fixps.py
|
lib/python2.1/Tools/scripts/dutree.doc
|
||||||
lib/python2.0/Tools/scripts/ftpmirror.py
|
lib/python2.1/Tools/scripts/dutree.py
|
||||||
lib/python2.0/Tools/scripts/gencodec.py
|
lib/python2.1/Tools/scripts/eptags.py
|
||||||
lib/python2.0/Tools/scripts/h2py.py
|
lib/python2.1/Tools/scripts/findlinksto.py
|
||||||
lib/python2.0/Tools/scripts/ifdef.py
|
lib/python2.1/Tools/scripts/fixcid.py
|
||||||
lib/python2.0/Tools/scripts/lfcr.py
|
lib/python2.1/Tools/scripts/fixheader.py
|
||||||
lib/python2.0/Tools/scripts/linktree.py
|
lib/python2.1/Tools/scripts/fixnotice.py
|
||||||
lib/python2.0/Tools/scripts/lll.py
|
lib/python2.1/Tools/scripts/fixps.py
|
||||||
lib/python2.0/Tools/scripts/logmerge.py
|
lib/python2.1/Tools/scripts/ftpmirror.py
|
||||||
lib/python2.0/Tools/scripts/mailerdaemon.py
|
lib/python2.1/Tools/scripts/gencodec.py
|
||||||
lib/python2.0/Tools/scripts/methfix.py
|
lib/python2.1/Tools/scripts/h2py.py
|
||||||
lib/python2.0/Tools/scripts/mkreal.py
|
lib/python2.1/Tools/scripts/ifdef.py
|
||||||
lib/python2.0/Tools/scripts/ndiff.py
|
lib/python2.1/Tools/scripts/lfcr.py
|
||||||
lib/python2.0/Tools/scripts/nm2def.py
|
lib/python2.1/Tools/scripts/linktree.py
|
||||||
lib/python2.0/Tools/scripts/objgraph.py
|
lib/python2.1/Tools/scripts/lll.py
|
||||||
lib/python2.0/Tools/scripts/parseentities.py
|
lib/python2.1/Tools/scripts/logmerge.py
|
||||||
lib/python2.0/Tools/scripts/pathfix.py
|
lib/python2.1/Tools/scripts/mailerdaemon.py
|
||||||
lib/python2.0/Tools/scripts/pdeps.py
|
lib/python2.1/Tools/scripts/methfix.py
|
||||||
lib/python2.0/Tools/scripts/pindent.py
|
lib/python2.1/Tools/scripts/mkreal.py
|
||||||
lib/python2.0/Tools/scripts/ptags.py
|
lib/python2.1/Tools/scripts/ndiff.py
|
||||||
lib/python2.0/Tools/scripts/redemo.py
|
lib/python2.1/Tools/scripts/nm2def.py
|
||||||
lib/python2.0/Tools/scripts/reindent.py
|
lib/python2.1/Tools/scripts/objgraph.py
|
||||||
lib/python2.0/Tools/scripts/rgrep.py
|
lib/python2.1/Tools/scripts/parseentities.py
|
||||||
lib/python2.0/Tools/scripts/suff.py
|
lib/python2.1/Tools/scripts/pathfix.py
|
||||||
lib/python2.0/Tools/scripts/sum5.py
|
lib/python2.1/Tools/scripts/pdeps.py
|
||||||
lib/python2.0/Tools/scripts/texi2html.py
|
lib/python2.1/Tools/scripts/pindent.py
|
||||||
lib/python2.0/Tools/scripts/trace.py
|
lib/python2.1/Tools/scripts/ptags.py
|
||||||
lib/python2.0/Tools/scripts/treesync.py
|
lib/python2.1/Tools/scripts/pydoc
|
||||||
lib/python2.0/Tools/scripts/untabify.py
|
lib/python2.1/Tools/scripts/pydoc.pyw
|
||||||
lib/python2.0/Tools/scripts/which.py
|
lib/python2.1/Tools/scripts/redemo.py
|
||||||
lib/python2.0/Tools/scripts/xxci.py
|
lib/python2.1/Tools/scripts/reindent.py
|
||||||
lib/python2.0/Tools/unicode/makeunicodedata.py
|
lib/python2.1/Tools/scripts/rgrep.py
|
||||||
lib/python2.0/Tools/versioncheck/README
|
lib/python2.1/Tools/scripts/suff.py
|
||||||
lib/python2.0/Tools/versioncheck/_checkversion.py
|
lib/python2.1/Tools/scripts/sum5.py
|
||||||
lib/python2.0/Tools/versioncheck/checkversions.py
|
lib/python2.1/Tools/scripts/texi2html.py
|
||||||
lib/python2.0/Tools/versioncheck/pyversioncheck.py
|
lib/python2.1/Tools/scripts/trace.py
|
||||||
lib/python2.0/Tools/webchecker/README
|
lib/python2.1/Tools/scripts/treesync.py
|
||||||
lib/python2.0/Tools/webchecker/tktools.py
|
lib/python2.1/Tools/scripts/untabify.py
|
||||||
lib/python2.0/Tools/webchecker/wcgui.py
|
lib/python2.1/Tools/scripts/which.py
|
||||||
lib/python2.0/Tools/webchecker/wcmac.py
|
lib/python2.1/Tools/scripts/xxci.py
|
||||||
lib/python2.0/Tools/webchecker/webchecker.py
|
lib/python2.1/Tools/unicode/makeunicodedata.py
|
||||||
lib/python2.0/Tools/webchecker/websucker.py
|
lib/python2.1/Tools/versioncheck/README
|
||||||
lib/python2.0/Tools/webchecker/wsgui.py
|
lib/python2.1/Tools/versioncheck/_checkversion.py
|
||||||
lib/python2.0/Tools/world/README
|
lib/python2.1/Tools/versioncheck/checkversions.py
|
||||||
lib/python2.0/Tools/world/world
|
lib/python2.1/Tools/versioncheck/pyversioncheck.py
|
||||||
@dirrm lib/python2.0/Tools/world
|
lib/python2.1/Tools/webchecker/README
|
||||||
@dirrm lib/python2.0/Tools/webchecker
|
lib/python2.1/Tools/webchecker/tktools.py
|
||||||
@dirrm lib/python2.0/Tools/versioncheck
|
lib/python2.1/Tools/webchecker/wcgui.py
|
||||||
@dirrm lib/python2.0/Tools/unicode
|
lib/python2.1/Tools/webchecker/wcmac.py
|
||||||
@dirrm lib/python2.0/Tools/scripts
|
lib/python2.1/Tools/webchecker/webchecker.py
|
||||||
@dirrm lib/python2.0/Tools/pynche/X
|
lib/python2.1/Tools/webchecker/websucker.py
|
||||||
@dirrm lib/python2.0/Tools/pynche
|
lib/python2.1/Tools/webchecker/wsgui.py
|
||||||
@dirrm lib/python2.0/Tools/modulator/Templates
|
lib/python2.1/Tools/world/README
|
||||||
@dirrm lib/python2.0/Tools/modulator
|
lib/python2.1/Tools/world/world
|
||||||
@dirrm lib/python2.0/Tools/idle/Icons
|
@dirrm lib/python2.1/Tools/world
|
||||||
@dirrm lib/python2.0/Tools/idle
|
@dirrm lib/python2.1/Tools/webchecker
|
||||||
@dirrm lib/python2.0/Tools/i18n
|
@dirrm lib/python2.1/Tools/versioncheck
|
||||||
@dirrm lib/python2.0/Tools/freeze
|
@dirrm lib/python2.1/Tools/unicode
|
||||||
@dirrm lib/python2.0/Tools/faqwiz
|
@dirrm lib/python2.1/Tools/scripts
|
||||||
@dirrm lib/python2.0/Tools/compiler/compiler
|
@dirrm lib/python2.1/Tools/pynche/X
|
||||||
@dirrm lib/python2.0/Tools/compiler
|
@dirrm lib/python2.1/Tools/pynche
|
||||||
@dirrm lib/python2.0/Tools/bgen/bgen
|
@dirrm lib/python2.1/Tools/modulator/Templates
|
||||||
@dirrm lib/python2.0/Tools/bgen
|
@dirrm lib/python2.1/Tools/modulator
|
||||||
@dirrm lib/python2.0/Tools/audiopy
|
@dirrm lib/python2.1/Tools/idle/Icons
|
||||||
@dirrm lib/python2.0/Tools
|
@dirrm lib/python2.1/Tools/idle
|
||||||
|
@dirrm lib/python2.1/Tools/i18n
|
||||||
|
@dirrm lib/python2.1/Tools/freeze
|
||||||
|
@dirrm lib/python2.1/Tools/faqwiz
|
||||||
|
@dirrm lib/python2.1/Tools/compiler/compiler
|
||||||
|
@dirrm lib/python2.1/Tools/compiler
|
||||||
|
@dirrm lib/python2.1/Tools/bgen/bgen
|
||||||
|
@dirrm lib/python2.1/Tools/bgen
|
||||||
|
@dirrm lib/python2.1/Tools/audiopy
|
||||||
|
@dirrm lib/python2.1/Tools
|
||||||
|
Loading…
x
Reference in New Issue
Block a user