summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/command/build_ext.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-644/+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
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-1/+4
|
* Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin2012-05-131-1/+1
|
* Fix parsing of packaging’s build_ext --libraries option (#1326113)Éric Araujo2012-02-151-2/+1
|
* Remove obsolete verbose arguments from packaging.Éric Araujo2011-11-151-6/+0
| | | | | | Logging replaces verbose arguments. I haven’t fixed the example in Doc/install/install.rst because I have major fixes and changes to the oc under way and will fix or remove that example as part of that task.
* Packaging cleanup: remove conditionals for < 2.6 support.Éric Araujo2011-09-171-11/+6
| | | | | | | | PEP 370 features and sys.dont_write_bytecode are always available in 3.3; the distutils2 backport still has the conditionals. I also renamed an internal misnamed method and fixed a few things (“packaging2” name, stray print, unused import, fd leak).
* Remove obsolete comment (yes, build_ext supports C++)Éric Araujo2011-09-101-4/+0
|
* Fix typo I introduced in f93acf8844ecÉric Araujo2011-08-301-1/+1
|
* Cleanup: use sys.version_info instead of convoluted hexversion lshiftsÉric Araujo2011-08-291-11/+6
|
* Issue #12326: refactor usage of sys.platformVictor Stinner2011-08-201-2/+1
| | | | | | | | * Use str.startswith(tuple): I didn't know this Python feature, Python rocks! * Replace sometimes sys.platform.startswith('linux') with sys.platform == 'linux' * sys.platform doesn't contain the major version on Cygwin on Mac OS X (it's just 'cygwin' and 'darwin')
* Packaging: remove last mentions and uses of setup.py in the code.Éric Araujo2011-06-161-4/+1
| | | | | Now only the compatibility layer (in create, util and install) talk about setup.py.
* Issue 10126 - backported distutils fix for the enable-share mode into packagingTarek Ziade2011-05-221-3/+3
|
* fixed the export symbols for the win32 linkerTarek Ziade2011-05-211-1/+1
|
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+666