| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Back out conversion to string methods; the Distutils is intended to work | Andrew M. Kuchling | 2001-03-22 | 4 | -13/+13 |
|
|
* | Call the write_pkg_info method | Andrew M. Kuchling | 2001-03-22 | 1 | -2/+2 |
|
|
* | Add 'platforms' and 'keywords' attributes to the DistributionMetadata class, | Andrew M. Kuchling | 2001-03-22 | 1 | -5/+70 |
|
|
* | Patch #407434: add rfc822_escape utility function | Andrew M. Kuchling | 2001-03-22 | 1 | -0/+10 |
|
|
* | Fix bug #233253: the --define and --undef options didn't work, whether | Andrew M. Kuchling | 2001-03-17 | 1 | -0/+15 |
|
|
* | Bug #409403: Signal an error if the distribution's metadata has no version | Andrew M. Kuchling | 2001-03-17 | 1 | -0/+4 |
|
|
* | Distutils version number has been changed from 1.0.1 to 1.0.2pre | Thomas Heller | 2001-03-16 | 1 | -1/+1 |
|
|
* | The bdist_wininst.py command has been recreated after wininst.exe | Thomas Heller | 2001-03-16 | 1 | -272/+308 |
|
|
* | Make docstrings raw, since they contain literal backslashes. | Ka-Ping Yee | 2001-03-10 | 1 | -1/+1 |
|
|
* | When not copying a file because the output is up to date, make the message | Fred Drake | 2001-03-02 | 1 | -2/+2 |
|
|
* | Leave #! lines featuring /usr/bin/env alone | Andrew M. Kuchling | 2001-02-28 | 1 | -2/+4 |
|
|
* | Placate tabnanny | Andrew M. Kuchling | 2001-02-28 | 1 | -1/+1 |
|
|
* | Bug #229280: remove '/' characters from the OS name (for BSD/OS :) ) | Andrew M. Kuchling | 2001-02-27 | 1 | -1/+6 |
|
|
* | Patch #403947: On Cygwin, use the Unix compiler class, and not | Andrew M. Kuchling | 2001-02-27 | 1 | -1/+4 |
|
|
* | Patch #404275: generate a reasonable platform string for AIX | Andrew M. Kuchling | 2001-02-27 | 1 | -0/+2 |
|
|
* | Enhancements to the bdist_wininst command: | Thomas Heller | 2001-02-19 | 1 | -265/+282 |
|
|
* | This patch makes the default compiler determination more flexible | Marc-André Lemburg | 2001-02-19 | 1 | -8/+40 |
|
|
* | Split the rpath argument into multiple paths, turning it into a list. | Andrew M. Kuchling | 2001-02-17 | 1 | -0/+3 |
|
|
* | Linking just got simpiler on AIX and BeOS (closes SF patch #103679). | Neil Schemenauer | 2001-02-16 | 1 | -25/+2 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 3 | -10/+10 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -3/+3 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
|
|
* | Patch #103587: Fix typo that broke the install_data command; caught by | Andrew M. Kuchling | 2001-02-05 | 1 | -1/+1 |
|
|
* | move "from stat import *" to module level | Jeremy Hylton | 2001-01-31 | 1 | -1/+1 |
|
|
* | Remove single "." components from pathnames, and return os.curdir if | Jack Jansen | 2001-01-28 | 1 | -0/+4 |
|
|
* | Data pathnames were not converted from URL-style to local style. Fixed. | Jack Jansen | 2001-01-28 | 1 | -2/+4 |
|
|
* | Added an execution layer to be able to customize per-extension | Marc-André Lemburg | 2001-01-26 | 1 | -91/+92 |
|
|
* | In subst_vars(), change the name of the argument from str to s to | Jeremy Hylton | 2001-01-25 | 1 | -2/+2 |
|
|
* | There is no more Modules/Makefile, use toplevel Makefile. | Neil Schemenauer | 2001-01-24 | 1 | -1/+1 |
|
|
* | Part of patch #102409: special cases for Cygwin: | Andrew M. Kuchling | 2001-01-24 | 1 | -0/+18 |
|
|
* | Patch #103220 from Jason Tishler: | Andrew M. Kuchling | 2001-01-19 | 1 | -0/+5 |
|
|
* | Patch #103279: sysconfig.py always looks for versions of files in | Andrew M. Kuchling | 2001-01-17 | 1 | -1/+19 |
|
|
* | Fix bugs with integer-valued variables when parsing Makefiles. Values | Andrew M. Kuchling | 2001-01-16 | 1 | -5/+9 |
|
|
* | Modified version of a patch from Jeremy Kloth, to make .get_outputs() | Andrew M. Kuchling | 2001-01-16 | 1 | -1/+5 |
|
|
* | Add strip_dir argument to the single call to .object_filenames(), to | Andrew M. Kuchling | 2001-01-16 | 1 | -0/+1 |
|
|
* | Fix from Jack Jansen for the Mac and the Metrowerks compiler, posted | Andrew M. Kuchling | 2001-01-15 | 3 | -6/+216 |
|
|
* | Delete unused import of pprint module | Andrew M. Kuchling | 2001-01-11 | 1 | -1/+0 |
|
|
* | Check in patch #102971: if library_dirs is a string, split it using | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+2 |
|
|
* | Add forgotten initialization. Fixes bug #120994, "Traceback with | Andrew M. Kuchling | 2000-12-20 | 1 | -0/+1 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -1/+1 |
|
|
* | Jack Jansen: added 'get_command_list()' method, and Mac-specific code to | Greg Ward | 2000-11-11 | 1 | -0/+38 |
|
|
* | Bump version to 1.0.1. | Greg Ward | 2000-10-15 | 1 | -1/+1 |
|
|
* | Removed debugging code at bottom. | Greg Ward | 2000-10-14 | 1 | -8/+0 |
|
|
* | Untabified. | Greg Ward | 2000-10-14 | 8 | -14/+14 |
|
|
* | Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by adding | Greg Ward | 2000-10-14 | 1 | -3/+6 |
|
|
* | Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing if | Greg Ward | 2000-10-14 | 1 | -2/+4 |
|
|
* | Bastian Kleineidam: fix up any supplied command-line options. | Greg Ward | 2000-10-14 | 1 | -1/+16 |
|
|
* | Recreated after installer source code changes. | Thomas Heller | 2000-10-12 | 1 | -246/+246 |
|
|
* | Bump version to 1.0. | Greg Ward | 2000-10-03 | 1 | -1/+1 |
|
|
* | Remove some debugging prints. | Greg Ward | 2000-10-03 | 1 | -2/+0 |
|
|