Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-36302: Sort list of sources (GH-12341) | Bernhard M. Wiedemann | 2019-08-01 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | When building packages (e.g. for openSUSE Linux) (random) filesystem order of input files influences ordering of functions in the output .so files. Thus without the patch, builds (in disposable VMs) would usually differ. Without this patch, all callers have to be patched individually https://github.com/dugsong/libdnet/pull/42 https://github.com/sass/libsass-python/pull/212 https://github.com/tahoe-lafs/pycryptopp/pull/41 https://github.com/yt-project/yt/pull/2206 https://github.com/pyproj4/pyproj/pull/142 https://github.com/pytries/datrie/pull/49 https://github.com/Roche/pyreadstat/pull/37 but that is an infinite effort. See https://reproducible-builds.org/ for why this matters. | ||||
* | bpo-37481: Deprecate distutils bdist_wininst command (GH-14553) | Victor Stinner | 2019-07-05 | 1 | -1/+9 |
| | | | | The distutils bdist_wininst command is now deprecated, use bdist_wheel (wheel packages) instead. | ||||
* | bpo-10945: Drop support for bdist_wininst on non-Windows systems (GH-14506) | Miro Hrončok | 2019-07-01 | 1 | -0/+3 |
| | | | | | | | | | | | bdist_wininst depends on MBCS codec, unavailable on non-Windows, and bdist_wininst have not worked since at least Python 3.2, possibly never on Python 3. Here we document that bdist_wininst is only supported on Windows, and we mark it unsupported otherwise to skip tests. Distributors of Python 3 can now safely drop the bdist_wininst .exe files without the need to skip bdist_wininst related tests. | ||||
* | bpo-11122: fix hardcoded path checking for rpmbuild in bdist_rpm.py (GH-10594) | Marcin Niemira | 2019-06-08 | 1 | -4/+1 |
| | |||||
* | bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549) | E. M. Bray | 2019-05-24 | 1 | -12/+24 |
| | | | | | | | | | | It is also possible to link against a library or executable with a statically linked libpython, but not both with the same DLL. In fact building a statically linked python is currently broken on Cygwin for other (related) reasons. The same problem applies to other POSIX-like layers over Windows (MinGW, MSYS) but Python's build system does not seem to attempt to support those platforms at the moment. | ||||
* | bpo-21536: On Android, C extensions are linked to libpython (GH-12989) | xdegaye | 2019-04-29 | 1 | -0/+15 |
| | |||||
* | bpo-21536: C extensions are no longer linked to libpython (GH-12946) | Victor Stinner | 2019-04-25 | 1 | -17/+2 |
| | | | | | | | | | | | | | | On Unix, C extensions are no longer linked to libpython. It is now possible to load a C extension built using a shared library Python with a statically linked Python. When Python is embedded, libpython must not be loaded with RTLD_LOCAL, but RTLD_GLOBAL instead. Previously, using RTLD_LOCAL, it was already not possible to load C extensions which were not linked to libpython, like C extensions of the standard library built by the "*shared*" section of Modules/Setup. distutils, python-config and python-config.py have been modified. | ||||
* | bpo-28552: Fix distutils.sysconfig for empty sys.executable (GH-12875) | Victor Stinner | 2019-04-25 | 1 | -1/+1 |
| | | | | | | | bpo-28552, bpo-7774: Fix distutils.sysconfig if sys.executable is None or an empty string: use os.getcwd() to initialize project_base. Fix also the distutils build command: don't use sys.executable if it's evaluated as false (None or empty string). | ||||
* | fix code styling (GH-12737) | Inada Naoki | 2019-04-09 | 1 | -1/+1 |
| | |||||
* | bpo-35416: fix potential resource warnings in distutils (GH-10918) | Mickaël Schoentgen | 2019-04-08 | 3 | -39/+43 |
| | |||||
* | bpo-31292: Fixed distutils check --restructuredtext for include directives ↵ | Philipp A | 2019-03-27 | 1 | -1/+2 |
| | | | | | | (GH-10605) | ||||
* | bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744) | Steve Dower | 2019-02-05 | 1 | -2/+3 |
| | |||||
* | bpo-11191: skip unsupported test_distutils case for AIX with xlc (GH-8709) | Michael Felt | 2018-12-28 | 1 | -1/+0 |
| | | | | | | | Command line options for the xlc compiler behave differently from gcc and clang, so skip this test case for now when xlc is the compiler. Patch by aixtools (Michael Felt) | ||||
* | bpo-22831: Use "with" to avoid possible fd leaks in distutils. (GH-10921) | Serhiy Storchaka | 2018-12-20 | 3 | -39/+36 |
| | |||||
* | bpo-35186: Remove "built with" comment in setup.py upload (GH-10414) | Paul Ganssle | 2018-12-17 | 1 | -8/+2 |
| | | | | | | platform.dist() is deprecated and slated for removal in Python 3.8. The upload command itself should also not be used to upload to PyPI, but while it continues to exist it should not use deprecated functions. | ||||
* | bpo-35133: Fix mistakes when concatenate string literals on different lines. ↵ | Serhiy Storchaka | 2018-11-05 | 5 | -7/+7 |
| | | | | | | | | | | (GH-10284) Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings. | ||||
* | bpo-34605: Replace "pliant children" with "helpers" (GH-9195) | Victor Stinner | 2018-09-11 | 1 | -1/+1 |
| | | | | | | | | | In distutils.command.install, replace "pliant children" (previously, it was "pliant slaves") with "helpers". <!-- issue-number: [bpo-34605](https://www.bugs.python.org/issue34605) --> https://bugs.python.org/issue34605 <!-- /issue-number --> | ||||
* | bpo-34605: childs => children (GH-9102) | Victor Stinner | 2018-09-07 | 1 | -1/+1 |
| | |||||
* | bpo-34605: Avoid master/slave terms (GH-9101) | Victor Stinner | 2018-09-07 | 1 | -1/+1 |
| | | | | | | | * Replace "master process" with "parent process" * Replace "master option mappings" with "main option mappings" * Replace "master pattern object" with "main pattern object" * ssl: replace "master" with "server" * And some other similar changes | ||||
* | Improve error message for "setup.py upload" without dist files (#21060) | Éric Araujo | 2018-02-18 | 1 | -1/+2 |
| | |||||
* | bpo-32304: Fix distutils upload for sdists ending with \x0d (GH-5264) | Bo Bayles | 2018-01-26 | 1 | -2/+0 |
| | | | | Patch by Bo Bayles. | ||||
* | bpo-32588: Move _findvs into its own module and add missing _queue module to ↵ | Steve Dower | 2018-01-18 | 1 | -5/+4 |
| | | | | installer (#5227) | ||||
* | bpo-32302: Fix distutils bdist_wininst for CRT v142 (#4851) | Victor Stinner | 2017-12-14 | 1 | -2/+2 |
| | | | CRT v142 is binary compatible with CRT v140. | ||||
* | fixes bpo-31866: remove code pertaining to AtheOS support (#4115) | Benjamin Peterson | 2017-10-26 | 1 | -18/+2 |
| | | | | We stop support this OS in 2007 with commit 19fab761b71a1687aee3415db3a937b5ce31975d. Let's finish. | ||||
* | Remove all mention of Windows IA-64 support (GH-3389) | Zachary Ware | 2017-09-06 | 1 | -1/+1 |
| | | | It was mostly removed long ago. | ||||
* | bpo-31340: Change to building with MSVC v141 (included with Visual Studio ↵ | Steve Dower | 2017-09-06 | 1 | -9/+13 |
| | | | | 2017) (#3311) | ||||
* | bpo-11913: Add README.rst to the distutils standard READMEs list (#563) | Ryan Gonzalez | 2017-04-14 | 1 | -1/+1 |
| | |||||
* | Issue #26071: Fixes preprocessor definition and rebuilds ↵ | Steve Dower | 2016-12-13 | 2 | -0/+0 |
|\ | | | | | | | wininst-14.0[-amd64].exe | ||||
| * | Issue #26071: Fixes preprocessor definition and rebuilds ↵ | Steve Dower | 2016-12-13 | 2 | -0/+0 |
| |\ | | | | | | | | | | wininst-14.0[-amd64].exe | ||||
| | * | Issue #26071: Fixes preprocessor definition and rebuilds ↵ | Steve Dower | 2016-12-13 | 2 | -0/+0 |
| | | | | | | | | | | | | wininst-14.0[-amd64].exe | ||||
* | | | Make cs_path_exists a protected, static method | Jason R. Coombs | 2016-10-14 | 1 | -19/+19 |
| | | | |||||
* | | | Add case-sensitive file comparison for detecting/adding standard default files. | Jason R. Coombs | 2016-10-14 | 1 | -2/+20 |
| | | | |||||
* | | | Extract methods from sdist.add_defaults, allowing subclasses to override or ↵ | Jason R. Coombs | 2016-10-14 | 1 | -0/+15 |
| | | | | | | | | | | | | inject different behaviors. | ||||
* | | | Get names for README files from class attribute, allowing subclass to override. | Jason R. Coombs | 2016-10-14 | 1 | -1/+3 |
| | | | |||||
* | | | Replace trailing comments with block-level comments | Jason R. Coombs | 2016-10-14 | 1 | -2/+4 |
| | | | |||||
* | | | Remove unused import and reorganize imports of modules. | Jason R. Coombs | 2016-10-14 | 1 | -1/+3 |
| | | | |||||
* | | | Remove wildcard imports from distutils.command.sdist | Jason R. Coombs | 2016-10-14 | 1 | -2/+2 |
| | | | |||||
* | | | Issue #13756: Fix building extensions modules on Cygwin | Zachary Ware | 2016-10-01 | 1 | -7/+0 |
|/ / | | | | | | | Patch by Roumen Petrov, based on original patch by Jason Tishler. | ||||
* | | merge 3.5 (#1703178) | Benjamin Peterson | 2016-09-29 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | build_ext: correctly parse the link_objects user option (closes #1703178) | Benjamin Peterson | 2016-09-29 | 1 | -0/+1 |
| | | | | | | | | Patch by Valerie Lambert. | ||||
* | | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 | 2 | -3/+3 |
| | | | | | | | | | | | | | | And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter. | ||||
* | | Issue #27919: Deprecate extra_path option in distutils. | Jason R. Coombs | 2016-09-01 | 1 | -0/+6 |
| | | |||||
* | | Closes #27904: Improved logging statements to defer formatting until needed. | Vinay Sajip | 2016-08-31 | 6 | -10/+10 |
| | | |||||
* | | Issue #27819: Simply default to gztar for sdist formats by default on all ↵ | Jason R. Coombs | 2016-08-20 | 1 | -11/+1 |
| | | | | | | | | platforms. | ||||
* | | Issue #27349: Merge from 3.5 | Berker Peksag | 2016-06-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27349: Fix typo in distutils upload command | Berker Peksag | 2016-06-18 | 1 | -1/+1 |
| | | |||||
* | | Issue #20900: Merge from 3.5 | Berker Peksag | 2016-06-10 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #20900: distutils register command now decodes HTTP responses correctly | Berker Peksag | 2016-06-10 | 1 | -3/+3 |
| | | | | | | | | Initial patch by ingrid. | ||||
* | | - merge 3.5 | doko@ubuntu.com | 2016-06-04 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | - Issue #26884: Fix linking extension modules for cross builds. | doko@ubuntu.com | 2016-06-04 | 1 | -1/+1 |
| | | | | | | | | Patch by Xavier de Gaye. |