summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
Commit message (Collapse)AuthorAgeFilesLines
* build_ext: correctly parse the link_objects user option (closes #1703178)Benjamin Peterson2016-09-291-0/+1
| | | | Patch by Valerie Lambert.
* Close #24508: Backport the 3.5 MSBuild project files.Zachary Ware2015-07-161-4/+6
| | | | | | | The old project files move to PC/VS9.0 and remain supported. VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1) is *also* required to use the new project files.
* fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-151-4/+4
| | | | Patch by Marc Abramowitz.
* - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-1/+1
|
* #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-271-5/+4
| | | | Patch by Ian Cordasco, approved by Éric Araujo.
* Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-191-4/+5
| | | | | | return code when uploading fails. Patch by Martin Dengler.
* Fix missing import in bdist_rpm (#18045)Éric Araujo2014-03-121-0/+1
|
* Issue #12853: Correct NameError in distutils upload command.Jason R. Coombs2013-11-161-1/+1
|
* Issue #19286: [distutils] Only match files in build_py.find_data_files.Jason R. Coombs2013-11-021-1/+2
|
* Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-5/+3
| | | | is used.
* #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
|
* Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,Terry Jan Reedy2013-03-111-2/+2
| | | | as reported by Serhiy Storchaka and Matthew Barnett.
* Fix setup.py register failure with invalid rst in description (#13614).Éric Araujo2012-12-091-0/+3
| | | | Original patch by Julien Courteau and Pierre Paul Lefebvre.
* Backout buggy patch for #13719Éric Araujo2012-03-071-1/+1
|
* Make distutils’ upload command work with bdist_msi products (#13719).Éric Araujo2012-03-051-1/+1
| | | | Patch by Ralf Schmitt.
* Stop ignoring RPMs in distutils' upload command (#2945).Éric Araujo2012-02-261-0/+12
| | | | | Bug reported by Hartmut Goebel and patch contributed by Carl Robben. Untested backport of the fix committed and tested for 3.2.
* Fix parsing of build_ext --libraries option (#1326113)Éric Araujo2012-02-151-2/+1
|
* Issue #13994: Earler partial revert of Distutils enhancements in 2.7Ned Deily2012-02-112-2/+2
| | | | | | | | has left two versions of customize_compiler, the original in distutils.sysconfig and another copy in distutils.ccompiler, with some parts of distutils calling one and others using the other. Complete the revert back to only having one in distutils.sysconfig as is the case in 3.x.
* Fix distutils’ check and register Unicode handling (#13114).Éric Araujo2011-10-092-10/+21
| | | | | | | | | The check command was fixed by Kirill Kuzminykh. The register command was using StringIO.getvalue, which uses “''.join” and thus coerces to str using the default encoding (ASCII), so I changed the code to use one extra intermediary list and correctly encode to UTF-8.
* Warn instead of crashing because of invalid path in MANIFEST.in (#8286).Éric Araujo2011-09-021-1/+4
| | | | | sdist used to crash with a full traceback dump instead of printing a nice warning with the faulty line number.
* Make bdist_* commands respect --skip-build passed to bdist (#10946)Éric Araujo2011-08-293-4/+13
|
* Fix regression with distutils MANIFEST handing (#11104, #8688).Éric Araujo2011-07-311-19/+29
| | | | | | | | | | | | | | | | | | | | | | | The changed behavior of sdist in 2.7 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (d29399100973 by Tarek and f7639dcdffc3 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. I also removed a stanza in the docs that was forgotten in Tarek’s first changeset. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me.
* Fix file handle leakÉric Araujo2011-05-011-11/+14
|
* Merged revisions 87280 via svnmerge fromÉric Araujo2010-12-151-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87280 | eric.araujo | 2010-12-15 22:07:22 +0100 (mer., 15 déc. 2010) | 2 lines Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558). ........
* Fix for issue10367, courtesy of Daniel Tavares.Phillip J. Eby2010-12-031-3/+3
|
* Merged revisions 86223-86224,86226,86234 via svnmerge fromÉric Araujo2010-11-063-18/+30
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86223 | eric.araujo | 2010-11-06 00:51:56 +0100 (sam., 06 nov. 2010) | 2 lines Always close files in distutils code and tests (#10252). ........ r86224 | eric.araujo | 2010-11-06 00:58:34 +0100 (sam., 06 nov. 2010) | 2 lines Add missing entry for r86223. ........ r86226 | eric.araujo | 2010-11-06 00:59:32 +0100 (sam., 06 nov. 2010) | 2 lines Of course, I forgot one file in r86223. ........ r86234 | eric.araujo | 2010-11-06 03:10:32 +0100 (sam., 06 nov. 2010) | 2 lines Also close file descriptors from os.popen and subprocess.Popen ........
* Merged revisions 84711 via svnmerge fromÉric Araujo2010-09-111-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84711 | eric.araujo | 2010-09-11 17:28:56 +0200 (sam., 11 sept. 2010) | 2 lines Fix typo in option name ........
* Merged revisions 84680 via svnmerge fromAntoine Pitrou2010-09-101-1/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84680 | antoine.pitrou | 2010-09-10 21:44:44 +0200 (ven., 10 sept. 2010) | 4 lines Issue #941346: Improve the build process under AIX and allow Python to be built as a shared library. Patch by Sébastien Sablé. ........
* Merged revisions 84614 via svnmerge fromÉric Araujo2010-09-081-1/+1
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84614 | eric.araujo | 2010-09-08 02:00:45 +0200 (mer., 08 sept. 2010) | 5 lines Follow-up to #9199: Fix str.join use, add newlines. Thanks to Konrad Delong for writing a test for upload_docs --show-response in distutils2, letting me catch my mistake. ........
* Merged revisions 84611 via svnmerge fromÉric Araujo2010-09-071-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84611 | eric.araujo | 2010-09-08 01:08:57 +0200 (mer., 08 sept. 2010) | 2 lines Fix incorrect use of Command.announce (#9199) ........
* Merged revisions 84608 via svnmerge fromÉric Araujo2010-09-071-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84608 | eric.araujo | 2010-09-08 00:11:52 +0200 (mer., 08 sept. 2010) | 2 lines Fix eon-old bug in build_clib options (#1718574) ........
* Merged revisions 83993 via svnmerge fromÉric Araujo2010-08-141-2/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83993 | eric.araujo | 2010-08-14 04:30:34 +0200 (sam., 14 août 2010) | 2 lines Use a marker in generated MANIFEST files, don't touch files without it. Fixes #8688. ........
* Merged revisions ↵Georg Brandl2010-08-022-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 83536,83546-83548,83550,83554-83555,83558,83563,83565,83571,83574-83575 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83536 | georg.brandl | 2010-08-02 19:49:25 +0200 (Mo, 02 Aug 2010) | 1 line #8578: mention danger of not incref'ing weak referenced object. ........ r83546 | georg.brandl | 2010-08-02 21:16:34 +0200 (Mo, 02 Aug 2010) | 1 line #7973: Fix distutils options spelling. ........ r83547 | georg.brandl | 2010-08-02 21:19:26 +0200 (Mo, 02 Aug 2010) | 1 line #7386: add example that shows that trailing path separators are stripped. ........ r83548 | georg.brandl | 2010-08-02 21:23:34 +0200 (Mo, 02 Aug 2010) | 1 line #8172: how does one use a property? ........ r83550 | georg.brandl | 2010-08-02 21:32:43 +0200 (Mo, 02 Aug 2010) | 1 line #9451: strengthen warning about __*__ special name usage. ........ r83554 | georg.brandl | 2010-08-02 21:43:05 +0200 (Mo, 02 Aug 2010) | 1 line #7280: note about nasmw.exe. ........ r83555 | georg.brandl | 2010-08-02 21:44:48 +0200 (Mo, 02 Aug 2010) | 1 line #8861: remove unused variable. ........ r83558 | georg.brandl | 2010-08-02 22:05:19 +0200 (Mo, 02 Aug 2010) | 1 line #8648: document UTF-7 codec functions. ........ r83563 | georg.brandl | 2010-08-02 22:21:21 +0200 (Mo, 02 Aug 2010) | 1 line #9037: add example how to raise custom exceptions from C code. ........ r83565 | georg.brandl | 2010-08-02 22:27:20 +0200 (Mo, 02 Aug 2010) | 1 line #9111: document that do_help() looks at docstrings. ........ r83571 | georg.brandl | 2010-08-02 22:44:34 +0200 (Mo, 02 Aug 2010) | 1 line Clarify that abs() is not a namespace. ........ r83574 | georg.brandl | 2010-08-02 22:47:56 +0200 (Mo, 02 Aug 2010) | 1 line #6867: epoll.register() returns None. ........ r83575 | georg.brandl | 2010-08-02 22:52:10 +0200 (Mo, 02 Aug 2010) | 1 line #9238: zipfile does handle archive comments. ........
* upgraded distutils docs w.r.t. the manifest regenerationTarek Ziadé2010-05-171-1/+2
|
* Fixed #8688: Distutils now recalculates MANIFEST everytime.Tarek Ziadé2010-05-171-57/+25
|
* In a number of places code still reversRonald Oussoren2010-05-051-14/+0
| | | | | | | | | to "sys.platform == 'mac'" and that is dead code because it refers to a platform that is no longer supported (and hasn't been supported for several releases). Fixes issue #7908 for the trunk.
* #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains ↵Florent Xicluna2010-04-011-1/+1
| | | | a double-quote.
* reverting partially distutils to its 2.6.x state so 2.7a4 looks more like ↵Tarek Ziadé2010-03-052-236/+191
| | | | the 2.7b1 in this. the whole revert will occur after a4 is tagged
* removed debugging codeTarek Ziadé2010-02-231-4/+1
|
* leaving global attributes for backward compatTarek Ziadé2010-02-031-0/+81
|
* added local get_platform/set_platform APIs in distutils.sysconfigTarek Ziadé2010-01-267-11/+11
|
* fixed bdist_msi imports and added a test module for distutils.command.bdist_msiTarek Ziadé2010-01-261-3/+3
|
* Fixed #7748: now upload and register commands don't need to force the ↵Tarek Ziadé2010-01-242-2/+1
| | | | encoding anymore : DistributionMetada returns utf8 strings
* taking sysconfig out of distutilsTarek Ziadé2010-01-239-155/+72
|
* massive import cleaning in DistutilsTarek Ziadé2009-12-2111-28/+31
|
* Fixed #7552: fixed distutils.command.upload failure on very long passwordsTarek Ziadé2009-12-201-3/+3
|
* cleaned up the module (PEP 8 + old fashion test removal)Tarek Ziadé2009-12-151-3/+2
|
* fixed warning and error messageTarek Ziadé2009-10-242-2/+2
|
* Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecodeTarek Ziadé2009-10-242-0/+11
|
* Use standard comma punctuation; reword some sentences in the docsAndrew M. Kuchling2009-10-051-1/+1
|