cpython/Lib/distutils
Thomas Heller a146feaa10 Fix SF#983164.
Patch from Mark Hammond:

bdist_wininst attempts to use the correct MSVC runtime for the current
version of Python. This doesn't work correctly when --target-version
is set. In that case, bdist_wininst still uses the *current*
sys.version (ie, 2.4) rather than the version specified as
--target-version. Thus, the msvc7 runtime based executable stub is
*always* used.

This patch "hard-codes" knowledge of earlier Python versions,
providing the correct result when Python 2.4 is used to build Python
2.3 and earlier distributions.

Remove the short variant (-v) of the --target-version command line
options, it conflicts with the --verbose/-v standard distutils switch.
2004-07-06 19:23:27 +00:00
..
command Fix SF#983164. 2004-07-06 19:23:27 +00:00
tests Make distutils "install --home" support all platforms. 2004-06-25 23:02:59 +00:00
__init__.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
archive_util.py Bug #639118 from Ollie Oldham: archiver should use zipfile before zip 2002-11-21 18:33:28 +00:00
bcppcompiler.py Compile the files in the same order they are passed to the compiler. 2003-12-05 20:12:23 +00:00
ccompiler.py Compile the files in the same order they are passed to the compiler. 2003-12-05 20:12:23 +00:00
cmd.py fix typo 2004-06-18 21:28:28 +00:00
core.py Basic dependency checking. setup() has two new optional arguments 2004-03-22 22:22:05 +00:00
cygwinccompiler.py SF #877165: Give an info about what C++ compiler command should be 2004-06-05 18:37:53 +00:00
debug.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
dep_util.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
dir_util.py Replace backticks with repr() or "%r" 2004-02-12 17:35:32 +00:00
dist.py Add support for package data. 2004-06-11 21:50:33 +00:00
emxccompiler.py use same compiler switches as core for extensions 2003-12-02 12:17:59 +00:00
errors.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
extension.py Remove the recently-added get_distutil_options(), and just 2003-01-27 16:30:36 +00:00
fancy_getopt.py Replace backticks with repr() or "%r" 2004-02-12 17:35:32 +00:00
file_util.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
filelist.py Fix typo (from SF bug #962602) 2004-05-31 15:12:27 +00:00
log.py set_verbosity(): do something reasonable for out-of-range verbosity 2003-02-20 02:09:30 +00:00
msvccompiler.py Compile the files in the same order they are passed to the compiler. 2003-12-05 20:12:23 +00:00
mwerkscompiler.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
README Update file 2002-11-13 13:26:59 +00:00
spawn.py Make _spawn_posix be ready for EINTR. waitpid(2) can be interrupted 2004-02-24 23:54:17 +00:00
sysconfig.py Partial fix for #887242 (link extensions with dynamic_lookup in stead 2004-06-03 12:41:45 +00:00
text_file.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00
unixccompiler.py Fixed indentation error. Closes bug #746953. 2003-06-01 19:27:40 +00:00
util.py Defer compilation of regular expressions until first use. 2004-03-25 14:58:19 +00:00
version.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00

This directory contains only a subset of the Distutils, specifically
the Python modules in the 'distutils' and 'distutils.command'
packages.  This is all you need to distribute and install Python
modules using the Distutils.  There is also a separately packaged
standalone version of the Distutils available for people who want to
upgrade the Distutils without upgrading Python, available from the
Distutils web page:

    http://www.python.org/sigs/distutils-sig/

The standalone version includes all of the code in this directory,
plus documentation, test scripts, examples, etc.

The Distutils documentation is divided into two documents, "Installing
Python Modules", which explains how to install Python packages, and
"Distributing Python Modules", which explains how to write setup.py
files.  Both documents are part of the standard Python documentation
set, and are available from http://www.python.org/doc/current/ .

        Greg Ward (gward@python.net)

$Id$