summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 3.2a4.Georg Brandl2010-11-131-1/+1
|
* And now for something completely different: Finish fixing #10252 again.Éric Araujo2010-11-121-1/+0
|
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
|
* Fix #10252 again (hopefully definitely). Patch by Brian Curtin.Éric Araujo2010-11-061-3/+1
|
* Correct the fix for #10252: Popen objects have no close method.Éric Araujo2010-11-062-15/+20
|
* Remove traces of Mac OS 9 support, again (#9508).Éric Araujo2010-11-064-76/+0
| | | | | | This was done in r80805 (#7908) and erroneously brought back by the distutils revert. This commit removes more code than the original, which was uncomplete. There is no NEWS entry, like in r80805.
* Prevent race condition with mkdir in distutils. Patch by Arfrever on #9281.Éric Araujo2010-11-061-3/+4
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-0641-56/+86
|
* Also close file descriptors from os.popen and subprocess.PopenÉric Araujo2010-11-062-20/+26
|
* Of course, I forgot one file in r86223.Éric Araujo2010-11-051-2/+4
|
* Always close files in distutils code and tests (#10252).Éric Araujo2010-11-0523-166/+253
|
* Have distutils.sysconfig close a file to remove ResourceWarnings coming upBrett Cannon2010-10-291-1/+2
| | | | during the build from setup.py.
* Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape errorVictor Stinner2010-10-232-2/+5
| | | | | | handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source code directory name contains a non-ASCII character and the locale encoding is ASCII.
* Only hack cmd.library_dirs when running under Py_ENABLE_SHARED. Tested bothBarry Warsaw2010-10-221-1/+2
| | | | | with and without --enable-shared on Ubuntu 10.10. Hopefully this finally solves bug 10126. Will check 3.1 next.
* Apply fix from r85784 on py3k too.Éric Araujo2010-10-211-2/+6
| | | | | | | Fixes bug #10126 for Python 3.2 by using $RUNSHARED to find the directory to the shared library. test_distutils now passes when Python was built with --enable-shared (Barry didn’t have the error but I did).
* First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-162-8/+24
| | | | | | | | | * Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
* Bump to 3.2a3.Georg Brandl2010-10-101-1/+1
|
* Issue #9437: Fix building C extensions with non-default LDFLAGS.Antoine Pitrou2010-10-101-0/+5
|
* Fixed #8980: distutils.command.check was failing w/ docutils installedTarek Ziadé2010-10-032-7/+7
|
* Reverted changes which were inadvertently committed.Vinay Sajip2010-09-201-15/+11
|
* logging: added hasHandlers() to LoggerAdapter.Vinay Sajip2010-09-201-11/+15
|
* Update the test_distutils mode test to test with umask value properly.Senthil Kumaran2010-09-191-2/+7
|
* Skip the distutils mode test on Windows OS.Senthil Kumaran2010-09-181-0/+3
|
* Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameterSenthil Kumaran2010-09-172-1/+8
|
* get_build_version() is needed even where sys.platform != "win32".Hirokazu Yamamoto2010-09-131-4/+8
| | | | Try to fix buildbot error in other way.
* Issue #9313: Use unittest.skipUnless to skip old MSVC.Hirokazu Yamamoto2010-09-131-14/+5
|
* Issue #9313: Skips test_remove_visual_c_ref on old MSVC.Hirokazu Yamamoto2010-09-121-0/+5
|
* Fix typo in option nameÉric Araujo2010-09-111-1/+1
|
* Issue #941346: Improve the build process under AIX and allow Python toAntoine Pitrou2010-09-101-0/+3
| | | | be built as a shared library. Patch by Sébastien Sablé.
* Follow-up to #9199: Fix str.join use, add newlines.Éric Araujo2010-09-081-1/+1
| | | | | Thanks to Konrad Delong for writing a test for upload_docs --show-response in distutils2, letting me catch my mistake.
* Fix incorrect use of Command.announce (#9199)Éric Araujo2010-09-071-1/+2
|
* Fix eon-old bug in build_clib options (#1718574)Éric Araujo2010-09-071-2/+2
|
* Bump to 3.2a2.Georg Brandl2010-09-051-1/+1
|
* PEP 3149 is accepted.Barry Warsaw2010-09-031-4/+3
| | | | http://mail.python.org/pipermail/python-dev/2010-September/103408.html
* remove pointless coding cookiesFlorent Xicluna2010-08-302-2/+0
|
* Use a marker in generated MANIFEST files, don't touch files without it. ↵Éric Araujo2010-08-142-4/+49
| | | | Fixes #8688.
* #7973: Fix distutils options spelling.Georg Brandl2010-08-022-2/+2
|
* #8292: Fix three instances of truth tests on return values of filter() ↵Georg Brandl2010-07-311-2/+1
| | | | (which is always true in Python 3).
* Bump versions and review NEWS file.Georg Brandl2010-07-311-1/+1
|
* Ensure that the Makefile variable expansionRonald Oussoren2010-07-232-0/+32
| | | | | | | | | | | in distutils.sysconfig matches that in the toplevel sysconfig module. Without this patch universal builds on OSX are broken. Als add a test that checks that the two version of get_config_vars agree on important values.
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-2263-1649/+1597
| | | | disutils2, and distutils is now feature-frozen.
* #6026: skip test_get_file_list when zlib is not available.Ezio Melotti2010-07-121-0/+1
|
* Merged revisions 82272 via svnmerge fromRonald Oussoren2010-06-271-1/+3
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82272 | ronald.oussoren | 2010-06-27 14:36:16 +0200 (Sun, 27 Jun 2010) | 8 lines Two small fixes for the support for SDKs on MacOSX: 1) The code that checks if an path should be located in the SDK explicitly excludes /usr/local. This fixes issue9046 2) The SDK variant for filtering "db_dirs_to_check" in setup.py was not doing anything because of a missing assignment. ........
* Merged revisions 82130 via svnmerge fromBenjamin Peterson2010-06-211-3/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82130 | benjamin.peterson | 2010-06-21 10:27:46 -0500 (Mon, 21 Jun 2010) | 1 line fix finding visual studio 2008 on 64 bit #8854 ........
* Fix for issue #8577: without this patch test_distutilsRonald Oussoren2010-06-151-2/+3
| | | | | | will fail when builddir != srcdir (that is, when you run configure in a directory that is not the top of the source tree).
* Merged revisions 81662 via svnmerge fromRonald Oussoren2010-06-031-1/+22
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81662 | ronald.oussoren | 2010-06-03 11:47:21 +0200 (Thu, 03 Jun 2010) | 9 lines Fix for issue #7724: ensure that distutils and python's own setup.py honor the MacOSX SDK when one is specified. This is needed to be able to build using the 10.4u SDK while running on OSX 10.6. This is a fixed version of the patch in r80963, I've tested this patch on OSX and Linux. ........
* Oops, add the new test_log.py for distutils test suite (missing part of r81359)Victor Stinner2010-05-191-0/+36
|
* Issue #8663: distutils.log emulates backslashreplace error handler. FixVictor Stinner2010-05-191-0/+4
| | | | | compilation in a non-ASCII directory if stdout encoding is ASCII (eg. if stdout is not a TTY).
* Merged revisions 81261 via svnmerge fromTarek Ziadé2010-05-171-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81261 | tarek.ziade | 2010-05-17 12:54:43 +0200 (Mon, 17 May 2010) | 1 line upgraded distutils docs w.r.t. the manifest regeneration ........
* Merged revisions 81255 via svnmerge fromTarek Ziadé2010-05-172-57/+66
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81255 | tarek.ziade | 2010-05-17 12:06:20 +0200 (Mon, 17 May 2010) | 1 line Fixed #8688: Distutils now recalculates MANIFEST everytime. ........