Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15364: Fix test_srcdir for the installed case. | Ned Deily | 2012-07-28 | 1 | -1/+2 |
| | |||||
* | Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path. | Richard Oudkerk | 2012-07-27 | 1 | -0/+28 |
| | |||||
* | Issue #15184: Some config variables in test_sysconfig_module | Ned Deily | 2012-07-22 | 1 | -1/+21 |
| | | | | | | | | may differ between sysconfig and distutils.sysconfig due to compiler customizations on OS X. For now, move those vars into a separate test and skip if the customization has taken place in distutils. The long-term solution is to eliminate having two sysconfig modules. | ||||
* | Issue #15184: Ensure consistent results of OS X configuration | Ned Deily | 2012-07-21 | 1 | -0/+9 |
| | | | | | | | tailoring for universal builds by factoring out common OS X-specific customizations from sysconfig, distutils.sysconfig, distutils.util, and distutils.unixccompiler into a new module _osx_support that can eventually also be used by packaging. | ||||
* | Merge 3.2 | Éric Araujo | 2012-03-07 | 1 | -9/+0 |
|\ | |||||
| * | Backout buggy patch committed for #13719 | Éric Araujo | 2012-03-07 | 1 | -9/+0 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2012-03-05 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Fix NameError from #13719 fix | Éric Araujo | 2012-03-05 | 1 | -0/+1 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2012-03-05 | 1 | -5/+13 |
|\ \ | |/ | |||||
| * | Make distutils’ upload command work with bdist_msi products (#13719). | Éric Araujo | 2012-03-05 | 1 | -5/+13 |
| | | | | | | | | Patch by Ralf Schmitt. | ||||
* | | Merge 3.2 | Éric Araujo | 2012-02-26 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Set archive format explicitly in one distutils test | Éric Araujo | 2012-02-26 | 1 | -1/+2 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2012-02-25 | 2 | -40/+117 |
|\ \ | |/ | |||||
| * | Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). | Éric Araujo | 2012-02-25 | 2 | -40/+117 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 0a94e2f807c7 and 90b30d62caf2 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help. | ||||
* | | Merge fix from 3.2 | Éric Araujo | 2012-02-15 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Fix test failure for shared builds caused by #1326113 fix | Éric Araujo | 2012-02-15 | 1 | -1/+2 |
| | | |||||
* | | Merge fixes for #1326113 and #12297 from 3.2 | Éric Araujo | 2012-02-15 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | Fix parsing of build_ext --libraries option (#1326113) | Éric Araujo | 2012-02-15 | 1 | -6/+6 |
| | | |||||
* | | Merge edits from 3.2 (#13716, #1040439, #2945, #13770, #6715) | Éric Araujo | 2012-02-05 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | Branch merge | Éric Araujo | 2012-02-05 | 1 | -0/+9 |
| |\ | |||||
| | * | Stop ignoring RPMs in distutils' upload command (#2945). | Éric Araujo | 2012-01-15 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | Bug reported by Hartmut Goebel and patch contributed by Carl Robben. Carl tested the fix and we have a buildbot with rpm installed, so I’m committing even though I could not run this test (but I do understand the changed code :) | ||||
* | | | merge | Ned Deily | 2012-02-03 | 1 | -2/+8 |
|\ \ \ | |/ / | |||||
| * | | Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. | Ned Deily | 2012-02-03 | 1 | -2/+8 |
| |/ | |||||
* | | Limit test scope to those platforms that can save the target filenames. ↵ | Jason R. Coombs | 2011-12-28 | 1 | -0/+17 |
| | | | | | | | | Reference #11638. | ||||
* | | Ported some test cases from 2.7 for #11638 | Jason R. Coombs | 2011-12-26 | 1 | -2/+21 |
| | | |||||
* | | Merge follow-up for #11254 and other changes from 3.2 | Éric Araujo | 2011-11-03 | 5 | -80/+116 |
|\ \ | |/ | |||||
| * | More fixes for PEP 3147 compliance in distutils (#11254) | Éric Araujo | 2011-11-03 | 3 | -55/+84 |
| | | |||||
| * | Cleanups in distutils tests. | Éric Araujo | 2011-11-02 | 3 | -25/+32 |
| | | | | | | | | | | | | | | | | - Actually check the contents of the file created by bdist_dumb. - Don’t use “RECORD” as filename for non-PEP 376 record file - Don’t start method name with “_test”, it smells like a disabled test method instead of an helper method - Fix some idioms (assertIn, addCleanup) | ||||
* | | Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵ | Mark Hammond | 2011-10-17 | 1 | -2/+45 |
|\ \ | |/ | | | | | manifest | ||||
| * | Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵ | Mark Hammond | 2011-10-17 | 1 | -2/+45 |
| | | | | | | | | manifest | ||||
* | | Merge #11751 from 3.2 | Éric Araujo | 2011-10-11 | 1 | -7/+194 |
|\ \ | |/ | |||||
| * | Increase test coverage for distutils.filelist (#11751). | Éric Araujo | 2011-10-11 | 1 | -7/+194 |
| | | | | | | | | Patch by Justin Love. | ||||
* | | Merge 3.2 | Éric Araujo | 2011-10-09 | 2 | -3/+30 |
|\ \ | |/ | |||||
| * | Add tests for Unicode handling in distutils’ check and register (#13114) | Éric Araujo | 2011-10-09 | 2 | -3/+30 |
| | | |||||
* | | Merge fixes for #10526, #10359, #11254, #9100 and the bug without number | Éric Araujo | 2011-10-08 | 3 | -9/+15 |
|\ \ | |/ | |||||
| * | Fix distutils byte-compilation to comply with PEP 3147 (#11254). | Éric Araujo | 2011-10-07 | 2 | -7/+13 |
| | | | | | | | | Patch by Jeff Ramnani. Tested with -B, -O and -OO. | ||||
| * | Make C code in one distutils test comply with ISO C (#10359). | Éric Araujo | 2011-10-07 | 1 | -2/+2 |
| | | | | | | | | Patch by Hallvard B Furuseth. | ||||
* | | Merge fix for #8933 from 3.2 | Éric Araujo | 2011-09-10 | 1 | -51/+61 |
|\ \ | |/ | |||||
| * | Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. | Éric Araujo | 2011-09-09 | 1 | -0/+14 |
| | | |||||
| * | Slight cleanup in distutils test_dist. | Éric Araujo | 2011-09-09 | 1 | -51/+47 |
| | | | | | | | | | | I have tests to add in this file and it’s always nice to start from a clean base. | ||||
* | | Merge fix for #8286 from 3.2 | Éric Araujo | 2011-09-02 | 1 | -6/+31 |
|\ \ | |/ | |||||
| * | Warn instead of crashing because of invalid path in MANIFEST.in (#8286). | Éric Araujo | 2011-09-02 | 1 | -1/+27 |
| | | | | | | | | | | sdist used to crash with a full traceback dump instead of printing a nice warning with the faulty line number. | ||||
| * | Enable catching WARN-level logging messages in distutils' test_sdist | Éric Araujo | 2011-09-02 | 1 | -5/+4 |
| | | |||||
* | | Merge doc changes from 3.2 (#10454, #12298) | Éric Araujo | 2011-09-01 | 1 | -4/+3 |
|\ \ | |/ | |||||
| * | Fix typo (was build) and remove redundancy in docstring | Éric Araujo | 2011-09-01 | 1 | -4/+3 |
| | | |||||
* | | Merge fix for #10946 from 3.2 | Éric Araujo | 2011-08-29 | 1 | -21/+27 |
|\ \ | |/ | |||||
| * | Make bdist_* commands respect --skip-build passed to bdist (#10946) | Éric Araujo | 2011-08-29 | 1 | -21/+27 |
| | | |||||
| * | Branch merge | Éric Araujo | 2011-08-26 | 1 | -0/+4 |
| |\ | |||||
* | \ | Branch merge | Éric Araujo | 2011-08-26 | 1 | -3/+2 |
|\ \ \ | |||||
| * \ \ | Merge from 3.2 (#9302 fix and other changes) | Éric Araujo | 2011-08-25 | 1 | -3/+2 |
| |\ \ \ | | |/ / |