Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+1 |
| | |||||
* | Make dist_files a triple, with the Python target version included, | Martin v. Löwis | 2005-03-23 | 1 | -1/+7 |
| | | | | so that bdist_wininst can specify 'any'. | ||||
* | Add the upload command. Make all dist commands register their | Martin v. Löwis | 2005-03-21 | 1 | -2/+3 |
| | | | | outputs with the distribution object. | ||||
* | Update compatibility comments to 2.1, corresponding to PEP 291 1.13. | Martin v. Löwis | 2004-11-10 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | Fix for bug #410541: bdist builds bogus .zips | Andrew M. Kuchling | 2002-11-26 | 1 | -6/+25 |
| | | | | | | This adds a --relative option to the bdist_dumb command that defaults to false; if true, the .tar.gz or .zip will be assembled using relative paths. | ||||
* | Add comment to Distutil files about requiring 1.5.2 compatibility, as | Andrew M. Kuchling | 2002-11-19 | 1 | -0/+2 |
| | | | | suggested by PEP 291. | ||||
* | Remove 'created by' lines; people can use CVS for this, and the information ↵ | Andrew M. Kuchling | 2002-11-14 | 1 | -2/+0 |
| | | | | is often out of date | ||||
* | Make setup.py less chatty by default. | Jeremy Hylton | 2002-06-04 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | This is a conservative version of SF patch 504889. It uses the log module instead of calling print in various places, and it ignores the verbose argument passed to many functions and set as an attribute on some objects. Instead, it uses the verbosity set on the logger via the command line. The log module is now preferred over announce() and warn() methods that exist only for backwards compatibility. XXX This checkin changes a lot of modules that have no test suite and aren't exercised by the Python build process. It will need substantial testing. | ||||
* | Set the warn_dir option to 0 before running the install command. | Thomas Heller | 2002-04-09 | 1 | -0/+1 |
| | | | | | | | This suppresses bogus warnings about modules installed into a directory not in sys.path. Bugfix candidate. | ||||
* | OS/2 patches by Andrew I MacIntyre for distutils. | Marc-André Lemburg | 2002-01-31 | 1 | -1/+8 |
| | | | | Closes patch #435381. | ||||
* | Patch #414775: Add --skip-build option to bdist command. | Martin v. Löwis | 2002-01-12 | 1 | -2/+7 |
| | |||||
* | Standardized whitespace around function calls. | Greg Ward | 2000-09-30 | 1 | -6/+6 |
| | |||||
* | Added 'boolean_options' list to support config file parsing. | Greg Ward | 2000-09-25 | 1 | -0/+2 |
| | |||||
* | Renamed --keep-tree option to --keep-temp. | Greg Ward | 2000-09-16 | 1 | -3/+3 |
| | |||||
* | Ensure sub-commands of "install" are reinitialized too. | Greg Ward | 2000-09-16 | 1 | -3/+2 |
| | | | | Run "install" the right way, by calling 'run_command()'. | ||||
* | Delete some debugging prints. | Greg Ward | 2000-09-11 | 1 | -2/+0 |
| | |||||
* | Added --plat-name option to override sysconfig.get_platform() in | Greg Ward | 2000-09-11 | 1 | -2/+9 |
| | | | | generated filenames. | ||||
* | Fixed imports from '*util' modules to not just import everything from util. | Greg Ward | 2000-08-05 | 1 | -1/+2 |
| | |||||
* | Added --dist-dir option to control where output archive(s) go. | Greg Ward | 2000-07-05 | 1 | -1/+7 |
| | |||||
* | Fixed to use 'reinitialize_command()' to fetch the "install" command object. | Greg Ward | 2000-06-28 | 1 | -6/+1 |
| | |||||
* | Some far-reaching naming changes: | Greg Ward | 2000-05-27 | 1 | -5/+5 |
| | | | | | | | * Command method 'find_peer()' -> 'get_finalized_command()' * Command method 'run_peer()' -> 'run_command()' Also deleted the 'get_command_option()' method from Command, and fixed the one place where it was used (in "bdist_dumb"). | ||||
* | Use 'get_command_obj()' instead of 'find_command_obj()'. | Greg Ward | 2000-05-23 | 1 | -1/+1 |
| | |||||
* | Drastically simplified by taking advantage of the "install" command's | Gregory P. Smith | 2000-05-13 | 1 | -74/+21 |
| | | | | | | | | | | new flexibility, specifically the 'root' option. Now, we just use "install" to do a fake installation into a temporary directory (the 'bdist_dir' option, which derives from the 'bdist_base' option of "bdist"), and then tar/zip up that directory. This means that dumb built distributions are now relative to the root directory, rather than the prefix or exec-prefix; this is probably a feature, but does make them slightly less flexible. | ||||
* | Harry Henry Gebel: import exception classes. | Greg Ward | 2000-04-26 | 1 | -1/+1 |
| | |||||
* | Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object. | Greg Ward | 2000-04-22 | 1 | -1/+1 |
| | |||||
* | Added code to blow away the pseudo-installation tree and a 'keep_tree' | Greg Ward | 2000-03-31 | 1 | -1/+10 |
| | | | | option to disable this (by default, it's false and we clean up). | ||||
* | The 'bdist_dumb' command, the first worker bee for use by 'bdist'. This is | Greg Ward | 2000-03-31 | 1 | -0/+131 |
the command that actually creates "dumb" binary distributions, ie. tarballs and zip files that you just unpack under <prefix> or <exec-prefix>. Very limited, but it's a start. |