summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/bdist_pkgtool.py
Commit message (Collapse)AuthorAgeFilesLines
* Pulling Mark Alexander's contribution from CVS.Marc-André Lemburg2002-10-041-411/+0
|
* This module broke on the Mac (where it can't work, but distutils seems to ↵Jack Jansen2002-06-261-1/+2
| | | | import it anyway) because it imported pwd and grp. Moved the import to inside the routine where they're used.
* Remove unused importsJeremy Hylton2002-06-041-1/+0
|
* Reindent lines to improve readabilityJeremy Hylton2002-06-041-3/+3
|
* Fix unused local variables caught by pychecker.Jeremy Hylton2002-06-041-2/+2
| | | | | Fixes a bug for Solaris pkgtool (bdist_pkgtool) that would have prevented it from building subpackages.
* Remove unused imports caught by pycheckerJeremy Hylton2002-06-041-2/+0
|
* Make setup.py less chatty by default.Jeremy Hylton2002-06-041-6/+7
| | | | | | | | | | | | | | | 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.
* Whitespace normalization. Unka Timmy would be proud.Barry Warsaw2002-04-231-51/+51
|
* Patch #531901 by Mark W. Alexander: adds a new distutils packagerMarc-André Lemburg2002-04-171-0/+412
base class (in bdist_packager) and two subclasses which make use of this base class: bdist_pkgtool (for Solaris) and bdist_sdux (for HP-UX).