summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/command/bdist_dumb.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-139/+0
| | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html
* Undo potentially confusing name change in packaging.Éric Araujo2011-11-061-2/+2
| | | | | | | | | | | This method was named reinitialize_command in distutils and accompanied by a comment suggesting to change it to get_reinitialized_command. Following that, I did the change for distutils2, but it proved confusing: The Distribution object has an internal cache of command objects, to make sure only one instance is ever used, and the name get_reinitialized_command could suggest that the object returned was independent of that cache, which it was not. I’m reverting the name change to make code clearer.
* Final bag of small changes coming from distutils2.Éric Araujo2011-09-191-2/+2
| | | | | | | | | - minor cleanup in Metadata - trigger creation of the sysconfig._CONFIG_VARS dict - home_page is used over home-page: it’s not a compound word, it’s an escaped space Distutils2 is now synchronized with Packaging.
* Make bdist_* commands respect --skip-build passed to bdist (#10946).Éric Araujo2011-08-291-2/+3
| | | | | | There was already a test for this, but it was complicated and had a subtle bug (custom command objects need to be put in dist.command_obj so that other command objects may see them) that rendered it moot.
* Remove obsolete mentions of the compress program and .Z archives.Éric Araujo2011-08-291-7/+8
| | | | | | Packaging uses the shutil.make_archive function copied from distutils, which does not support compress. There is no test to check that “bdist --format whatever” works, so this slipped by.
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+137