mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-09 03:53:48 -05:00
Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cca008ba04 | ||
|
|
2fd7be0453 | ||
|
|
cdccbd0ba3 | ||
|
|
51c026bf56 | ||
|
|
5d967fa38a | ||
|
|
f03adae58a | ||
|
|
65316a7e99 | ||
|
|
e928e75f22 | ||
|
|
de1f8a7a1d | ||
|
|
7256feeaa8 | ||
|
|
6d4365a696 | ||
|
|
8439f8e187 | ||
|
|
32a86a84c0 | ||
|
|
d5b12f826d | ||
|
|
b6b761f9f1 | ||
|
|
e8f952a5d8 | ||
|
|
864cd79980 | ||
|
|
6d20b3b123 | ||
|
|
fe4eccf3e7 | ||
|
|
f0f2cdd1c6 | ||
|
|
58427b9a5c | ||
|
|
72757562c1 | ||
|
|
fb97a9c2bd | ||
|
|
48b545345e | ||
|
|
45bb60dc39 | ||
|
|
c0fef470cb | ||
|
|
986fe1a749 | ||
|
|
bfe54c9459 | ||
|
|
a43631d7c0 | ||
|
|
a157725dbe | ||
|
|
3a95c969e1 | ||
|
|
0d949796ce | ||
|
|
ee6ef20859 | ||
|
|
7bc426e2be | ||
|
|
3b0ee099a8 | ||
|
|
44db3b03d0 | ||
|
|
49d955d584 | ||
|
|
1e79a5222b | ||
|
|
d29feab2c8 | ||
|
|
a98fee0555 | ||
|
|
7ea0408966 | ||
|
|
42e6409f6c | ||
|
|
6f7a29c3f4 |
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
@@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
|
|||||||
liberapay: # Replace with a single Liberapay username
|
liberapay: # Replace with a single Liberapay username
|
||||||
issuehunt: # Replace with a single IssueHunt username
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
otechie: # Replace with a single Otechie username
|
otechie: # Replace with a single Otechie username
|
||||||
custom: ['https://www.bountysource.com/teams/yyuu-pyenv/issues'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
name: macos_tests
|
name: macos_build
|
||||||
on: [pull_request, push]
|
on: [pull_request, push]
|
||||||
jobs:
|
jobs:
|
||||||
macos_tests:
|
macos_build:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- 2.7.18
|
|
||||||
- 3.5.10
|
|
||||||
- 3.6.15
|
|
||||||
- 3.7.10
|
- 3.7.10
|
||||||
- 3.8.10
|
- 3.8.10
|
||||||
- 3.9.5
|
- 3.9.5
|
||||||
7
.github/workflows/pyenv_tests.yml
vendored
7
.github/workflows/pyenv_tests.yml
vendored
@@ -24,7 +24,12 @@ jobs:
|
|||||||
# xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
|
# xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
|
||||||
# https://github.com/pyenv/pyenv#installation
|
# https://github.com/pyenv/pyenv#installation
|
||||||
- run: |
|
- run: |
|
||||||
if test "$RUNNER_OS" == "macOS"; then brew install coreutils; fi
|
if test "$RUNNER_OS" == "macOS"; then
|
||||||
|
brew install coreutils fish
|
||||||
|
elif [[ $(lsb_release -sr | awk -F. '{print $1}') -ge 20 ]]; then
|
||||||
|
# Ubuntu 18 has fish 2 which lacks many features that facilitate testing
|
||||||
|
sudo apt install fish -yq
|
||||||
|
fi
|
||||||
- run: pwd
|
- run: pwd
|
||||||
- env:
|
- env:
|
||||||
PYENV_ROOT: /home/runner/work/pyenv/pyenv
|
PYENV_ROOT: /home/runner/work/pyenv/pyenv
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
name: ubuntu_tests
|
name: ubuntu_build
|
||||||
on: [pull_request, push]
|
on: [pull_request, push]
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu_tests:
|
ubuntu_build:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- 2.7.18
|
|
||||||
- 3.5.10
|
|
||||||
- 3.6.15
|
|
||||||
- 3.7.10
|
- 3.7.10
|
||||||
- 3.8.10
|
- 3.8.10
|
||||||
- 3.9.5
|
- 3.9.5
|
||||||
50
CHANGELOG.md
50
CHANGELOG.md
@@ -1,11 +1,57 @@
|
|||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
## Release 2.3.0
|
||||||
|
|
||||||
|
* Bump openssl 1.1 to 1.1.1n for CPython 3.7 3.8 3.9 (#2276)
|
||||||
|
* Doc Fix: Escape a hash character causing unwanted GitHub Issue linking (#2282)
|
||||||
|
* Add CPython 3.9.12 (#2296)
|
||||||
|
* Add CPython 3.10.4 (#2295)
|
||||||
|
* Add patch for 3.6.15 to support Xcode 13.3 (#2288)
|
||||||
|
* Add patch for 3.7.12 to support Xcode 13.3 (#2292)
|
||||||
|
* Add CONTRIBUTING.md (#2287)
|
||||||
|
* Add PyPy 7.3.9 release 2022-03-30 (#2308)
|
||||||
|
* Add Pyston 2.3.3 (#2316)
|
||||||
|
* Add CPython 3.11.0a7 (#2315)
|
||||||
|
* Add "nogil" Python v3.9.10 (#2342)
|
||||||
|
* Support XCode 13.3 in all releases that officially support MacOS 11 (#2344)
|
||||||
|
* Add GraalPython 22.1.0 (#2346)
|
||||||
|
* Make PYENV_DEBUG imply -v for `pyenv install` (#2347)
|
||||||
|
* Simplify init scheme (#2310)
|
||||||
|
* Don't use Homebrew outside of MacOS (#2349)
|
||||||
|
* Add `:latest` syntax to documentation for the `install` command (#2351)
|
||||||
|
|
||||||
|
## Release 2.2.5
|
||||||
|
|
||||||
|
* Add CPython 3.10.3
|
||||||
|
* Add CPython 3.9.11
|
||||||
|
* Add CPython 3.8.13
|
||||||
|
* Add CPython 3.7.13
|
||||||
|
* Add CPython 3.11.0a6 (#2266)
|
||||||
|
* Add PyPy 7.3.8 (#2253)
|
||||||
|
* Add miniconda3-3.7-4.11.0, miniconda3-3.8-4.11.0, miniconda3-3.9-4.11.0 (#2268)
|
||||||
|
* Add pyston-2.3.2 (#2240)
|
||||||
|
* Fix UnicodeDecodeError for CPython 3.6.15 and 3.7.12 (#2237)
|
||||||
|
* python-build: add URL for get-pip for Python 3.6 (#2238)
|
||||||
|
* Bump openssl to 1.1.1n for CPython 3.10.x
|
||||||
|
|
||||||
|
## Release 2.2.4
|
||||||
|
|
||||||
|
* Added docstrings to several undocumented functions (#2197)
|
||||||
|
* Fix incorrect pypy 2.7-7.3.6 sha256 hashes (#2208)
|
||||||
|
* Fix a regression in include paths when compiling ctypes in 3.6.15/3.7.12 (#2209)
|
||||||
|
* Revert "Disable coreutils on M1 Apple Silicon with arm64 (#2020)" (#2212)
|
||||||
|
* CPython 3.11.0a4 (#2217)
|
||||||
|
* CPython 3.9.10 and 3.10.2 (#2219)
|
||||||
|
* miniconda3-latest: added Linux-aarch64 (#2221)
|
||||||
|
* Add GraalPython 22.0.0 (#2226)
|
||||||
|
|
||||||
|
|
||||||
## Release 2.2.3
|
## Release 2.2.3
|
||||||
|
|
||||||
* Add new pypy versions (pypy2.7-7.3.2~7.3.5) to the version list (#2194)
|
* Add new pypy versions (pypy2.7-7.3.2~7.3.5) to the version list (#2194)
|
||||||
* Fix Python 3.7.12 compilation on macOS arm64/M1. (#2190)
|
* Fix Python 3.7.12 compilation on macOS arm64/M1. (#2190)
|
||||||
* Fix Python 3.6.15 compilation on macOS arm64/M1. (#2189)
|
* Fix Python 3.6.15 compilation on macOS arm64/M1. (#2189)
|
||||||
* Add Anaconda3-2021.11 (#2193)
|
* Add Anaconda3-2021.11 (#2193)
|
||||||
* CPython 3.11.0a3 (#2187)
|
* CPython 3.11.0a3 (#2187)
|
||||||
* Fix errant "echo" in README install instructions (#2185)
|
* Fix errant "echo" in README install instructions (#2185)
|
||||||
* Add Miniforge and Mambaforge 4.10.3-10 (#2184)
|
* Add Miniforge and Mambaforge 4.10.3-10 (#2184)
|
||||||
|
|||||||
14
COMMANDS.md
14
COMMANDS.md
@@ -228,6 +228,14 @@ Then install the desired versions:
|
|||||||
2.6.8
|
2.6.8
|
||||||
* 2.7.6 (set by /home/yyuu/.pyenv/version)
|
* 2.7.6 (set by /home/yyuu/.pyenv/version)
|
||||||
|
|
||||||
|
To install the latest version of Python without giving a specific version use the `:latest` syntax. For example, to install the latest patch version for Python 3.8 you could do:
|
||||||
|
|
||||||
|
pyenv install 3.8:latest
|
||||||
|
|
||||||
|
To install the latest major release for Python 3 try:
|
||||||
|
|
||||||
|
pyenv install 3:latest
|
||||||
|
|
||||||
## `pyenv uninstall`
|
## `pyenv uninstall`
|
||||||
|
|
||||||
Uninstall a specific Python version.
|
Uninstall a specific Python version.
|
||||||
@@ -315,9 +323,9 @@ Displays the root directory where versions and shims are kept.
|
|||||||
|
|
||||||
## `pyenv prefix`
|
## `pyenv prefix`
|
||||||
|
|
||||||
Displays the directory where a Python version is installed. If no
|
Displays the directories where the given Python versions are installed,
|
||||||
version is given, `pyenv prefix` displays the location of the
|
separated by colons. If no version is given, `pyenv prefix` displays the
|
||||||
currently selected version.
|
locations of the currently selected versions.
|
||||||
|
|
||||||
$ pyenv prefix 3.9.7
|
$ pyenv prefix 3.9.7
|
||||||
/home/user/.pyenv/versions/3.9.7
|
/home/user/.pyenv/versions/3.9.7
|
||||||
|
|||||||
104
CONTRIBUTING.md
Normal file
104
CONTRIBUTING.md
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
General guidance
|
||||||
|
================
|
||||||
|
|
||||||
|
* The usual principes of respecting existing conventions and making sure that your changes
|
||||||
|
are in line with the overall product design apply when contributing code to Pyenv.
|
||||||
|
|
||||||
|
* We are limited to Bash 3.2 features
|
||||||
|
|
||||||
|
That's because that's the version shipped with MacOS.
|
||||||
|
(They didn't upgrade past it and switched to Zsh because later versions
|
||||||
|
are covered by GPLv3 which has additional restrictions unacceptable for Apple.)
|
||||||
|
|
||||||
|
* Be extra careful when submitting logic specific for the Apple Silicon platform
|
||||||
|
|
||||||
|
As of this writing, Github Actions do not support it and only one team member has the necessary hardware.
|
||||||
|
So we may be unable to test your changes and may have to take your word for it.
|
||||||
|
|
||||||
|
|
||||||
|
Formatting PRs
|
||||||
|
==============
|
||||||
|
|
||||||
|
We strive to keep commit history one-concern-per-commit to keep it meaningful and easy to follow.
|
||||||
|
If a pull request (PR) addresses a single concern (the typical case), we usually squash commits
|
||||||
|
from it together when merging so its commit history doesn't matter.
|
||||||
|
If however a PR addresses multiple separate concerns, each of them should be presented as a separate commit.
|
||||||
|
Adding multiple new Python releases of the same flavor is okay with either a single or multiple commits.
|
||||||
|
|
||||||
|
|
||||||
|
Authoring installation scripts
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Adding new Python release support
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
|
The easiest way to add support for a new Python release is to copy the script from the previous one
|
||||||
|
and adjust it as necessary. In many cases, just changing version numbers, URLs and hashes is enough.
|
||||||
|
Do pay attention to other "magic numbers" that may be present in a script --
|
||||||
|
e.g. the set of architectures and OS versions supported by a release -- since those change from time to time, too.
|
||||||
|
|
||||||
|
Make sure to also copy any patches for the previous release that still apply to the new one.
|
||||||
|
Typically, a patch no longer applies if it addresses a problem that's already fixed in the new release.
|
||||||
|
|
||||||
|
For prereleases, we only create an entry for the latest prerelease in a specific version line.
|
||||||
|
When submitting a newer prerelease, replace the older one.
|
||||||
|
|
||||||
|
|
||||||
|
Adding version-specific fixes/patches
|
||||||
|
-------------------------------------
|
||||||
|
|
||||||
|
We accept fixes to issues in specific Python releases that prevent users from using them with Pyenv.
|
||||||
|
|
||||||
|
In the default configuration for a Python release, we strive to provide as close to vanilla experience as practical,
|
||||||
|
to maintain [the principle of the least surprise](https://en.wikipedia.org/wiki/Principle_of_least_astonishment).
|
||||||
|
As such, any such fixes:
|
||||||
|
|
||||||
|
* Must not break or degrade (e.g. disable features) the build in any of the environments that the release officially supports
|
||||||
|
* Must not introduce incompatibilities with the vanilla release (including binary incompatibilities)
|
||||||
|
* Should not patch things unnecessarily, to minimize the risk of the aforementioned undesirable side effects.
|
||||||
|
* E.g. if the fix is for a specific environment, its logic ought to only fire in this specific environment and not touch execution paths for other environments.
|
||||||
|
* As such, it's advisable to briefly explain in the PR what each added patch does and why it is necessary to fix the declared problem
|
||||||
|
|
||||||
|
Generally, version-specific fixes belong in the scripts for the affected releases and/or patches for them -- this guarantees that their effect is limited to only those releases.
|
||||||
|
|
||||||
|
<h3>Backporting upstream patches</h3>
|
||||||
|
|
||||||
|
Usually, this is the easiest way to backport a fix for a problem that is fixed in a newer release.
|
||||||
|
|
||||||
|
* Clone Python, check out the tag for the appropriate release and create a branch
|
||||||
|
* Apply existing patches if there are any (with either `patch` or `git am`) and commit
|
||||||
|
* Cherry-pick the upstream commit that fixes the problem in a newer release
|
||||||
|
* Commit and `git format-patch`
|
||||||
|
* Commit the generated patch file into Pyenv, test your changes and submit a PR
|
||||||
|
|
||||||
|
|
||||||
|
Deprecation policy
|
||||||
|
------------------
|
||||||
|
|
||||||
|
We do not provide official support for EOL releases and environments or otherwise provide any kind of extended support for old Python releases.
|
||||||
|
|
||||||
|
We do however accept fixes from interested parties that would allow running older, including EOL, releases in newer environments.
|
||||||
|
In addition to the above general requirements for release-specific fixes,
|
||||||
|
|
||||||
|
* Such a fix must not add maintenance burden (e.g. add new logic to `python-build` that has to be kept there indefinitely)
|
||||||
|
* Unless the added logic is useful for both EOL and non-EOL releases. In this case, it will be considered as being primarily an improvement for non-EOL releases.
|
||||||
|
* We do not provide any guarantees from our side that any such fix works or will continue working going forward. It's up to the interested parties to maintain it.
|
||||||
|
|
||||||
|
|
||||||
|
Advanced changes / adding new Python flavor support
|
||||||
|
---------------------------------------------------
|
||||||
|
|
||||||
|
An installation script is sourced from `python-build`. All installation scripts are based on the same logic:
|
||||||
|
|
||||||
|
1. Select the source to download and other variable parameters as needed.
|
||||||
|
|
||||||
|
This includes showing an error if the user's environment (OS, architecture) is not supported by the release.
|
||||||
|
Binary releases that only officially support specific distro(s) typically show a warning in other distros instead.
|
||||||
|
|
||||||
|
2. Run one of the `install_*` shell functions
|
||||||
|
|
||||||
|
`install_*` shell functions defined in `python-build` install Python from different kinds of sources -- compressed package (binary or source), upstream installation script, VCS checkout. Pick one that's the most appropriate for your packaging.
|
||||||
|
|
||||||
|
Each of them accepts a couple of function-specific arguments which are followed by arguments that constitute the build sequence. Each `<argument>` in the build sequence corresponds to the `install_*_<argument>` function in `python-build`. Check what's available and add any functions with logic specific to your flavor if needed.
|
||||||
|
|
||||||
|
We strive to keep out of `python-build` parts of build logic that are release-specific and/or tend to change abruptly between releases -- e.g. sets of supported architectures and other software's versions. This results in logic duplication between installation scripts -- but since old releases never change once released, this doesn't really add to the maintenance burden. As a rule of thumb, `python-build` can host parts of logic that are expected to stay the same for an indefinite amount of time -- for an entire Python flavor or release line.
|
||||||
634
README.md
634
README.md
@@ -12,7 +12,7 @@ This project was forked from [rbenv](https://github.com/rbenv/rbenv) and
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
### what pyenv _does..._
|
### What pyenv _does..._
|
||||||
|
|
||||||
* Lets you **change the global Python version** on a per-user basis.
|
* Lets you **change the global Python version** on a per-user basis.
|
||||||
* Provides support for **per-project Python versions**.
|
* Provides support for **per-project Python versions**.
|
||||||
@@ -27,12 +27,11 @@ This project was forked from [rbenv](https://github.com/rbenv/rbenv) and
|
|||||||
* **Depend on Python itself.** pyenv was made from pure shell scripts.
|
* **Depend on Python itself.** pyenv was made from pure shell scripts.
|
||||||
There is no bootstrap problem of Python.
|
There is no bootstrap problem of Python.
|
||||||
* **Need to be loaded into your shell.** Instead, pyenv's shim
|
* **Need to be loaded into your shell.** Instead, pyenv's shim
|
||||||
approach works by adding a directory to your `$PATH`.
|
approach works by adding a directory to your `PATH`.
|
||||||
* **Manage virtualenv.** Of course, you can create [virtualenv](https://pypi.python.org/pypi/virtualenv)
|
* **Manage virtualenv.** Of course, you can create [virtualenv](https://pypi.python.org/pypi/virtualenv)
|
||||||
yourself, or [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv)
|
yourself, or [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv)
|
||||||
to automate the process.
|
to automate the process.
|
||||||
|
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
||||||
@@ -41,19 +40,27 @@ This project was forked from [rbenv](https://github.com/rbenv/rbenv) and
|
|||||||
* **[How It Works](#how-it-works)**
|
* **[How It Works](#how-it-works)**
|
||||||
* [Understanding PATH](#understanding-path)
|
* [Understanding PATH](#understanding-path)
|
||||||
* [Understanding Shims](#understanding-shims)
|
* [Understanding Shims](#understanding-shims)
|
||||||
* [Choosing the Python Version](#choosing-the-python-version)
|
* [Understanding Python version selection](#understanding-python-version-selection)
|
||||||
* [Locating the Python Installation](#locating-the-python-installation)
|
* [Locating Pyenv-provided Python Installations](#locating-pyenv-provided-python-installations)
|
||||||
* **[Installation](#installation)**
|
* **[Installation](#installation)**
|
||||||
* [Prerequisites](#prerequisites)
|
* [Getting Pyenv](#getting-pyenv)
|
||||||
* [Homebrew in macOS](#homebrew-in-macos)
|
* [Homebrew in macOS](#homebrew-in-macos)
|
||||||
* [Windows](#windows)
|
* [Windows](#windows)
|
||||||
* [Automatic installer](#automatic-installer)
|
* [Automatic installer](#automatic-installer)
|
||||||
* [Basic GitHub Checkout](#basic-github-checkout)
|
* [Basic GitHub Checkout](#basic-github-checkout)
|
||||||
* [Upgrading](#upgrading)
|
* [Set up your shell environment for Pyenv](#set-up-your-shell-environment-for-pyenv)
|
||||||
* [Homebrew on macOS](#homebrew-on-macos)
|
* [Restart your shell](#restart-your-shell)
|
||||||
* [Advanced Configuration](#advanced-configuration)
|
* [Install Python build dependencies](#install-python-build-dependencies)
|
||||||
* [Uninstalling Python Versions](#uninstalling-python-versions)
|
* **[Usage](#usage)**
|
||||||
* **[Command Reference](#command-reference)**
|
* [Install additional Python versions](#install-additional-python-versions)
|
||||||
|
* [Switch between Python versions](#switch-between-python-versions)
|
||||||
|
* [Uninstall Python versions](#uninstall-python-versions)
|
||||||
|
* [Other operations](#other-operations)
|
||||||
|
* [Upgrading](#upgrading)
|
||||||
|
* [Uninstalling pyenv](#uninstalling-pyenv)
|
||||||
|
* [Advanced Configuration](#advanced-configuration)
|
||||||
|
* [Using Pyenv without shims](#using-pyenv-without-shims)
|
||||||
|
* [Environment variables](#environment-variables)
|
||||||
* **[Development](#development)**
|
* **[Development](#development)**
|
||||||
* [Version History](#version-history)
|
* [Version History](#version-history)
|
||||||
* [License](#license)
|
* [License](#license)
|
||||||
@@ -69,6 +76,7 @@ executables injected into your `PATH`, determines which Python version
|
|||||||
has been specified by your application, and passes your commands along
|
has been specified by your application, and passes your commands along
|
||||||
to the correct Python installation.
|
to the correct Python installation.
|
||||||
|
|
||||||
|
|
||||||
### Understanding PATH
|
### Understanding PATH
|
||||||
|
|
||||||
When you run a command like `python` or `pip`, your operating system
|
When you run a command like `python` or `pip`, your operating system
|
||||||
@@ -84,6 +92,7 @@ precedence over another one at the end. In this example, the
|
|||||||
`/usr/local/bin` directory will be searched first, then `/usr/bin`,
|
`/usr/local/bin` directory will be searched first, then `/usr/bin`,
|
||||||
then `/bin`.
|
then `/bin`.
|
||||||
|
|
||||||
|
|
||||||
### Understanding Shims
|
### Understanding Shims
|
||||||
|
|
||||||
pyenv works by inserting a directory of _shims_ at the front of your
|
pyenv works by inserting a directory of _shims_ at the front of your
|
||||||
@@ -104,7 +113,8 @@ operating system will do the following:
|
|||||||
* Run the shim named `pip`, which in turn passes the command along to
|
* Run the shim named `pip`, which in turn passes the command along to
|
||||||
pyenv
|
pyenv
|
||||||
|
|
||||||
### Choosing the Python Version
|
|
||||||
|
### Understanding Python version selection
|
||||||
|
|
||||||
When you execute a shim, pyenv determines which Python version to use by
|
When you execute a shim, pyenv determines which Python version to use by
|
||||||
reading it from the following sources, in this order:
|
reading it from the following sources, in this order:
|
||||||
@@ -122,25 +132,45 @@ reading it from the following sources, in this order:
|
|||||||
directory, until reaching the root of your filesystem.
|
directory, until reaching the root of your filesystem.
|
||||||
|
|
||||||
4. The global `$(pyenv root)/version` file. You can modify this file using
|
4. The global `$(pyenv root)/version` file. You can modify this file using
|
||||||
the [`pyenv global`](https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-global) command. If the global version
|
the [`pyenv global`](https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-global) command.
|
||||||
file is not present, pyenv assumes you want to use the "system"
|
If the global version file is not present, pyenv assumes you want to use the "system"
|
||||||
Python. (In other words, whatever version would run if pyenv weren't in your
|
Python (see below).
|
||||||
`PATH`.)
|
|
||||||
|
A special version name "`system`" means to use whatever Python is found on `PATH`
|
||||||
|
after the shims `PATH` entry (in other words, whatever would be run if Pyenv
|
||||||
|
shims weren't on `PATH`). Note that Pyenv considers those installations outside
|
||||||
|
its control and does not attempt to inspect or distinguish them in any way.
|
||||||
|
So e.g. if you are on MacOS and have OS-bundled Python 3.8.9 and Homebrew-installed
|
||||||
|
Python 3.9.12 and 3.10.2 -- for Pyenv, this is still a single "`system`" version,
|
||||||
|
and whichever of those is first on `PATH` under the executable name you
|
||||||
|
specified will be run.
|
||||||
|
|
||||||
**NOTE:** You can activate multiple versions at the same time, including multiple
|
**NOTE:** You can activate multiple versions at the same time, including multiple
|
||||||
versions of Python2 or Python3 simultaneously. This allows for parallel usage of
|
versions of Python2 or Python3 simultaneously. This allows for parallel usage of
|
||||||
Python2 and Python3, and is required with tools like `tox`. For example, to set
|
Python2 and Python3, and is required with tools like `tox`. For example, to instruct
|
||||||
your path to first use your `system` Python and Python3 (set to 2.7.9 and 3.4.2
|
Pyenv to first use your system Python and Python3 (which are e.g. 2.7.9 and 3.4.2)
|
||||||
in this example), but also have Python 3.3.6, 3.2, and 2.5 available on your
|
but also have Python 3.3.6, 3.2.1, and 2.5.2 available, you first `pyenv install`
|
||||||
`PATH`, one would first `pyenv install` the missing versions, then set `pyenv
|
the missing versions, then set `pyenv global system 3.3.6 3.2.1 2.5.2`.
|
||||||
global system 3.3.6 3.2 2.5`. At this point, one should be able to find the full
|
Then you'll be able to invoke any of those versions with an appropriate `pythonX` or
|
||||||
executable path to each of these using `pyenv which`, e.g. `pyenv which python2.5`
|
`pythonX.Y` name.
|
||||||
(should display `$(pyenv root)/versions/2.5/bin/python2.5`), or `pyenv which
|
You can also specify multiple versions in a `.python-version` file by hand,
|
||||||
python3.4` (should display path to system Python3). You can also specify multiple
|
separated by newlines. Lines starting with a `#` are ignored.
|
||||||
versions in a `.python-version` file, separated by newlines.
|
|
||||||
Lines starting with a `#` are ignored.
|
|
||||||
|
|
||||||
### Locating the Python Installation
|
[`pyenv which <command>`](COMMANDS.md#pyenv-which) displays which real executable would be
|
||||||
|
run when you invoke `<command>` via a shim.
|
||||||
|
E.g. if you have 3.3.6, 3.2.1 and 2.5.2 installed of which 3.3.6 and 2.5.2 are selected
|
||||||
|
and your system Python is 3.2.5,
|
||||||
|
`pyenv which python2.5` should display `$(pyenv root)/versions/2.5.2/bin/python2.5`,
|
||||||
|
`pyenv which python3` -- `$(pyenv root)/versions/3.3.6/bin/python3` and
|
||||||
|
`pyenv which python3.2` -- path to your system Python due to the fall-through (see below).
|
||||||
|
|
||||||
|
Shims also fall through to anything further on `PATH` if the corresponding executable is
|
||||||
|
not present in any of the selected Python installations.
|
||||||
|
This allows you to use any programs installed elsewhere on the system as long as
|
||||||
|
they are not shadowed by a selected Python installation.
|
||||||
|
|
||||||
|
|
||||||
|
### Locating Pyenv-provided Python installations
|
||||||
|
|
||||||
Once pyenv has determined which version of Python your application has
|
Once pyenv has determined which version of Python your application has
|
||||||
specified, it passes the command along to the corresponding Python
|
specified, it passes the command along to the corresponding Python
|
||||||
@@ -158,282 +188,262 @@ For example, you might have these versions installed:
|
|||||||
As far as Pyenv is concerned, version names are simply directories under
|
As far as Pyenv is concerned, version names are simply directories under
|
||||||
`$(pyenv root)/versions`.
|
`$(pyenv root)/versions`.
|
||||||
|
|
||||||
### Managing Virtual Environments
|
|
||||||
|
|
||||||
There is a pyenv plugin named [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) which comes with various features to help pyenv users to manage virtual environments created by virtualenv or Anaconda.
|
|
||||||
Because the `activate` script of those virtual environments are relying on mutating `$PATH` variable of user's interactive shell, it will intercept pyenv's shim style command execution hooks.
|
|
||||||
We'd recommend to install pyenv-virtualenv as well if you have some plan to play with those virtual environments.
|
|
||||||
|
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Prerequisites
|
### Getting Pyenv
|
||||||
|
#### Homebrew in macOS
|
||||||
For pyenv to install python correctly you should [**install the Python build dependencies**](https://github.com/pyenv/pyenv/wiki#suggested-build-environment).
|
|
||||||
|
|
||||||
### Homebrew in macOS
|
|
||||||
|
|
||||||
1. Consider installing with [Homebrew](https://brew.sh):
|
1. Consider installing with [Homebrew](https://brew.sh):
|
||||||
```sh
|
```sh
|
||||||
brew update
|
brew update
|
||||||
brew install pyenv
|
brew install pyenv
|
||||||
```
|
```
|
||||||
2. Then follow the rest of the post-installation steps under [Basic GitHub Checkout](https://github.com/pyenv/pyenv#basic-github-checkout), starting with #2 ("Configure your shell's environment for Pyenv").
|
2. Then follow the rest of the post-installation steps, starting with
|
||||||
|
[Set up your shell environment for Pyenv](#set-up-your-shell-environment-for-pyenv).
|
||||||
|
|
||||||
3. OPTIONAL. To fix `brew doctor`'s warning _""config" scripts exist outside your system or Homebrew directories"_
|
3. OPTIONAL. To fix `brew doctor`'s warning _""config" scripts exist outside your system or Homebrew directories"_
|
||||||
|
|
||||||
If you're going to build Homebrew formulae from source that link against `libpython`
|
If you're going to build Homebrew formulae from source that link against Python
|
||||||
like Tkinter or NumPy
|
like Tkinter or NumPy
|
||||||
_(This is only generally the case if you are a developer of such a formula,
|
_(This is only generally the case if you are a developer of such a formula,
|
||||||
or if you have an EOL version of MacOS for which prebuilt bottles are no longer available
|
or if you have an EOL version of MacOS for which prebuilt bottles are no longer provided
|
||||||
and are using such a formula)._
|
and you are using such a formula)._
|
||||||
|
|
||||||
To avoid them accidentally linking against a Pyenv-provided Python,
|
To avoid them accidentally linking against a Pyenv-provided Python,
|
||||||
add the following line into your interactive shell's configuration:
|
add the following line into your interactive shell's configuration:
|
||||||
|
|
||||||
* Bash/Zsh:
|
* Bash/Zsh:
|
||||||
|
|
||||||
~~~bash
|
~~~bash
|
||||||
alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
|
alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
* Fish:
|
* Fish:
|
||||||
|
|
||||||
~~~fish
|
~~~fish
|
||||||
alias brew="env PATH=(string replace (pyenv root)/shims '' \"\$PATH\") brew"
|
alias brew="env PATH=(string replace (pyenv root)/shims '' \"\$PATH\") brew"
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
### Windows
|
|
||||||
|
#### Windows
|
||||||
|
|
||||||
Pyenv does not officially support Windows and does not work in Windows outside
|
Pyenv does not officially support Windows and does not work in Windows outside
|
||||||
the Windows Subsystem for Linux.
|
the Windows Subsystem for Linux.
|
||||||
Moreover, even there, the Pythons it installs are not native Windows versions
|
Moreover, even there, the Pythons it installs are not native Windows versions
|
||||||
but rather Linux versions run through a compatibility layer --
|
but rather Linux versions running in a virtual machine --
|
||||||
so you won't get Windows-specific functionality.
|
so you won't get Windows-specific functionality.
|
||||||
|
|
||||||
If you're in Windows, we recommend using @kirankotari's [`pyenv-win`](https://github.com/pyenv-win/pyenv-win) fork --
|
If you're in Windows, we recommend using @kirankotari's [`pyenv-win`](https://github.com/pyenv-win/pyenv-win) fork --
|
||||||
which does install native Windows Python versions.
|
which does install native Windows Python versions.
|
||||||
|
|
||||||
|
|
||||||
### Automatic installer
|
#### Automatic installer
|
||||||
|
|
||||||
Visit our other project:
|
Visit our other project:
|
||||||
https://github.com/pyenv/pyenv-installer
|
https://github.com/pyenv/pyenv-installer
|
||||||
|
|
||||||
|
|
||||||
### Basic GitHub Checkout
|
#### Basic GitHub Checkout
|
||||||
|
|
||||||
This will get you going with the latest version of Pyenv and make it
|
This will get you going with the latest version of Pyenv and make it
|
||||||
easy to fork and contribute any changes back upstream.
|
easy to fork and contribute any changes back upstream.
|
||||||
|
|
||||||
1. **Check out Pyenv where you want it installed.**
|
* **Check out Pyenv where you want it installed.**
|
||||||
A good place to choose is `$HOME/.pyenv` (but you can install it somewhere else):
|
A good place to choose is `$HOME/.pyenv` (but you can install it somewhere else):
|
||||||
|
|
||||||
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
||||||
|
|
||||||
Optionally, try to compile a dynamic Bash extension to speed up Pyenv. Don't
|
* Optionally, try to compile a dynamic Bash extension to speed up Pyenv. Don't
|
||||||
worry if it fails; Pyenv will still work normally:
|
worry if it fails; Pyenv will still work normally:
|
||||||
|
|
||||||
cd ~/.pyenv && src/configure && make -C src
|
cd ~/.pyenv && src/configure && make -C src
|
||||||
|
|
||||||
2. **Configure your shell's environment for Pyenv**
|
|
||||||
|
|
||||||
**Note:** The below instructions for specific shells are designed for common shell setups;
|
|
||||||
they also install shell functions into interactive shells only.
|
|
||||||
If you have an uncommon setup and/or needs and they don't work for you,
|
|
||||||
use the [Advanced Configuration](#advanced-configuration)
|
|
||||||
section below to figure out what you need to do in your specific case.
|
|
||||||
|
|
||||||
**General MacOS note:**
|
|
||||||
[Make sure that your terminal app is configured to run the shell as a login shell](https://github.com/pyenv/pyenv/wiki/MacOS-login-shell)
|
|
||||||
(especially if you're using an alternative terminal app and/or shell).
|
|
||||||
The configuration samples for MacOS are written under this assumption and won't work otherwise.
|
|
||||||
|
|
||||||
- For **Bash**:
|
|
||||||
|
|
||||||
- **If your `~/.profile` sources `~/.bashrc` (Debian, Ubuntu, Mint):**
|
|
||||||
|
|
||||||
~~~bash
|
|
||||||
# the sed invocation inserts the lines at the start of the file
|
|
||||||
# after any initial comment lines
|
|
||||||
sed -Ei -e '/^([^#]|$)/ {a \
|
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
|
||||||
a \
|
|
||||||
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
||||||
a \
|
|
||||||
' -e ':a' -e '$!{n;ba};}' ~/.profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >>~/.profile
|
|
||||||
|
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
|
||||||
~~~
|
|
||||||
|
|
||||||
- **If your `~/.bash_profile` sources `~/.bashrc` (Red Hat, Fedora, CentOS):**
|
|
||||||
|
|
||||||
~~~ bash
|
|
||||||
sed -Ei -e '/^([^#]|$)/ {a \
|
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
|
||||||
a \
|
|
||||||
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
||||||
a \
|
|
||||||
' -e ':a' -e '$!{n;ba};}' ~/.bash_profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
|
|
||||||
|
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.profile
|
|
||||||
|
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
|
||||||
~~~
|
|
||||||
|
|
||||||
- **If you have no `~/.bash_profile` and your `/etc/profile` sources `~/.bashrc` (SUSE):**
|
|
||||||
|
|
||||||
~~~bash
|
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.profile
|
|
||||||
|
|
||||||
echo 'if command -v pyenv >/dev/null; then eval "$(pyenv init -)"; fi' >> ~/.bashrc
|
|
||||||
~~~
|
|
||||||
|
|
||||||
- **Otherwise if you have no stock `~/.profile` or `~/.bash_profile` (MacOS):**
|
|
||||||
|
|
||||||
~~~bash
|
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.profile
|
|
||||||
echo 'if [ -n "$PS1" -a -n "$BASH_VERSION" ]; then source ~/.bashrc; fi' >> ~/.profile
|
|
||||||
|
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
|
||||||
~~~
|
|
||||||
|
|
||||||
In MacOS, make sure that your terminal app runs the shell as a login shell.
|
|
||||||
|
|
||||||
- **Temporary environments (CI, Docker, batch jobs):**
|
|
||||||
|
|
||||||
In CI/build environments, paths and the environment are usually already set up for you
|
|
||||||
in one of the above ways.
|
|
||||||
You may only need to install Pyenv as a shell function into the (noninteractive) shell
|
|
||||||
that runs the batch script, and only if you need subcommands that require `pyenv`
|
|
||||||
to be a shell function (e.g. `shell` and Pyenv-Virtualenv's `activate`).
|
|
||||||
|
|
||||||
~~~bash
|
|
||||||
eval "$(pyenv init -)"
|
|
||||||
~~~
|
|
||||||
|
|
||||||
If you are installing Pyenv yourself as part of the batch job,
|
|
||||||
after installing the files, run the following in the job's shell
|
|
||||||
to be able to use it.
|
|
||||||
|
|
||||||
~~~bash
|
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
|
||||||
export PATH="$PYENV_ROOT/bin:$PATH" # if `pyenv` is not already on PATH
|
|
||||||
eval "$(pyenv init --path)"
|
|
||||||
eval "$(pyenv init -)"
|
|
||||||
~~~
|
|
||||||
|
|
||||||
|
|
||||||
**General Bash warning**: There are some systems where the `BASH_ENV` variable is configured
|
|
||||||
to point to `.bashrc`. On such systems, you should almost certainly put the
|
|
||||||
`eval "$(pyenv init -)"` line into `.bash_profile`, and **not** into `.bashrc`. Otherwise, you
|
|
||||||
may observe strange behaviour, such as `pyenv` getting into an infinite loop.
|
|
||||||
See [#264](https://github.com/pyenv/pyenv/issues/264) for details.
|
|
||||||
|
|
||||||
|
|
||||||
- For **Zsh**:
|
### Set up your shell environment for Pyenv
|
||||||
|
|
||||||
- **MacOS, if Pyenv is installed with Homebrew:**
|
**Upgrade note:** The startup logic and instructions have been updated for simplicity in 2.3.0.
|
||||||
|
The previous, more complicated configuration scheme for 2.0.0-2.2.5 still works.
|
||||||
|
|
||||||
~~~ zsh
|
* Define environment variable `PYENV_ROOT` to point to the path where
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.zprofile
|
Pyenv will store its data. `$HOME/.pyenv` is the default.
|
||||||
|
If you installed Pyenv via Git checkout, we recommend
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
|
to set it to the same location as where you cloned it.
|
||||||
~~~
|
* Add the `pyenv` executable to your `PATH` if it's not already there
|
||||||
|
* run `eval "$(pyenv init -)"` to install `pyenv` into your shell as a shell function, enable shims and autocompletion
|
||||||
Make sure that your terminal app runs the shell as a login shell.
|
* You may run `eval "$(pyenv init --path)"` instead to just enable shims, without shell integration
|
||||||
|
|
||||||
|
The below setup should work for the vast majority of users for commmon use cases.
|
||||||
|
See [Advanvced configuration](#advanced-configuration) for details and more configuration options.
|
||||||
|
|
||||||
|
- For **bash**:
|
||||||
|
|
||||||
|
Stock Bash startup files vary widely between distibutions in which of them source
|
||||||
|
which, under what circumstances, in what order and what additional configuration they perform.
|
||||||
|
As such, the most reliable way to get Pyenv in all environments is to append Pyenv
|
||||||
|
configuration commands to both `.bashrc` (for interactive shells)
|
||||||
|
and the profile file that Bash would use (for login shells).
|
||||||
|
|
||||||
|
First, add the commands to `~/.bashrc`:
|
||||||
|
|
||||||
|
~~~ bash
|
||||||
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
|
||||||
|
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
|
||||||
|
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
||||||
|
~~~
|
||||||
|
|
||||||
|
Then, if you have `~/.profile`, `~/.bash_profile` or `~/.bash_login`, add the commands there as well.
|
||||||
|
If you have none of these, add them to `~/.profile`.
|
||||||
|
|
||||||
|
* to add to `~/.profile`:
|
||||||
|
~~~ bash
|
||||||
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
|
||||||
|
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
|
||||||
|
echo 'eval "$(pyenv init -)"' >> ~/.profile
|
||||||
|
~~~
|
||||||
|
|
||||||
|
* to add to `~/.bash_profile`:
|
||||||
|
~~~ bash
|
||||||
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
|
||||||
|
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
|
||||||
|
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
|
||||||
|
~~~
|
||||||
|
|
||||||
|
- For **Zsh**:
|
||||||
|
~~~ zsh
|
||||||
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
|
||||||
|
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
|
||||||
|
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
|
||||||
|
~~~
|
||||||
|
|
||||||
|
If you wish to get Pyenv in noninteractive login shells as well, also add the commands to `~/.zprofile` or `~/.zlogin`.
|
||||||
|
|
||||||
|
- For **Fish shell**:
|
||||||
|
|
||||||
|
Execute this interactively:
|
||||||
|
|
||||||
|
~~~ fish
|
||||||
|
set -Ux PYENV_ROOT $HOME/.pyenv
|
||||||
|
set -U fish_user_paths $PYENV_ROOT/bin $fish_user_paths
|
||||||
|
~~~
|
||||||
|
|
||||||
|
And add this to `~/.config/fish/config.fish`:
|
||||||
|
|
||||||
|
~~~ fish
|
||||||
|
pyenv init - | source
|
||||||
|
~~~
|
||||||
|
|
||||||
|
**Bash warning**: There are some systems where the `BASH_ENV` variable is configured
|
||||||
|
to point to `.bashrc`. On such systems, you should almost certainly put the
|
||||||
|
`eval "$(pyenv init -)"` line into `.bash_profile`, and **not** into `.bashrc`. Otherwise, you
|
||||||
|
may observe strange behaviour, such as `pyenv` getting into an infinite loop.
|
||||||
|
See [#264](https://github.com/pyenv/pyenv/issues/264) for details.
|
||||||
|
|
||||||
|
**Proxy note**: If you use a proxy, export `http_proxy` and `https_proxy`, too.
|
||||||
|
|
||||||
|
|
||||||
- **MacOS, if Pyenv is installed with a Git checkout:**
|
### Restart your shell
|
||||||
|
|
||||||
~~~ zsh
|
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zprofile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zprofile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.zprofile
|
|
||||||
|
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
|
|
||||||
~~~
|
|
||||||
|
|
||||||
Make sure that your terminal app runs the shell as a login shell.
|
for the `PATH` changes to take effect.
|
||||||
|
|
||||||
- **Other OSes:**
|
```sh
|
||||||
|
exec "$SHELL"
|
||||||
~~~ zsh
|
```
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zprofile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zprofile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.zprofile
|
|
||||||
|
|
||||||
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.profile
|
|
||||||
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.profile
|
|
||||||
echo 'eval "$(pyenv init --path)"' >> ~/.profile
|
|
||||||
|
|
||||||
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
|
### Install Python build dependencies
|
||||||
~~~
|
|
||||||
|
|
||||||
- For **Fish shell**:
|
|
||||||
|
|
||||||
Execute this interactively:
|
[**Install Python build dependencies**](https://github.com/pyenv/pyenv/wiki#suggested-build-environment)
|
||||||
|
before attempting to install a new Python version.
|
||||||
~~~ fish
|
|
||||||
set -Ux PYENV_ROOT $HOME/.pyenv
|
|
||||||
set -U fish_user_paths $PYENV_ROOT/bin $fish_user_paths
|
|
||||||
~~~
|
|
||||||
|
|
||||||
And add this to `~/.config/fish/config.fish`:
|
You can now begin using Pyenv.
|
||||||
|
|
||||||
~~~ fish
|
|
||||||
status is-login; and pyenv init --path | source
|
|
||||||
status is-interactive; and pyenv init - | source
|
|
||||||
~~~
|
|
||||||
|
|
||||||
If Fish is not your login shell, also follow the Bash/Zsh instructions to add to `~/.profile`.
|
----
|
||||||
|
|
||||||
**Proxy note**: If you use a proxy, export `http_proxy` and `https_proxy`, too.
|
|
||||||
|
|
||||||
|
|
||||||
4. **Restart your login session for the changes to profile files to take effect.**
|
## Usage
|
||||||
E.g. if you're in a GUI session, you need to fully log out and log back in.
|
|
||||||
|
|
||||||
In MacOS, restarting terminal windows is enough (because MacOS runs shells
|
|
||||||
in them as login shells by default).
|
|
||||||
|
|
||||||
5. [**Install Python build dependencies**](https://github.com/pyenv/pyenv/wiki#suggested-build-environment) before attempting to install a new Python version.
|
### Install additional Python versions
|
||||||
|
|
||||||
6. **Install Python versions into `$(pyenv root)/versions`.**
|
To install additonal Python versions, use [`pyenv install`](COMMANDS.md#pyenv-install).
|
||||||
For example, to download and install Python 2.7.8, run:
|
|
||||||
```sh
|
|
||||||
pyenv install 2.7.8
|
|
||||||
```
|
|
||||||
**NOTE:** If you need to pass a `configure` option to a build, please use the
|
|
||||||
```CONFIGURE_OPTS``` environment variable.
|
|
||||||
|
|
||||||
**NOTE:** If you want to use proxy to download, please set the `http_proxy` and `https_proxy`
|
For example, to download and install Python 3.10.4, run:
|
||||||
environment variables.
|
|
||||||
|
|
||||||
**NOTE:** If you are having trouble installing a Python version,
|
```sh
|
||||||
please visit the wiki page about
|
pyenv install 3.10.4
|
||||||
[Common Build Problems](https://github.com/pyenv/pyenv/wiki/Common-build-problems).
|
```
|
||||||
|
|
||||||
|
**NOTE:** Most Pyenv-provided Python releases are source releases and are built
|
||||||
|
from source as part of installation (that's why you need Python build dependencies preinstalled).
|
||||||
|
You can pass options to Python's `configure` and compiler flags to customize the build,
|
||||||
|
see [_Special environment variables_ in Python-Build's README](plugins/python-build/README.md#special-environment-variables)
|
||||||
|
for details.
|
||||||
|
|
||||||
|
**NOTE:** If you want to use proxy for download, please set the `http_proxy` and `https_proxy`
|
||||||
|
environment variables.
|
||||||
|
|
||||||
|
**NOTE:** If you are having trouble installing a Python version,
|
||||||
|
please visit the wiki page about
|
||||||
|
[Common Build Problems](https://github.com/pyenv/pyenv/wiki/Common-build-problems).
|
||||||
|
|
||||||
|
|
||||||
#### Upgrading
|
### Switch between Python versions
|
||||||
|
|
||||||
|
To select a Pyenv-installed Python as the version to use, run one
|
||||||
|
of the following commands:
|
||||||
|
|
||||||
|
* [`pyenv shell <version>`](COMMANDS.md#pyenv-shell) -- select just for current shell session
|
||||||
|
* [`pyenv local <version>`](COMMANDS.md#pyenv-local) -- automatically select whenever you are in the current directory (or its subdirectories)
|
||||||
|
* [`pyenv global <version>`](COMMANDS.md#pyenv-shell) -- select globally for your user account
|
||||||
|
|
||||||
|
E.g. to select the above-mentioned newly-installed Python 3.10.4 as your preferred version to use:
|
||||||
|
|
||||||
|
~~~bash
|
||||||
|
pyenv global 3.10.4
|
||||||
|
~~~
|
||||||
|
|
||||||
|
Now whenever you invoke `python`, `pip` etc., an executable from the Pyenv-provided
|
||||||
|
3.10.4 installation will be run instead of the system Python.
|
||||||
|
|
||||||
|
Using "`system`" as a version name would reset the selection to your system-provided Python.
|
||||||
|
|
||||||
|
See [Understanding shims](#understanding-shims) and
|
||||||
|
[Understanding Python version selection](#understanding-python-version-selection)
|
||||||
|
for more details on how the selection works and more information on its usage.
|
||||||
|
|
||||||
|
|
||||||
|
### Uninstall Python versions
|
||||||
|
|
||||||
|
As time goes on, you will accumulate Python versions in your
|
||||||
|
`$(pyenv root)/versions` directory.
|
||||||
|
|
||||||
|
To remove old Python versions, use [`pyenv uninstall <version>`](COMMANDS.md#pyenv-uninstall).
|
||||||
|
|
||||||
|
Alternatively, you can simply `rm -rf` the directory of the version you want
|
||||||
|
to remove. You can find the directory of a particular Python version
|
||||||
|
with the `pyenv prefix` command, e.g. `pyenv prefix 2.6.8`.
|
||||||
|
Note however that plugins may run additional operations on uninstall
|
||||||
|
which you would need to do by hand as well. E.g. Pyenv-Virtualenv also
|
||||||
|
removes any virtual environments linked to the version being uninstalled.
|
||||||
|
|
||||||
|
|
||||||
|
### Other operations
|
||||||
|
|
||||||
|
Run `pyenv commands` to get a list of all available subcommands.
|
||||||
|
Run a subcommand with `--help` to get help on it, or see the [Commands Reference](COMMANDS.md).
|
||||||
|
|
||||||
|
Note that Pyenv plugins that you install may add their own subcommands.
|
||||||
|
|
||||||
|
|
||||||
|
## Upgrading
|
||||||
|
|
||||||
If you've installed Pyenv using Homebrew, upgrade using:
|
If you've installed Pyenv using Homebrew, upgrade using:
|
||||||
```sh
|
```sh
|
||||||
brew upgrade pyenv
|
brew upgrade pyenv
|
||||||
```
|
```
|
||||||
|
|
||||||
If you've installed Pyenv using the instructions above, you can
|
If you've installed Pyenv using Pyenv-installer or Git checkout, you can
|
||||||
upgrade your installation at any time using Git.
|
upgrade your installation at any time using Git.
|
||||||
|
|
||||||
To upgrade to the latest development version of pyenv, use `git pull`:
|
To upgrade to the latest development version of pyenv, use `git pull`:
|
||||||
@@ -452,7 +462,7 @@ git tag
|
|||||||
git checkout v0.1.0
|
git checkout v0.1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Uninstalling pyenv
|
## Uninstalling pyenv
|
||||||
|
|
||||||
The simplicity of pyenv makes it easy to temporarily disable it, or
|
The simplicity of pyenv makes it easy to temporarily disable it, or
|
||||||
uninstall from the system.
|
uninstall from the system.
|
||||||
@@ -462,124 +472,113 @@ uninstall from the system.
|
|||||||
remove Pyenv shims directory from `PATH`, and future invocations like
|
remove Pyenv shims directory from `PATH`, and future invocations like
|
||||||
`python` will execute the system Python version, as it was before Pyenv.
|
`python` will execute the system Python version, as it was before Pyenv.
|
||||||
|
|
||||||
`pyenv` will still be accessible on the command line, but your Python
|
`pyenv` will still be accessible on the command line, but your Python
|
||||||
apps won't be affected by version switching.
|
apps won't be affected by version switching.
|
||||||
|
|
||||||
2. To completely **uninstall** Pyenv, remove _all_ configuration lines for it
|
2. To completely **uninstall** Pyenv, remove _all_ Pyenv configuration lines
|
||||||
from your shell startup configuration, and then remove
|
from your shell startup configuration, and then remove
|
||||||
its root directory. This will **delete all Python versions** that were
|
its root directory. This will **delete all Python versions** that were
|
||||||
installed under `` $(pyenv root)/versions/ `` directory:
|
installed under the `` $(pyenv root)/versions/ `` directory:
|
||||||
|
|
||||||
```sh
|
|
||||||
rm -rf $(pyenv root)
|
|
||||||
```
|
|
||||||
|
|
||||||
If you've installed Pyenv using a package manager, as a final step,
|
```sh
|
||||||
perform the Pyenv package removal. For instance, for Homebrew:
|
rm -rf $(pyenv root)
|
||||||
|
```
|
||||||
|
|
||||||
```
|
If you've installed Pyenv using a package manager, as a final step,
|
||||||
brew uninstall pyenv
|
perform the Pyenv package removal. For instance, for Homebrew:
|
||||||
```
|
|
||||||
|
|
||||||
### Advanced Configuration
|
```
|
||||||
|
brew uninstall pyenv
|
||||||
|
```
|
||||||
|
|
||||||
|
## Advanced Configuration
|
||||||
|
|
||||||
Skip this section unless you must know what every line in your shell
|
Skip this section unless you must know what every line in your shell
|
||||||
profile is doing.
|
profile is doing.
|
||||||
|
|
||||||
`pyenv init` is the only command that crosses the line of loading
|
|
||||||
extra commands into your shell. Coming from RVM, some of you might be
|
|
||||||
opposed to this idea.
|
|
||||||
|
|
||||||
Also see the [Environment variables](#environment-variables) section
|
Also see the [Environment variables](#environment-variables) section
|
||||||
for the environment variables that control Pyenv's behavior.
|
for the environment variables that control Pyenv's behavior.
|
||||||
|
|
||||||
|
`pyenv init` is the only command that crosses the line of loading
|
||||||
* `eval "$(pyenv init --path)"`:
|
extra commands into your shell. Coming from RVM, some of you might be
|
||||||
|
opposed to this idea. Here's what `eval "$(pyenv init -)"` actually does:
|
||||||
1. **Sets up your shims path.** This is the only requirement for pyenv to
|
|
||||||
function properly. You can do this by hand by prepending
|
|
||||||
`$(pyenv root)/shims` to your `$PATH`.
|
|
||||||
|
|
||||||
`eval "$(pyenv init --path)"` is supposed to be run in your session's login
|
|
||||||
shell startup script -- so that all processes in the session get access to
|
|
||||||
Pyenv's functionality and it only runs once,
|
|
||||||
avoiding breaking `PATH` in nested shells
|
|
||||||
(e.g. shells started from editors/IDEs).
|
|
||||||
|
|
||||||
In Linux, GUI managers typically act as a `sh` login shell, running
|
|
||||||
`/etc/profile` and `~/.profile` at their startup. MacOS' GUI doesn't do that,
|
|
||||||
so its terminal emulator apps run their shells as login shells by default
|
|
||||||
to compensate.
|
|
||||||
|
|
||||||
|
|
||||||
* `eval "$(pyenv init -)"`:
|
1. **Sets up the shims path.** This is what allows Pyenv to intercept
|
||||||
|
and redirect invocations of `python`, `pip` etc. transparently.
|
||||||
|
It prepends `$(pyenv root)/shims` to your `$PATH`.
|
||||||
|
It also deletes any other instances of `$(pyenv root)/shims` on `PATH`
|
||||||
|
which allows to invoke `eval "$(pyenv init -)"` multiple times without
|
||||||
|
getting duplicate `PATH` entries.
|
||||||
|
|
||||||
1. **Installs autocompletion.** This is entirely optional but pretty
|
2. **Installs autocompletion.** This is entirely optional but pretty
|
||||||
useful. Sourcing `$(pyenv root)/completions/pyenv.bash` will set that
|
useful. Sourcing `$(pyenv root)/completions/pyenv.bash` will set that
|
||||||
up. There is also a `$(pyenv root)/completions/pyenv.zsh` for Zsh
|
up. There are also completions for Zsh and Fish.
|
||||||
users.
|
|
||||||
|
|
||||||
2. **Rehashes shims.** From time to time you'll need to rebuild your
|
3. **Rehashes shims.** From time to time you'll need to rebuild your
|
||||||
shim files. Doing this on init makes sure everything is up to
|
shim files. Doing this on init makes sure everything is up to
|
||||||
date. You can always run `pyenv rehash` manually.
|
date. You can always run `pyenv rehash` manually.
|
||||||
|
|
||||||
3. **Installs `pyenv` into the current shell as a shell function.**
|
4. **Installs `pyenv` into the current shell as a shell function.**
|
||||||
This bit is also optional, but allows
|
This bit is also optional, but allows
|
||||||
pyenv and plugins to change variables in your current shell, making
|
pyenv and plugins to change variables in your current shell.
|
||||||
commands like `pyenv shell` possible. The sh dispatcher doesn't do
|
This is required for some commands like `pyenv shell` to work.
|
||||||
anything crazy like override `cd` or hack your shell prompt, but if
|
The sh dispatcher doesn't do
|
||||||
for some reason you need `pyenv` to be a real script rather than a
|
anything crazy like override `cd` or hack your shell prompt, but if
|
||||||
shell function, you can safely skip it.
|
for some reason you need `pyenv` to be a real script rather than a
|
||||||
|
shell function, you can safely skip it.
|
||||||
`eval "$(pyenv init -)"` is supposed to run at any interactive shell's
|
|
||||||
startup (including nested shells) so that you get completion and
|
`eval "$(pyenv init --path)"` only does items 1 and 3.
|
||||||
convenience shell functions.
|
|
||||||
|
|
||||||
To see exactly what happens under the hood for yourself, run `pyenv init -`
|
To see exactly what happens under the hood for yourself, run `pyenv init -`
|
||||||
or `pyenv init --path`.
|
or `pyenv init --path`.
|
||||||
|
|
||||||
|
`eval "$(pyenv init -)"` is supposed to run at any interactive shell's
|
||||||
|
startup (including nested shells -- e.g. those invoked from editors)
|
||||||
|
so that you get completion and convenience shell functions.
|
||||||
|
|
||||||
|
`eval "$(pyenv init --path)"` can be used instead of `eval "$(pyenv init -)"`
|
||||||
|
to just enable shims, without shell integration. It can also be used to bump shims
|
||||||
|
to the front of `PATH` after some other logic has prepended stuff to `PATH`
|
||||||
|
that may shadow Pyenv's shims.
|
||||||
|
|
||||||
|
* In particular, in Debian-based distributions, the stock `~/.profile`
|
||||||
|
prepends per-user `bin` directories to `PATH` after having sourced `~/.bashrc`.
|
||||||
|
This necessitates appending a `pyenv init` call to `~/.profile` as well as `~/.bashrc`
|
||||||
|
in these distributions because the system's Pip places executables for
|
||||||
|
modules installed by a non-root user into those per-user `bin` directories.
|
||||||
|
|
||||||
|
|
||||||
|
### Using Pyenv without shims
|
||||||
|
|
||||||
If you don't want to use `pyenv init` and shims, you can still benefit
|
If you don't want to use `pyenv init` and shims, you can still benefit
|
||||||
from pyenv's ability to install Python versions for you. Just run
|
from pyenv's ability to install Python versions for you. Just run
|
||||||
`pyenv install` and you will find versions installed in
|
`pyenv install` and you will find versions installed in
|
||||||
`$(pyenv root)/versions`, which you can manually execute or symlink
|
`$(pyenv root)/versions`.
|
||||||
as required.
|
|
||||||
|
|
||||||
### Uninstalling Python Versions
|
You can manually execute or symlink them as required,
|
||||||
|
or you can use [`pyenv exec <command>`](COMMANDS.md#pyenv-exec)
|
||||||
|
whenever you want `<command>` to be affected by Pyenv's version selection
|
||||||
|
as currently configured.
|
||||||
|
|
||||||
As time goes on, you will accumulate Python versions in your
|
`pyenv exec` works by prepending `$(pyenv root)/versions/<selected version>/bin`
|
||||||
`$(pyenv root)/versions` directory.
|
to `PATH` in the `<command>`'s environment, the same as what e.g. RVM does.
|
||||||
|
|
||||||
To remove old Python versions, `pyenv uninstall` command to automate
|
|
||||||
the removal process.
|
|
||||||
|
|
||||||
Alternatively, simply `rm -rf` the directory of the version you want
|
|
||||||
to remove. You can find the directory of a particular Python version
|
|
||||||
with the `pyenv prefix` command, e.g. `pyenv prefix 2.6.8`.
|
|
||||||
|
|
||||||
|
|
||||||
----
|
### Environment variables
|
||||||
|
|
||||||
|
You can affect how Pyenv operates with the following settings:
|
||||||
## Command Reference
|
|
||||||
|
|
||||||
See [COMMANDS.md](COMMANDS.md).
|
|
||||||
|
|
||||||
|
|
||||||
----
|
|
||||||
|
|
||||||
## Environment variables
|
|
||||||
|
|
||||||
You can affect how pyenv operates with the following settings:
|
|
||||||
|
|
||||||
name | default | description
|
name | default | description
|
||||||
-----|---------|------------
|
-----|---------|------------
|
||||||
`PYENV_VERSION` | | Specifies the Python version to be used.<br>Also see [`pyenv shell`](https://github.com/pyenv/pyenv/blob/master/COMMANDS.md#pyenv-shell)
|
`PYENV_VERSION` | | Specifies the Python version to be used.<br>Also see [`pyenv shell`]COMMANDS.md#pyenv-shell)
|
||||||
`PYENV_ROOT` | `~/.pyenv` | Defines the directory under which Python versions and shims reside.<br>Also see `pyenv root`
|
`PYENV_ROOT` | `~/.pyenv` | Defines the directory under which Python versions and shims reside.<br>Also see [`pyenv root`](COMMANDS.md#pyenv-root)
|
||||||
`PYENV_DEBUG` | | Outputs debug information.<br>Also as: `pyenv --debug <subcommand>`
|
`PYENV_DEBUG` | | Outputs debug information.<br>Also as: `pyenv --debug <subcommand>`
|
||||||
`PYENV_HOOK_PATH` | [_see wiki_][hooks] | Colon-separated list of paths searched for pyenv hooks.
|
`PYENV_HOOK_PATH` | [_see wiki_][hooks] | Colon-separated list of paths searched for pyenv hooks.
|
||||||
`PYENV_DIR` | `$PWD` | Directory to start searching for `.python-version` files.
|
`PYENV_DIR` | `$PWD` | Directory to start searching for `.python-version` files.
|
||||||
`PYTHON_BUILD_ARIA2_OPTS` | | Used to pass additional parameters to [`aria2`](https://aria2.github.io/).<br>If the `aria2c` binary is available on PATH, pyenv uses `aria2c` instead of `curl` or `wget` to download the Python Source code. If you have an unstable internet connection, you can use this variable to instruct `aria2` to accelerate the download.<br>In most cases, you will only need to use `-x 10 -k 1M` as value to `PYTHON_BUILD_ARIA2_OPTS` environment variable
|
`PYTHON_BUILD_ARIA2_OPTS` | | Used to pass additional parameters to [`aria2`](https://aria2.github.io/).<br>If the `aria2c` binary is available on `PATH`, pyenv uses `aria2c` instead of `curl` or `wget` to download the Python Source code. If you have an unstable internet connection, you can use this variable to instruct `aria2` to accelerate the download.<br>In most cases, you will only need to use `-x 10 -k 1M` as value to `PYTHON_BUILD_ARIA2_OPTS` environment variable
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
@@ -597,9 +596,6 @@ Please feel free to submit pull requests and file bugs on the [issue
|
|||||||
tracker](https://github.com/pyenv/pyenv/issues).
|
tracker](https://github.com/pyenv/pyenv/issues).
|
||||||
|
|
||||||
|
|
||||||
[pyenv-virtualenv]: https://github.com/pyenv/pyenv-virtualenv#readme
|
|
||||||
[hooks]: https://github.com/pyenv/pyenv/wiki/Authoring-plugins#pyenv-hooks
|
|
||||||
|
|
||||||
### Version History
|
### Version History
|
||||||
|
|
||||||
See [CHANGELOG.md](CHANGELOG.md).
|
See [CHANGELOG.md](CHANGELOG.md).
|
||||||
@@ -607,3 +603,7 @@ See [CHANGELOG.md](CHANGELOG.md).
|
|||||||
### License
|
### License
|
||||||
|
|
||||||
[The MIT License](LICENSE)
|
[The MIT License](LICENSE)
|
||||||
|
|
||||||
|
|
||||||
|
[pyenv-virtualenv]: https://github.com/pyenv/pyenv-virtualenv#readme
|
||||||
|
[hooks]: https://github.com/pyenv/pyenv/wiki/Authoring-plugins#pyenv-hooks
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
version="2.2.3"
|
version="2.3.0"
|
||||||
git_revision=""
|
git_revision=""
|
||||||
|
|
||||||
if cd "${BASH_SOURCE%/*}" 2>/dev/null && git remote -v 2>/dev/null | grep -q pyenv; then
|
if cd "${BASH_SOURCE%/*}" 2>/dev/null && git remote -v 2>/dev/null | grep -q pyenv; then
|
||||||
|
|||||||
@@ -57,12 +57,15 @@ function main() {
|
|||||||
;;
|
;;
|
||||||
"path")
|
"path")
|
||||||
print_path
|
print_path
|
||||||
|
print_rehash
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
"print")
|
"print")
|
||||||
init_dirs
|
init_dirs
|
||||||
|
print_path
|
||||||
print_env
|
print_env
|
||||||
print_completion
|
print_completion
|
||||||
|
print_rehash
|
||||||
print_shell_function
|
print_shell_function
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
@@ -74,7 +77,12 @@ function main() {
|
|||||||
function help_() {
|
function help_() {
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
bash )
|
bash )
|
||||||
profile='~/.bash_profile'
|
if [ -e '~/.bash_profile' ]; then
|
||||||
|
profile='~/.bash_profile'
|
||||||
|
else
|
||||||
|
profile='~/.profile'
|
||||||
|
fi
|
||||||
|
profile_explain="~/.bash_profile if it exists, otherwise ~/.profile"
|
||||||
rc='~/.bashrc'
|
rc='~/.bashrc'
|
||||||
;;
|
;;
|
||||||
zsh )
|
zsh )
|
||||||
@@ -92,10 +100,39 @@ function help_() {
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
{
|
{
|
||||||
|
case "$shell" in
|
||||||
|
fish )
|
||||||
|
echo "# Add pyenv executable to PATH by running"
|
||||||
|
echo "# the following interactively:"
|
||||||
|
echo
|
||||||
|
echo 'set -Ux PYENV_ROOT $HOME/.pyenv'
|
||||||
|
echo 'set -U fish_user_paths $PYENV_ROOT/bin $fish_user_paths'
|
||||||
|
echo
|
||||||
|
echo "# Load pyenv automatically by appending"
|
||||||
|
echo "# the following to ~/.config/fish/config.fish:"
|
||||||
|
echo
|
||||||
|
echo 'pyenv init - | source'
|
||||||
|
echo
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
echo '# Load pyenv automatically by appending'
|
||||||
|
echo -n "# the following to "
|
||||||
|
if [ "$profile" == "$rc" ]; then
|
||||||
|
echo "$profile :"
|
||||||
|
else
|
||||||
|
echo
|
||||||
|
echo "${profile_explain:-$profile} (for login shells)"
|
||||||
|
echo "and $rc (for interactive shells) :"
|
||||||
|
fi
|
||||||
|
echo
|
||||||
|
echo 'export PYENV_ROOT="$HOME/.pyenv"'
|
||||||
|
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"'
|
||||||
|
echo 'eval "$(pyenv init -)"'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
echo
|
||||||
|
echo '# Restart your shell for the changes to take effect.'
|
||||||
echo
|
echo
|
||||||
echo '# See the README for instructions on how to set up'
|
|
||||||
echo '# your shell environment for Pyenv.'
|
|
||||||
echo
|
|
||||||
} >&2
|
} >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,13 +141,15 @@ function init_dirs() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function print_path() {
|
function print_path() {
|
||||||
# Need to use the login shell rather than the current one
|
|
||||||
case "$shell" in
|
case "$shell" in
|
||||||
fish )
|
fish )
|
||||||
echo "set -gx PATH '${PYENV_ROOT}/shims' \$PATH"
|
echo 'while set index (contains -i -- '\'"${PYENV_ROOT}/shims"\'' $PATH)'
|
||||||
|
echo 'set -eg PATH[$index]; end; set -e index'
|
||||||
|
echo 'set -gx PATH '\'"${PYENV_ROOT}/shims"\'' $PATH'
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
echo 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
echo 'PATH="$(bash -ec '\''IFS=:; paths=($PATH); for i in ${!paths[@]}; do if [[ ${paths[i]} == "'\'"${PYENV_ROOT}/shims"\''" ]]; then unset '\'\\\'\''paths[i]'\'\\\'\''; fi; done; echo "${paths[*]}"'\'')"'
|
||||||
|
echo 'export PATH="'"${PYENV_ROOT}"'/shims:${PATH}"'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@@ -131,7 +170,9 @@ function print_completion() {
|
|||||||
if [ -r "$completion" ]; then
|
if [ -r "$completion" ]; then
|
||||||
echo "source '$completion'"
|
echo "source '$completion'"
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function print_rehash() {
|
||||||
if [ -z "$no_rehash" ]; then
|
if [ -z "$no_rehash" ]; then
|
||||||
echo 'command pyenv rehash 2>/dev/null'
|
echo 'command pyenv rehash 2>/dev/null'
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Summary: Display prefix for a Python version
|
# Summary: Display prefixes for Python versions
|
||||||
# Usage: pyenv prefix [<version>]
|
# Usage: pyenv prefix [<version>...]
|
||||||
#
|
#
|
||||||
# Displays the directory where a Python version is installed. If no
|
# Displays the directories where the given Python versions are installed,
|
||||||
# version is given, `pyenv prefix' displays the location of the
|
# separated by colons. If no version is given, `pyenv prefix' displays the
|
||||||
# currently selected version.
|
# locations of the currently selected versions.
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|||||||
@@ -73,6 +73,8 @@ unset VERBOSE
|
|||||||
unset HAS_PATCH
|
unset HAS_PATCH
|
||||||
unset DEBUG
|
unset DEBUG
|
||||||
|
|
||||||
|
[ -n "$PYENV_DEBUG" ] && VERBOSE="-v"
|
||||||
|
|
||||||
parse_options "$@"
|
parse_options "$@"
|
||||||
for option in "${OPTIONS[@]}"; do
|
for option in "${OPTIONS[@]}"; do
|
||||||
case "$option" in
|
case "$option" in
|
||||||
|
|||||||
@@ -1322,9 +1322,10 @@ configured_with_package_dir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew() {
|
use_homebrew() {
|
||||||
|
is_mac || return 1
|
||||||
# unless Homebrew is at the default /usr/local, need to add its paths to
|
# unless Homebrew is at the default /usr/local, need to add its paths to
|
||||||
# compiler search to be able to use non-keg-only deps from there
|
# compiler search to be able to use non-keg-only deps from there
|
||||||
if command -v brew &>/dev/null; then
|
if is_mac && command -v brew &>/dev/null; then
|
||||||
local brew_prefix="$(brew --prefix 2>/dev/null || true)"
|
local brew_prefix="$(brew --prefix 2>/dev/null || true)"
|
||||||
# /usr/local/lib:/usr/lib is the default library search path
|
# /usr/local/lib:/usr/lib is the default library search path
|
||||||
if [[ -n $brew_prefix && $brew_prefix != "/usr" && $brew_prefix != "/usr/local" ]]; then
|
if [[ -n $brew_prefix && $brew_prefix != "/usr" && $brew_prefix != "/usr/local" ]]; then
|
||||||
@@ -1340,6 +1341,7 @@ needs_yaml() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew_yaml() {
|
use_homebrew_yaml() {
|
||||||
|
is_mac || return 1
|
||||||
local libdir="$(brew --prefix libyaml 2>/dev/null || true)"
|
local libdir="$(brew --prefix libyaml 2>/dev/null || true)"
|
||||||
if [ -d "$libdir" ]; then
|
if [ -d "$libdir" ]; then
|
||||||
echo "python-build: use libyaml from homebrew"
|
echo "python-build: use libyaml from homebrew"
|
||||||
@@ -1383,6 +1385,7 @@ has_broken_mac_readline() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew_readline() {
|
use_homebrew_readline() {
|
||||||
|
is_mac || return 1
|
||||||
if ! configured_with_package_dir "python" "readline/rlconf.h"; then
|
if ! configured_with_package_dir "python" "readline/rlconf.h"; then
|
||||||
local libdir="$(brew --prefix readline 2>/dev/null || true)"
|
local libdir="$(brew --prefix readline 2>/dev/null || true)"
|
||||||
if [ -d "$libdir" ]; then
|
if [ -d "$libdir" ]; then
|
||||||
@@ -1423,6 +1426,7 @@ has_broken_mac_openssl() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew_openssl() {
|
use_homebrew_openssl() {
|
||||||
|
is_mac || return 1
|
||||||
command -v brew >/dev/null || return 1
|
command -v brew >/dev/null || return 1
|
||||||
for openssl in ${PYTHON_BUILD_HOMEBREW_OPENSSL_FORMULA:-openssl}; do
|
for openssl in ${PYTHON_BUILD_HOMEBREW_OPENSSL_FORMULA:-openssl}; do
|
||||||
local ssldir="$(brew --prefix "${openssl}" || true)"
|
local ssldir="$(brew --prefix "${openssl}" || true)"
|
||||||
@@ -1522,6 +1526,7 @@ build_package_verify_openssl() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew_zlib() {
|
use_homebrew_zlib() {
|
||||||
|
is_mac || return 1
|
||||||
local brew_zlib="$(brew --prefix zlib 2>/dev/null || true)"
|
local brew_zlib="$(brew --prefix zlib 2>/dev/null || true)"
|
||||||
if [ -d "$brew_zlib" ]; then
|
if [ -d "$brew_zlib" ]; then
|
||||||
echo "python-build: use zlib from homebrew"
|
echo "python-build: use zlib from homebrew"
|
||||||
@@ -1541,6 +1546,7 @@ use_xcode_sdk_zlib() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_homebrew_tcltk() {
|
use_homebrew_tcltk() {
|
||||||
|
is_mac || return 1
|
||||||
# get the version from the folder that homebrew versions
|
# get the version from the folder that homebrew versions
|
||||||
local tcltk_libdir="$(brew --prefix tcl-tk 2>/dev/null || true)"
|
local tcltk_libdir="$(brew --prefix tcl-tk 2>/dev/null || true)"
|
||||||
if [ -d "$tcltk_libdir" ]; then
|
if [ -d "$tcltk_libdir" ]; then
|
||||||
@@ -1598,7 +1604,9 @@ get_tcltk_flag_from() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use_tcltk() {
|
use_tcltk() {
|
||||||
local tcltk_libdir="$(brew --prefix tcl-tk 2>/dev/null || true)"
|
if is_mac; then
|
||||||
|
local tcltk_libdir="$(brew --prefix tcl-tk 2>/dev/null || true)"
|
||||||
|
fi
|
||||||
local tcl_tk_libs="$(get_tcltk_flag_from "$PYTHON_CONFIGURE_OPTS")"
|
local tcl_tk_libs="$(get_tcltk_flag_from "$PYTHON_CONFIGURE_OPTS")"
|
||||||
|
|
||||||
# if tcltk_ops_flag is in PYTHON_CONFIGURE_OPTS, use user provided tcltk
|
# if tcltk_ops_flag is in PYTHON_CONFIGURE_OPTS, use user provided tcltk
|
||||||
@@ -2130,7 +2138,7 @@ if [[ "$CONFIGURE_OPTS $PYTHON_CONFIGURE_OPTS" == *"--enable-universalsdk"* ]];
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
package_option python configure --enable-universalsdk=/
|
package_option python configure --enable-universalsdk=/
|
||||||
if [[ "$CONFIGURE_OPTS $PYTHON_CONFIGURE_OPTS" != *"--enable-universal-archs"* ]]; then
|
if [[ "$CONFIGURE_OPTS $PYTHON_CONFIGURE_OPTS" != *"--with-universal-archs"* ]]; then
|
||||||
# in CPython's configure.ac, --with-universal-archs defaults to 'intel' which means i386 + x86_64
|
# in CPython's configure.ac, --with-universal-archs defaults to 'intel' which means i386 + x86_64
|
||||||
# since 2.7.5 and 3.3.0 -- i.e. in all non-EOL versions
|
# since 2.7.5 and 3.3.0 -- i.e. in all non-EOL versions
|
||||||
# Apple Silicon cannot build these, in it, it rather makes sense to default to Universal2 binaries
|
# Apple Silicon cannot build these, in it, it rather makes sense to default to Universal2 binaries
|
||||||
@@ -2204,6 +2212,9 @@ if [ -z "${GET_PIP_URL}" ]; then
|
|||||||
3.5 | 3.5.* )
|
3.5 | 3.5.* )
|
||||||
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.5/get-pip.py"
|
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.5/get-pip.py"
|
||||||
;;
|
;;
|
||||||
|
3.6 | 3.6.* )
|
||||||
|
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.6/get-pip.py"
|
||||||
|
;;
|
||||||
* )
|
* )
|
||||||
GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
|
GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#require_gcc
|
#require_gcc
|
||||||
prefer_openssl11
|
prefer_openssl11
|
||||||
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
install_package "openssl-1.1.1k" "https://www.openssl.org/source/openssl-1.1.1k.tar.gz#892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5" mac_openssl --if has_broken_mac_openssl
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
install_git "Python-3.10-dev" "https://github.com/python/cpython" 3.10 standard verify_py310 copy_python_gdb ensurepip
|
install_git "Python-3.10-dev" "https://github.com/python/cpython" 3.10 standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#require_gcc
|
#require_gcc
|
||||||
prefer_openssl11
|
prefer_openssl11
|
||||||
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
install_package "openssl-1.1.1k" "https://www.openssl.org/source/openssl-1.1.1k.tar.gz#892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5" mac_openssl --if has_broken_mac_openssl
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
if has_tar_xz_support; then
|
if has_tar_xz_support; then
|
||||||
install_package "Python-3.10.0" "https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tar.xz#5a99f8e7a6a11a7b98b4e75e0d1303d3832cada5534068f69c7b6222a7b1b002" standard verify_py310 copy_python_gdb ensurepip
|
install_package "Python-3.10.0" "https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tar.xz#5a99f8e7a6a11a7b98b4e75e0d1303d3832cada5534068f69c7b6222a7b1b002" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#require_gcc
|
#require_gcc
|
||||||
prefer_openssl11
|
prefer_openssl11
|
||||||
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
install_package "openssl-1.1.1k" "https://www.openssl.org/source/openssl-1.1.1k.tar.gz#892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5" mac_openssl --if has_broken_mac_openssl
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
if has_tar_xz_support; then
|
if has_tar_xz_support; then
|
||||||
install_package "Python-3.10.1" "https://www.python.org/ftp/python/3.10.1/Python-3.10.1.tar.xz#a7f1265b6e1a5de1ec5c3ec7019ab53413469934758311e9d240c46e5ae6e177" standard verify_py310 copy_python_gdb ensurepip
|
install_package "Python-3.10.1" "https://www.python.org/ftp/python/3.10.1/Python-3.10.1.tar.xz#a7f1265b6e1a5de1ec5c3ec7019ab53413469934758311e9d240c46e5ae6e177" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#require_gcc
|
#require_gcc
|
||||||
prefer_openssl11
|
prefer_openssl11
|
||||||
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
install_package "openssl-1.1.1k" "https://www.openssl.org/source/openssl-1.1.1k.tar.gz#892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5" mac_openssl --if has_broken_mac_openssl
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
if has_tar_xz_support; then
|
if has_tar_xz_support; then
|
||||||
install_package "Python-3.10.2" "https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tar.xz#17de3ac7da9f2519aa9d64378c603a73a0e9ad58dffa8812e45160c086de64c7" standard verify_py310 copy_python_gdb ensurepip
|
install_package "Python-3.10.2" "https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tar.xz#17de3ac7da9f2519aa9d64378c603a73a0e9ad58dffa8812e45160c086de64c7" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
|||||||
10
plugins/python-build/share/python-build/3.10.3
Normal file
10
plugins/python-build/share/python-build/3.10.3
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.10.3" "https://www.python.org/ftp/python/3.10.3/Python-3.10.3.tar.xz#596c72de998dc39205bc4f70ef0dbf7edec740a306d09b49a9bd0a77806730dc" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.10.3" "https://www.python.org/ftp/python/3.10.3/Python-3.10.3.tgz#5a3b029bad70ba2a019ebff08a65060a8b9b542ffc1a83c697f1449ecca9813b" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
10
plugins/python-build/share/python-build/3.10.4
Normal file
10
plugins/python-build/share/python-build/3.10.4
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.10.4" "https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz#80bf925f571da436b35210886cf79f6eb5fa5d6c571316b73568343451f77a19" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.10.4" "https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz#f3bcc65b1d5f1dc78675c746c98fcee823c038168fc629c5935b044d0911ad28" standard verify_py310 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#require_gcc
|
|
||||||
prefer_openssl11
|
|
||||||
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
|
||||||
install_package "openssl-1.1.1k" "https://www.openssl.org/source/openssl-1.1.1k.tar.gz#892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5" mac_openssl --if has_broken_mac_openssl
|
|
||||||
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
|
||||||
if has_tar_xz_support; then
|
|
||||||
install_package "Python-3.11.0a4" "https://www.python.org/ftp/python/3.11.0/Python-3.11.0a4.tar.xz#437fe7376c363dafaf34ce80f0446b41fc9a42c0e2a8c7e519d3f0a0b7cfb3ed" standard verify_py311 copy_python_gdb ensurepip
|
|
||||||
else
|
|
||||||
install_package "Python-3.11.0a4" "https://www.python.org/ftp/python/3.11.0/Python-3.11.0a4.tgz#1ae9cfbf06ac2e40c7f51e86ad9c7e821f5a33b6c1aa7473b46126e3112aa4a0" standard verify_py311 copy_python_gdb ensurepip
|
|
||||||
fi
|
|
||||||
10
plugins/python-build/share/python-build/3.11.0a7
Normal file
10
plugins/python-build/share/python-build/3.11.0a7
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.11.0a7" "https://www.python.org/ftp/python/3.11.0/Python-3.11.0a7.tar.xz#b7c56dd74c2f472d496b5a8d356bd6ad9ef9b03f26288c3237d3ff698ab03d74" standard verify_py311 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.11.0a7" "https://www.python.org/ftp/python/3.11.0/Python-3.11.0a7.tgz#6cc20b9b53a8e7a29e0fd56a0d502ff64a5677507fcf2c503decf732a31c513d" standard verify_py311 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
10
plugins/python-build/share/python-build/3.7.13
Normal file
10
plugins/python-build/share/python-build/3.7.13
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.1" "https://ftpmirror.gnu.org/readline/readline-8.1.tar.gz#f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.7.13" "https://www.python.org/ftp/python/3.7.13/Python-3.7.13.tar.xz#99f106275df8899c3e8cb9d7c01ce686c202ef275953301427194693de5bef84" standard verify_py37 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.7.13" "https://www.python.org/ftp/python/3.7.13/Python-3.7.13.tgz#e405417f50984bc5870c7e7a9f9aeb93e9d270f5ac67f667a0cd3a09439682b5" standard verify_py37 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
10
plugins/python-build/share/python-build/3.8.13
Normal file
10
plugins/python-build/share/python-build/3.8.13
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.1" "https://ftpmirror.gnu.org/readline/readline-8.1.tar.gz#f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.8.13" "https://www.python.org/ftp/python/3.8.13/Python-3.8.13.tar.xz#6f309077012040aa39fe8f0c61db8c0fa1c45136763299d375c9e5756f09cf57" standard verify_py38 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.8.13" "https://www.python.org/ftp/python/3.8.13/Python-3.8.13.tgz#903b92d76354366b1d9c4434d0c81643345cef87c1600adfa36095d7b00eede4" standard verify_py38 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
10
plugins/python-build/share/python-build/3.9.11
Normal file
10
plugins/python-build/share/python-build/3.9.11
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.1" "https://ftpmirror.gnu.org/readline/readline-8.1.tar.gz#f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.9.11" "https://www.python.org/ftp/python/3.9.11/Python-3.9.11.tar.xz#66767a35309d724f370df9e503c172b4ee444f49d62b98bc4eca725123e26c49" standard verify_py39 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.9.11" "https://www.python.org/ftp/python/3.9.11/Python-3.9.11.tgz#3442400072f582ac2f0df30895558f08883b416c8c7877ea55d40d00d8a93112" standard verify_py39 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
10
plugins/python-build/share/python-build/3.9.12
Normal file
10
plugins/python-build/share/python-build/3.9.12
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1n" "https://www.openssl.org/source/openssl-1.1.1n.tar.gz#40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.1" "https://ftpmirror.gnu.org/readline/readline-8.1.tar.gz#f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" mac_readline --if has_broken_mac_readline
|
||||||
|
if has_tar_xz_support; then
|
||||||
|
install_package "Python-3.9.12" "https://www.python.org/ftp/python/3.9.12/Python-3.9.12.tar.xz#2cd94b20670e4159c6d9ab57f91dbf255b97d8c1a1451d1c35f4ec1968adf971" standard verify_py39 copy_python_gdb ensurepip
|
||||||
|
else
|
||||||
|
install_package "Python-3.9.12" "https://www.python.org/ftp/python/3.9.12/Python-3.9.12.tgz#70e08462ebf265012bd2be88a63d2149d880c73e53f1712b7bbbe93750560ae8" standard verify_py39 copy_python_gdb ensurepip
|
||||||
|
fi
|
||||||
48
plugins/python-build/share/python-build/graalpython-22.1.0
Normal file
48
plugins/python-build/share/python-build/graalpython-22.1.0
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
# this software and associated documentation files (the "Software"), to deal in
|
||||||
|
# the Software without restriction, including without limitation the rights to
|
||||||
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
# of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
# so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
|
# copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
VERSION='22.1.0'
|
||||||
|
BUILD=''
|
||||||
|
|
||||||
|
case "$(pypy_architecture 2>/dev/null || true)" in
|
||||||
|
"linux64" )
|
||||||
|
graalpython_arch="linux"
|
||||||
|
checksum="06862993573b64bd64c802aace9135192a4ba28a15d8260c42c5de632ad616bc"
|
||||||
|
;;
|
||||||
|
"osx64" )
|
||||||
|
graalpython_arch="macos"
|
||||||
|
checksum="88b22ea4a5cb8345b680d15cc385dff7a8ab858fdf0e182c79c6c3b74755de6c"
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": No binary distribution of GraalPython is available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -n "${BUILD}" ]; then
|
||||||
|
urlprefix="https://github.com/graalvm/graalvm-ce-dev-builds/releases/download/${VERSION}-${BUILD}"
|
||||||
|
else
|
||||||
|
urlprefix="https://github.com/oracle/graalpython/releases/download/vm-${VERSION}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
install_package "graalpython-${VERSION}${BUILD}" "${urlprefix}/graalpython-${VERSION}-${graalpython_arch}-amd64.tar.gz#${checksum}" "graalpython" ensurepip
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
case "$(anaconda_architecture 2>/dev/null || true)" in
|
||||||
|
"Linux-ppc64le" )
|
||||||
|
install_script "Miniconda3-py37_4.11.0-Linux-ppc64le" "https://repo.anaconda.com/miniconda/Miniconda3-py37_4.11.0-Linux-ppc64le.sh#cf7cbccc16bf82365bbf0129f646ff45" "miniconda" verify_py37
|
||||||
|
;;
|
||||||
|
"Linux-x86_64" )
|
||||||
|
install_script "Miniconda3-py37_4.11.0-Linux-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py37_4.11.0-Linux-x86_64.sh#7675bd23411179956bcc4692f16ef27d" "miniconda" verify_py37
|
||||||
|
;;
|
||||||
|
"MacOSX-x86_64" )
|
||||||
|
install_script "Miniconda3-py37_4.11.0-MacOSX-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py37_4.11.0-MacOSX-x86_64.sh#0dde31d693fbcb4feb1eb4292cba4371" "miniconda" verify_py37
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of Miniconda is not available for $(anaconda_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
case "$(anaconda_architecture 2>/dev/null || true)" in
|
||||||
|
"Linux-ppc64le" )
|
||||||
|
install_script "Miniconda3-py38_4.11.0-Linux-ppc64le" "https://repo.anaconda.com/miniconda/Miniconda3-py38_4.11.0-Linux-ppc64le.sh#adec9893a69557f1eaadce56f24f6614" "miniconda" verify_py38
|
||||||
|
;;
|
||||||
|
"Linux-x86_64" )
|
||||||
|
install_script "Miniconda3-py38_4.11.0-Linux-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py38_4.11.0-Linux-x86_64.sh#252d3b0c863333639f99fbc465ee1d61" "miniconda" verify_py38
|
||||||
|
;;
|
||||||
|
"MacOSX-x86_64" )
|
||||||
|
install_script "Miniconda3-py38_4.11.0-MacOSX-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py38_4.11.0-MacOSX-x86_64.sh#e0ab9762f3d20d23bbff4b804a03cb08" "miniconda" verify_py38
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of Miniconda is not available for $(anaconda_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
case "$(anaconda_architecture 2>/dev/null || true)" in
|
||||||
|
"Linux-ppc64le" )
|
||||||
|
install_script "Miniconda3-py39_4.11.0-Linux-ppc64le" "https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-Linux-ppc64le.sh#305e55110a3ad9384230e5fe396ccd89" "miniconda" verify_py39
|
||||||
|
;;
|
||||||
|
"Linux-x86_64" )
|
||||||
|
install_script "Miniconda3-py39_4.11.0-Linux-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-Linux-x86_64.sh#4e2f31e0b2598634c80daa12e4981647" "miniconda" verify_py39
|
||||||
|
;;
|
||||||
|
"MacOSX-x86_64" )
|
||||||
|
install_script "Miniconda3-py39_4.11.0-MacOSX-x86_64" "https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-MacOSX-x86_64.sh#d1303e5c7510b2ef444b9ba474551733" "miniconda" verify_py39
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of Miniconda is not available for $(anaconda_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
6
plugins/python-build/share/python-build/nogil-3.9.10
Normal file
6
plugins/python-build/share/python-build/nogil-3.9.10
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#require_gcc
|
||||||
|
prefer_openssl11
|
||||||
|
export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
|
||||||
|
install_package "openssl-1.1.1l" "https://www.openssl.org/source/openssl-1.1.1l.tar.gz#0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "readline-8.1" "https://ftpmirror.gnu.org/readline/readline-8.1.tar.gz#f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02" mac_readline --if has_broken_mac_readline
|
||||||
|
install_package "nogil-3.9.10" "https://github.com/colesbury/nogil/archive/refs/tags/v3.9.10-nogil.tar.gz#5058c0ec07f0444673b86977c18e786183ca35617d9e6ada2329f7a87a4a0993" standard verify_py39 copy_python_gdb ensurepip
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From c8ee4dc57dd995e96ef9af0a04957b61ae1a7ac9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index cc37185068..f238470c17 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5226,9 +5226,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5387,6 +5384,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 3e6c07c279..dd68777b6a 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -717,9 +717,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -875,6 +872,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.29.2.windows.2
|
||||||
|
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
From d9782f66445c9fa5d835ad29c23b22be85cde354 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ronald Oussoren <ronaldoussoren@mac.com>
|
||||||
|
Date: Sat, 14 Nov 2020 16:07:47 +0100
|
||||||
|
Subject: [PATCH] bpo-42351: Avoid error when opening header with non-UTF8
|
||||||
|
encoding (GH-23279)
|
||||||
|
|
||||||
|
grep_headers_for() would error out when a header contained
|
||||||
|
text that cannot be interpreted as UTF-8.
|
||||||
|
|
||||||
|
cherry-picked from 7a27c7ed4b by Pedro Fonini <fonini@ip.tv>
|
||||||
|
---
|
||||||
|
setup.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index 4aaa51e0d4..3556bbe041 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -184,7 +184,7 @@ def is_macosx_sdk_path(path):
|
||||||
|
|
||||||
|
def grep_headers_for(function, headers):
|
||||||
|
for header in headers:
|
||||||
|
- with open(header, 'r') as f:
|
||||||
|
+ with open(header, 'r', errors='surrogateescape') as f:
|
||||||
|
if function in f.read():
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
--
|
||||||
|
2.34.1
|
||||||
|
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
From 655f26bb742d6bd32c388e9fea14b64eb25fd4de Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ned Deily <nad@python.org>
|
||||||
|
Date: Tue, 15 Mar 2022 03:18:39 -0400
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent internal configure error when running
|
||||||
|
configure with recent versions of clang. (GH-28845) (GH-31890)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
The Apple Clang included with Xcode 13.3 now supports --print-multiarch
|
||||||
|
causing configure to fail without this change.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
(cherry picked from commit 9c4766772cda67648184f8ddba546a5fc0167f91)
|
||||||
|
|
||||||
|
Co-authored-by: David Bohman <debohman@gmail.com>
|
||||||
|
(cherry picked from commit 720bb456dc711b0776bae837d1f9a0b10c28ddf2)
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..13c93d1b8a
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index fb0a499145..67e6e69b5f 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5203,9 +5203,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5334,6 +5331,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index d86dad9a7c..468ad6070f 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -747,9 +747,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -875,6 +872,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.32.0 (Apple Git-132)
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 35ddc7ad61b20a18496ba9410aa31b405e23fe78 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 829dd69bb8..455481bc50 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5183,9 +5183,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5342,6 +5339,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index f1cc8e9bcb..1afcba3307 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -724,9 +724,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -880,6 +877,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.29.2.windows.2
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 0c2fd7c1de5121ea636134f131cf7ebada023acf Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 829dd69bb8..455481bc50 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5183,9 +5183,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5342,6 +5339,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index f1cc8e9bcb..1afcba3307 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -724,9 +724,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -880,6 +877,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.29.2.windows.2
|
||||||
|
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
From 245427d207ee88a4ba26a66c3de350bcbcc036f2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ronald Oussoren <ronaldoussoren@mac.com>
|
||||||
|
Date: Sat, 14 Nov 2020 16:07:47 +0100
|
||||||
|
Subject: [PATCH] bpo-42351: Avoid error when opening header with non-UTF8
|
||||||
|
encoding (GH-23279)
|
||||||
|
|
||||||
|
grep_headers_for() would error out when a header contained
|
||||||
|
text that cannot be interpreted as UTF-8.
|
||||||
|
|
||||||
|
cherry-picked from 7a27c7ed4b by Pedro Fonini <fonini@ip.tv>
|
||||||
|
---
|
||||||
|
setup.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index f211989aac..467362813d 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -159,7 +159,7 @@ def is_macosx_sdk_path(path):
|
||||||
|
|
||||||
|
def grep_headers_for(function, headers):
|
||||||
|
for header in headers:
|
||||||
|
- with open(header, 'r') as f:
|
||||||
|
+ with open(header, 'r', errors='surrogateescape') as f:
|
||||||
|
if function in f.read():
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
--
|
||||||
|
2.34.1
|
||||||
|
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
From 720bb456dc711b0776bae837d1f9a0b10c28ddf2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ned Deily <nad@python.org>
|
||||||
|
Date: Tue, 15 Mar 2022 03:18:39 -0400
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent internal configure error when running
|
||||||
|
configure with recent versions of clang. (GH-28845) (GH-31890)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
The Apple Clang included with Xcode 13.3 now supports --print-multiarch
|
||||||
|
causing configure to fail without this change.
|
||||||
|
---
|
||||||
|
configure | 8 +++++---
|
||||||
|
1 file changed, 5 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git configure configure
|
||||||
|
index 829dd69bb8..455481bc50 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5183,9 +5183,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5342,6 +5339,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
@@ -0,0 +1,310 @@
|
|||||||
|
From: Christian Hammond <christian@beanbaginc.com>
|
||||||
|
Date: Wed, 15 Dec 2021 23:12:36 -0800
|
||||||
|
Subject: Port ctypes and system libffi patches for arm64/macOS 10.15+ to Python 3.7.12
|
||||||
|
|
||||||
|
This ports the following ctypes and libffi pyenv patches for Python
|
||||||
|
2.7.18 to Python 3.7.12:
|
||||||
|
|
||||||
|
* `0004-Use-system-libffi-for-Mac-OS-10.15-and-up.patch`
|
||||||
|
* `0005-ctypes-use-the-correct-ABI-for-variadic-functions.patch`
|
||||||
|
* `0006-ctypes-probe-libffi-for-ffi_closure_alloc-and-ffi_pr.patch`
|
||||||
|
|
||||||
|
These patches enable use of system libffi (fixing a broken `ctypes`
|
||||||
|
module on arm64 targets) and enable calling variadic functions on arm64.
|
||||||
|
They've been combined from patches port from Homebrew to pyenv by Takumi
|
||||||
|
Sueda, updated to work on the Python 3.7.12 codebase.
|
||||||
|
|
||||||
|
The Homebrew patches are themselves backports of changes in Python 3.9
|
||||||
|
and 3.10. That patch can be found at:
|
||||||
|
|
||||||
|
https://github.com/Homebrew/formula-patches/blob/master/python/3.8.7.patch
|
||||||
|
|
||||||
|
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
|
||||||
|
index 715d595b24..7743144978 100644
|
||||||
|
--- a/Doc/library/ctypes.rst
|
||||||
|
+++ b/Doc/library/ctypes.rst
|
||||||
|
@@ -1551,6 +1551,13 @@ They are instances of a private class:
|
||||||
|
value usable as argument (integer, string, ctypes instance). This allows
|
||||||
|
defining adapters that can adapt custom objects as function parameters.
|
||||||
|
|
||||||
|
+ .. attribute:: variadic
|
||||||
|
+
|
||||||
|
+ Assign a boolean to specify that the function takes a variable number of
|
||||||
|
+ arguments. This does not matter on most platforms, but for Apple arm64
|
||||||
|
+ platforms variadic functions have a different calling convention than
|
||||||
|
+ normal functions.
|
||||||
|
+
|
||||||
|
.. attribute:: errcheck
|
||||||
|
|
||||||
|
Assign a Python function or another callable to this attribute. The
|
||||||
|
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
|
||||||
|
index 4ebd82d3e0..7b73c190b6 100644
|
||||||
|
--- a/Lib/test/test_unicode.py
|
||||||
|
+++ b/Lib/test/test_unicode.py
|
||||||
|
@@ -2458,11 +2458,14 @@ class CAPITest(unittest.TestCase):
|
||||||
|
def test_from_format(self):
|
||||||
|
support.import_module('ctypes')
|
||||||
|
from ctypes import (
|
||||||
|
+ c_char_p,
|
||||||
|
pythonapi, py_object, sizeof,
|
||||||
|
c_int, c_long, c_longlong, c_ssize_t,
|
||||||
|
c_uint, c_ulong, c_ulonglong, c_size_t, c_void_p)
|
||||||
|
name = "PyUnicode_FromFormat"
|
||||||
|
_PyUnicode_FromFormat = getattr(pythonapi, name)
|
||||||
|
+ _PyUnicode_FromFormat.argtypes = (c_char_p,)
|
||||||
|
+ _PyUnicode_FromFormat.variadic = True
|
||||||
|
_PyUnicode_FromFormat.restype = py_object
|
||||||
|
|
||||||
|
def PyUnicode_FromFormat(format, *args):
|
||||||
|
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
|
||||||
|
index dd0c61fd8a..79137e1dc7 100644
|
||||||
|
--- a/Modules/_ctypes/_ctypes.c
|
||||||
|
+++ b/Modules/_ctypes/_ctypes.c
|
||||||
|
@@ -3174,6 +3174,34 @@ PyCFuncPtr_get_restype(PyCFuncPtrObject *self, void *Py_UNUSED(ignored))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+static int
|
||||||
|
+PyCFuncPtr_set_variadic(PyCFuncPtrObject *self, PyObject *ob)
|
||||||
|
+{
|
||||||
|
+ StgDictObject *dict = PyObject_stgdict((PyObject *)self);
|
||||||
|
+ assert(dict);
|
||||||
|
+ int r = PyObject_IsTrue(ob);
|
||||||
|
+ if (r == 1) {
|
||||||
|
+ dict->flags |= FUNCFLAG_VARIADIC;
|
||||||
|
+ return 0;
|
||||||
|
+ } else if (r == 0) {
|
||||||
|
+ dict->flags &= ~FUNCFLAG_VARIADIC;
|
||||||
|
+ return 0;
|
||||||
|
+ } else {
|
||||||
|
+ return -1;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static PyObject *
|
||||||
|
+PyCFuncPtr_get_variadic(PyCFuncPtrObject *self)
|
||||||
|
+{
|
||||||
|
+ StgDictObject *dict = PyObject_stgdict((PyObject *)self);
|
||||||
|
+ assert(dict); /* Cannot be NULL for PyCFuncPtrObject instances */
|
||||||
|
+ if (dict->flags & FUNCFLAG_VARIADIC)
|
||||||
|
+ Py_RETURN_TRUE;
|
||||||
|
+ else
|
||||||
|
+ Py_RETURN_FALSE;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
static int
|
||||||
|
PyCFuncPtr_set_argtypes(PyCFuncPtrObject *self, PyObject *ob, void *Py_UNUSED(ignored))
|
||||||
|
{
|
||||||
|
@@ -3219,6 +3247,8 @@ static PyGetSetDef PyCFuncPtr_getsets[] = {
|
||||||
|
{ "argtypes", (getter)PyCFuncPtr_get_argtypes,
|
||||||
|
(setter)PyCFuncPtr_set_argtypes,
|
||||||
|
"specify the argument types", NULL },
|
||||||
|
+ { "variadic", (getter)PyCFuncPtr_get_variadic, (setter)PyCFuncPtr_set_variadic,
|
||||||
|
+ "specify if function takes variable number of arguments", NULL },
|
||||||
|
{ NULL, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
@@ -5632,6 +5662,7 @@ PyInit__ctypes(void)
|
||||||
|
PyModule_AddObject(m, "FUNCFLAG_USE_ERRNO", PyLong_FromLong(FUNCFLAG_USE_ERRNO));
|
||||||
|
PyModule_AddObject(m, "FUNCFLAG_USE_LASTERROR", PyLong_FromLong(FUNCFLAG_USE_LASTERROR));
|
||||||
|
PyModule_AddObject(m, "FUNCFLAG_PYTHONAPI", PyLong_FromLong(FUNCFLAG_PYTHONAPI));
|
||||||
|
+ PyModule_AddObject(m, "FUNCFLAG_VARIADIC", PyLong_FromLong(FUNCFLAG_VARIADIC));
|
||||||
|
PyModule_AddStringConstant(m, "__version__", "1.1.0");
|
||||||
|
|
||||||
|
PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
|
||||||
|
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
|
||||||
|
index 9cbf9801ad..e7fe11176b 100644
|
||||||
|
--- a/Modules/_ctypes/callproc.c
|
||||||
|
+++ b/Modules/_ctypes/callproc.c
|
||||||
|
@@ -754,7 +756,8 @@ static int _call_function_pointer(int flags,
|
||||||
|
ffi_type **atypes,
|
||||||
|
ffi_type *restype,
|
||||||
|
void *resmem,
|
||||||
|
- int argcount)
|
||||||
|
+ int argcount,
|
||||||
|
+ int argtypecount)
|
||||||
|
{
|
||||||
|
PyThreadState *_save = NULL; /* For Py_BLOCK_THREADS and Py_UNBLOCK_THREADS */
|
||||||
|
PyObject *error_object = NULL;
|
||||||
|
@@ -780,15 +783,39 @@ static int _call_function_pointer(int flags,
|
||||||
|
if ((flags & FUNCFLAG_CDECL) == 0)
|
||||||
|
cc = FFI_STDCALL;
|
||||||
|
#endif
|
||||||
|
- if (FFI_OK != ffi_prep_cif(&cif,
|
||||||
|
- cc,
|
||||||
|
- argcount,
|
||||||
|
- restype,
|
||||||
|
- atypes)) {
|
||||||
|
- PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
- "ffi_prep_cif failed");
|
||||||
|
- return -1;
|
||||||
|
+
|
||||||
|
+#if HAVE_FFI_PREP_CIF_VAR
|
||||||
|
+ /* Everyone SHOULD set f.variadic=True on variadic function pointers, but
|
||||||
|
+ * lots of existing code will not. If there's at least one arg and more
|
||||||
|
+ * args are passed than are defined in the prototype, then it must be a
|
||||||
|
+ * variadic function. */
|
||||||
|
+ if ((flags & FUNCFLAG_VARIADIC) ||
|
||||||
|
+ (argtypecount != 0 && argcount > argtypecount))
|
||||||
|
+ {
|
||||||
|
+ if (FFI_OK != ffi_prep_cif_var(&cif,
|
||||||
|
+ cc,
|
||||||
|
+ argtypecount,
|
||||||
|
+ argcount,
|
||||||
|
+ restype,
|
||||||
|
+ atypes)) {
|
||||||
|
+ PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
+ "ffi_prep_cif_var failed");
|
||||||
|
+ return -1;
|
||||||
|
+ }
|
||||||
|
+ } else {
|
||||||
|
+#endif
|
||||||
|
+ if (FFI_OK != ffi_prep_cif(&cif,
|
||||||
|
+ cc,
|
||||||
|
+ argcount,
|
||||||
|
+ restype,
|
||||||
|
+ atypes)) {
|
||||||
|
+ PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
+ "ffi_prep_cif failed");
|
||||||
|
+ return -1;
|
||||||
|
+ }
|
||||||
|
+#if HAVE_FFI_PREP_CIF_VAR
|
||||||
|
}
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
if (flags & (FUNCFLAG_USE_ERRNO | FUNCFLAG_USE_LASTERROR)) {
|
||||||
|
error_object = _ctypes_get_errobj(&space);
|
||||||
|
@@ -1187,9 +1214,8 @@ PyObject *_ctypes_callproc(PPROC pProc,
|
||||||
|
|
||||||
|
if (-1 == _call_function_pointer(flags, pProc, avalues, atypes,
|
||||||
|
rtype, resbuf,
|
||||||
|
- Py_SAFE_DOWNCAST(argcount,
|
||||||
|
- Py_ssize_t,
|
||||||
|
- int)))
|
||||||
|
+ Py_SAFE_DOWNCAST(argcount, Py_ssize_t, int),
|
||||||
|
+ Py_SAFE_DOWNCAST(argtype_count, Py_ssize_t, int)))
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
#ifdef WORDS_BIGENDIAN
|
||||||
|
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h
|
||||||
|
index e58f85233c..e45975f6ad 100644
|
||||||
|
--- a/Modules/_ctypes/ctypes.h
|
||||||
|
+++ b/Modules/_ctypes/ctypes.h
|
||||||
|
@@ -285,6 +285,7 @@ PyObject *_ctypes_callproc(PPROC pProc,
|
||||||
|
#define FUNCFLAG_PYTHONAPI 0x4
|
||||||
|
#define FUNCFLAG_USE_ERRNO 0x8
|
||||||
|
#define FUNCFLAG_USE_LASTERROR 0x10
|
||||||
|
+#define FUNCFLAG_VARIADIC 0x20
|
||||||
|
|
||||||
|
#define TYPEFLAG_ISPOINTER 0x100
|
||||||
|
#define TYPEFLAG_HASPOINTER 0x200
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index bf90600eaa..48ff120e9a 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -142,6 +142,13 @@ def macosx_sdk_root():
|
||||||
|
|
||||||
|
return MACOS_SDK_ROOT
|
||||||
|
|
||||||
|
+def is_macosx_at_least(vers):
|
||||||
|
+ if host_platform == 'darwin':
|
||||||
|
+ dep_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET')
|
||||||
|
+ if dep_target:
|
||||||
|
+ return tuple(map(int, str(dep_target).split('.'))) >= vers
|
||||||
|
+ return False
|
||||||
|
+
|
||||||
|
def is_macosx_sdk_path(path):
|
||||||
|
"""
|
||||||
|
Returns True if 'path' can be located in an OSX SDK
|
||||||
|
@@ -150,6 +157,13 @@ def is_macosx_sdk_path(path):
|
||||||
|
or path.startswith('/System/')
|
||||||
|
or path.startswith('/Library/') )
|
||||||
|
|
||||||
|
+def grep_headers_for(function, headers):
|
||||||
|
+ for header in headers:
|
||||||
|
+ with open(header, 'r') as f:
|
||||||
|
+ if function in f.read():
|
||||||
|
+ return True
|
||||||
|
+ return False
|
||||||
|
+
|
||||||
|
def find_file(filename, std_dirs, paths):
|
||||||
|
"""Searches for the directory where a given file is located,
|
||||||
|
and returns a possibly-empty list of additional directories, or None
|
||||||
|
@@ -1972,7 +1986,11 @@ class PyBuildExt(build_ext):
|
||||||
|
return True
|
||||||
|
|
||||||
|
def detect_ctypes(self, inc_dirs, lib_dirs):
|
||||||
|
- self.use_system_libffi = False
|
||||||
|
+ if not sysconfig.get_config_var("LIBFFI_INCLUDEDIR") and is_macosx_at_least((10,15)):
|
||||||
|
+ self.use_system_libffi = True
|
||||||
|
+ else:
|
||||||
|
+ self.use_system_libffi = '--with-system-ffi' in sysconfig.get_config_var("CONFIG_ARGS")
|
||||||
|
+
|
||||||
|
include_dirs = []
|
||||||
|
extra_compile_args = []
|
||||||
|
extra_link_args = []
|
||||||
|
@@ -2018,30 +2036,47 @@ class PyBuildExt(build_ext):
|
||||||
|
libraries=['m'])
|
||||||
|
self.extensions.extend([ext, ext_test])
|
||||||
|
|
||||||
|
+ ffi_inc = sysconfig.get_config_var("LIBFFI_INCLUDEDIR")
|
||||||
|
+ ffi_lib = None
|
||||||
|
+
|
||||||
|
if host_platform == 'darwin':
|
||||||
|
- if '--with-system-ffi' not in sysconfig.get_config_var("CONFIG_ARGS"):
|
||||||
|
+ if not self.use_system_libffi:
|
||||||
|
return
|
||||||
|
- # OS X 10.5 comes with libffi.dylib; the include files are
|
||||||
|
- # in /usr/include/ffi
|
||||||
|
- inc_dirs.append('/usr/include/ffi')
|
||||||
|
-
|
||||||
|
- ffi_inc = [sysconfig.get_config_var("LIBFFI_INCLUDEDIR")]
|
||||||
|
- if not ffi_inc or ffi_inc[0] == '':
|
||||||
|
- ffi_inc = find_file('ffi.h', [], inc_dirs)
|
||||||
|
- if ffi_inc is not None:
|
||||||
|
- ffi_h = ffi_inc[0] + '/ffi.h'
|
||||||
|
+ ffi_in_sdk = os.path.join(macosx_sdk_root(), "usr/include/ffi")
|
||||||
|
+ if os.path.exists(ffi_in_sdk):
|
||||||
|
+ ffi_inc = ffi_in_sdk
|
||||||
|
+ ffi_lib = 'ffi'
|
||||||
|
+ else:
|
||||||
|
+ # OS X 10.5 comes with libffi.dylib; the include files are
|
||||||
|
+ # in /usr/include/ffi
|
||||||
|
+ inc_dirs.append('/usr/include/ffi')
|
||||||
|
+
|
||||||
|
+ if not ffi_inc:
|
||||||
|
+ found = find_file('ffi.h', [], inc_dirs)
|
||||||
|
+ if found:
|
||||||
|
+ ffi_inc = found[0]
|
||||||
|
+ if ffi_inc:
|
||||||
|
+ ffi_h = ffi_inc + '/ffi.h'
|
||||||
|
if not os.path.exists(ffi_h):
|
||||||
|
ffi_inc = None
|
||||||
|
print('Header file {} does not exist'.format(ffi_h))
|
||||||
|
- ffi_lib = None
|
||||||
|
- if ffi_inc is not None:
|
||||||
|
- for lib_name in ('ffi', 'ffi_pic'):
|
||||||
|
+
|
||||||
|
+ if ffi_lib is None and ffi_inc:
|
||||||
|
+ for lib_name in ('ffi_convenience', 'ffi_pic', 'ffi'):
|
||||||
|
if (self.compiler.find_library_file(lib_dirs, lib_name)):
|
||||||
|
ffi_lib = lib_name
|
||||||
|
break
|
||||||
|
|
||||||
|
if ffi_inc and ffi_lib:
|
||||||
|
- ext.include_dirs.extend(ffi_inc)
|
||||||
|
+ ffi_headers = glob(os.path.join(ffi_inc, '*.h'))
|
||||||
|
+ if grep_headers_for('ffi_closure_alloc', ffi_headers):
|
||||||
|
+ try:
|
||||||
|
+ sources.remove('_ctypes/malloc_closure.c')
|
||||||
|
+ except ValueError:
|
||||||
|
+ pass
|
||||||
|
+ if grep_headers_for('ffi_prep_cif_var', ffi_headers):
|
||||||
|
+ ext.extra_compile_args.append("-DHAVE_FFI_PREP_CIF_VAR=1")
|
||||||
|
+ ext.include_dirs.append(ffi_inc)
|
||||||
|
ext.libraries.append(ffi_lib)
|
||||||
|
self.use_system_libffi = True
|
||||||
|
|
||||||
|
--
|
||||||
|
2.30.1 (Apple Git-130)
|
||||||
|
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
From 604d95e235d86465b8c17f02095edcaf18464d4c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Lawrence D'Anna <64555057+lawrence-danna-apple@users.noreply.github.com>
|
||||||
|
Date: Tue, 30 Jun 2020 02:15:46 -0700
|
||||||
|
Subject: [PATCH] bpo-41100: fix _decimal for arm64 Mac OS (GH-21228)
|
||||||
|
|
||||||
|
Patch by Lawrence Danna.
|
||||||
|
---
|
||||||
|
.../Core and Builtins/2020-06-30-04-44-29.bpo-41100.PJwA6F.rst | 1 +
|
||||||
|
Modules/_decimal/libmpdec/mpdecimal.h | 3 +++
|
||||||
|
2 files changed, 4 insertions(+)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-06-30-04-44-29.bpo-41100.PJwA6F.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-30-04-44-29.bpo-41100.PJwA6F.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-30-04-44-29.bpo-41100.PJwA6F.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..d6176d69f0
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-30-04-44-29.bpo-41100.PJwA6F.rst
|
||||||
|
@@ -0,0 +1 @@
|
||||||
|
+add arm64 to the allowable Mac OS arches in mpdecimal.h
|
||||||
|
\ No newline at end of file
|
||||||
|
diff --git a/Modules/_decimal/libmpdec/mpdecimal.h b/Modules/_decimal/libmpdec/mpdecimal.h
|
||||||
|
index 108b76efa8..35ce429f60 100644
|
||||||
|
--- a/Modules/_decimal/libmpdec/mpdecimal.h
|
||||||
|
+++ b/Modules/_decimal/libmpdec/mpdecimal.h
|
||||||
|
@@ -135,6 +135,9 @@ const char *mpd_version(void);
|
||||||
|
#elif defined(__x86_64__)
|
||||||
|
#define CONFIG_64
|
||||||
|
#define ASM
|
||||||
|
+ #elif defined(__arm64__)
|
||||||
|
+ #define CONFIG_64
|
||||||
|
+ #define ANSI
|
||||||
|
#else
|
||||||
|
#error "unknown architecture for universal build."
|
||||||
|
#endif
|
||||||
|
--
|
||||||
|
2.30.1 (Apple Git-130)
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
From 245427d207ee88a4ba26a66c3de350bcbcc036f2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ronald Oussoren <ronaldoussoren@mac.com>
|
||||||
|
Date: Sat, 14 Nov 2020 16:07:47 +0100
|
||||||
|
Subject: [PATCH] bpo-42351: Avoid error when opening header with non-UTF8
|
||||||
|
encoding (GH-23279)
|
||||||
|
|
||||||
|
grep_headers_for() would error out when a header contained
|
||||||
|
text that cannot be interpreted as UTF-8.
|
||||||
|
|
||||||
|
cherry-picked from 7a27c7ed4b by Pedro Fonini <fonini@ip.tv>
|
||||||
|
---
|
||||||
|
setup.py | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
index f211989aac..467362813d 100644
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -159,7 +159,7 @@ def is_macosx_sdk_path(path):
|
||||||
|
|
||||||
|
def grep_headers_for(function, headers):
|
||||||
|
for header in headers:
|
||||||
|
- with open(header, 'r') as f:
|
||||||
|
+ with open(header, 'r', errors='surrogateescape') as f:
|
||||||
|
if function in f.read():
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
--
|
||||||
|
2.34.1
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 5b79a7da20953f107657dea5192ed77cc8554ff0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index c807c98e56..51a7d60f54 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5183,9 +5183,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5342,6 +5339,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 805c0bba08..ede2197cb3 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -724,9 +724,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -880,6 +877,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.29.2.windows.2
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 1d6f94126d0af2370ba0e4c7d8befc1c7ecf35d8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 829dd69bb8..455481bc50 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5183,9 +5183,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5342,6 +5339,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index f1cc8e9bcb..1afcba3307 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -724,9 +724,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -880,6 +877,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.29.2.windows.2
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 8ced1a904558ff9499673083cf13abf03a76b7d0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 936f3d4596..c091865aff 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5160,9 +5160,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5321,6 +5318,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index e02cc2c656..de83332dd3 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -719,9 +719,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -877,6 +874,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 7f35b41fa1e13fb9915fd476eaec2b15e2082c4f Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 936f3d4596..c091865aff 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5160,9 +5160,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5321,6 +5318,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index e02cc2c656..de83332dd3 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -719,9 +719,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -877,6 +874,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From c4379ecd43dab0d2c836787d82bce4f20eed892b Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 936f3d4596..c091865aff 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5160,9 +5160,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5321,6 +5318,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index e02cc2c656..de83332dd3 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -719,9 +719,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -877,6 +874,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 3af555f75a53a82fa074572b24cb6516d3db0645 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 96dcd0dcd5..1fb735bf8b 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5167,9 +5167,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5328,6 +5325,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 18a044629a..6d841d928d 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -706,9 +706,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -864,6 +861,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 988821dfd8b087368dfee462d73f518ca4cfbfe0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 96dcd0dcd5..1fb735bf8b 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5167,9 +5167,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5328,6 +5325,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 18a044629a..6d841d928d 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -706,9 +706,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -864,6 +861,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 7ec2de6bb20a934424df28c6566e6fc3a5eab6d4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 96dcd0dcd5..1fb735bf8b 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5167,9 +5167,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5328,6 +5325,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 18a044629a..6d841d928d 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -706,9 +706,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -864,6 +861,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 97f07c98cac3d095c5c3f5816e4c7b3fe7b9c251 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index c164d68c4e..dcc0795296 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5167,9 +5167,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5328,6 +5325,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index fc082a3cd2..5c9bee2850 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -706,9 +706,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -864,6 +861,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From cb51d8b90c5668e77b9ed8ded562eeaabf518f5c Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index c164d68c4e..dcc0795296 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5167,9 +5167,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5328,6 +5325,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index fc082a3cd2..5c9bee2850 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -706,9 +706,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -864,6 +861,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 9d066808637164f1386ece0d3b26b8e4262c4dfd Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index c737256c15..97a371c6da 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5155,9 +5155,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5316,6 +5313,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 040ddfc791..0969bb5b0c 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -713,9 +713,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -871,6 +868,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From b8f6adaf38973076542c54e5d9a4fd7c6665c8f2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 9e6fd46583..80c3a6589a 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5193,9 +5193,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5354,6 +5351,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index d60f05251a..110318545d 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -718,9 +718,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -876,6 +873,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 8ada29fb655f9803bab4777308c77db8c1f74735 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 2d379feb4b..e36d8d523d 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5193,9 +5193,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5354,6 +5351,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index c968d149c2..a16e475bc2 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -718,9 +718,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -876,6 +873,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 9e317124ae4d1f133c18485e83b952360741519d Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 1252335472..0da9fa285e 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5193,9 +5193,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5354,6 +5351,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 972287a9c4..76252ad36c 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -718,9 +718,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -876,6 +873,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From d93aaf050384705ac744a4e6cbbab1408e770c0a Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index c7a7291fea..708c9215e4 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5193,9 +5193,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5354,6 +5351,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 45e0af4493..559a40eda9 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -725,9 +725,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -883,6 +880,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 16a65fb399eb8d1a5cfecd597e579a4402b2e4c8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 8dcdbf1989..ac03aff210 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5196,9 +5196,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5357,6 +5354,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index b1e4c6ce19..94102dd324 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -727,9 +727,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -885,6 +882,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 9b7f2f9ce024d2cceb90f9a9d939b37090c525e2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index ffa61c1dc5..18597d4de8 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5196,9 +5196,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5357,6 +5354,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 8fe5fa5742..577ce9040f 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -727,9 +727,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -885,6 +882,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
From 785de1ab8b4ab8b89d0e62ffd7521b5b2636923a Mon Sep 17 00:00:00 2001
|
||||||
|
From: David Bohman <debohman@gmail.com>
|
||||||
|
Date: Tue, 12 Oct 2021 17:10:26 -0700
|
||||||
|
Subject: [PATCH] bpo-45405: Prevent ``internal configure error`` when running
|
||||||
|
``configure`` with recent versions of non-Apple clang. (#28845)
|
||||||
|
|
||||||
|
Change the configure logic to function properly on macOS when the compiler
|
||||||
|
outputs a platform triplet for option --print-multiarch.
|
||||||
|
|
||||||
|
Co-authored-by: Ned Deily <nad@python.org>
|
||||||
|
---
|
||||||
|
.../next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst | 2 ++
|
||||||
|
configure | 8 +++++---
|
||||||
|
configure.ac | 8 +++++---
|
||||||
|
3 files changed, 12 insertions(+), 6 deletions(-)
|
||||||
|
create mode 100644 Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
|
||||||
|
diff --git a/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000..a2dc5bcc32
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst
|
||||||
|
@@ -0,0 +1,2 @@
|
||||||
|
+Prevent ``internal configure error`` when running ``configure``
|
||||||
|
+with recent versions of non-Apple clang. Patch by David Bohman.
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index ffa61c1dc5..18597d4de8 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -5196,9 +5196,6 @@ $as_echo "$as_me:
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5
|
||||||
|
$as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; }
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
@@ -5357,6 +5354,11 @@ $as_echo "none" >&6; }
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
as_fn_error $? "internal configure error for the platform triplet, please file a bug report" "$LINENO" 5
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 8fe5fa5742..577ce9040f 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -727,9 +727,6 @@ then
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
-MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
-AC_SUBST(MULTIARCH)
|
||||||
|
-
|
||||||
|
AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
|
||||||
|
cat >> conftest.c <<EOF
|
||||||
|
#undef bfin
|
||||||
|
@@ -885,6 +882,11 @@ else
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest.out
|
||||||
|
|
||||||
|
+if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||||
|
+ MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
+fi
|
||||||
|
+AC_SUBST(MULTIARCH)
|
||||||
|
+
|
||||||
|
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||||
|
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||||
|
AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
||||||
81
plugins/python-build/share/python-build/pypy2.7-7.3.8
Normal file
81
plugins/python-build/share/python-build/pypy2.7-7.3.8
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='2.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=ca1f8d3146c83002ee97615906b0930e821297dcce3063b5b28933a0690ef298
|
||||||
|
linux32_hash=7c84f173bbcd73d0eb10909259d11b5cc253d4c6ea4492e6da8f2532df9b3da5
|
||||||
|
linux64_hash=1f2e84fb539ffce233c34769d2f11647955f894be091e85419e05f48011e8940
|
||||||
|
osx64_hash=e5c1ff39ad9916ea23e3deb8012fe42367b6b19284cf13b1a1ea2b2f53a43add
|
||||||
|
s390x_hash=b4ae4e708ba84602d976ad6ae391ef2eef4b1896d831b8f2b2ec69927dd92014
|
||||||
|
win64_hash=806a29a6c5550b1e669d8870683d3379138d3d43eb1e07bdf26d65a0691265f2
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy2.7-7.3.8-src
Normal file
14
plugins/python-build/share/python-build/pypy2.7-7.3.8-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='2.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=0cdad270c62d3ccc53cc87eeb069a6dc46acaf95521b584624bcd6697d94fa1c
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy2.7-7.3.9
Normal file
81
plugins/python-build/share/python-build/pypy2.7-7.3.9
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='2.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=aff4e4dbab53448f662cd01acb2251571d60f836d2f48382a7d8da54ca5b3442
|
||||||
|
linux32_hash=bbf4e7343d43c8217099a9bffeed6a1781f4b5a3e186ed1a0befca65e647aeb9
|
||||||
|
linux64_hash=172a928b0096a7e00b7d58f523f57300c35c3de7f822491e2a7bc845375c23f8
|
||||||
|
osx64_hash=77314f5a6b2cc35d24e6f952bef89f5da612b90e4127a8034aed708d9ae483c4
|
||||||
|
s390x_hash=62481dd3c6472393ca05eb3a0880c96e4f5921747157607dbaa772a7369cab77
|
||||||
|
win64_hash=ca7b0f4c576995b388cfb4c796e3f6f20b037e5314571bf267daa068a3a2af31
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy2.7-7.3.9-src
Normal file
14
plugins/python-build/share/python-build/pypy2.7-7.3.9-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='2.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=39b0972956f6548ce5828019dbae12503c32d6cbe91a2becf88d3e42cc52197b
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
VERSION='7.3.7'
|
VERSION='7.3.7'
|
||||||
PYVER='3.7'
|
PYVER='3.7'
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
|
||||||
#require_gcc
|
|
||||||
prefer_openssl11
|
prefer_openssl11
|
||||||
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
install_package "pypy${PYVER}-v${VERSION}-src" "https://downloads.python.org/pypy/pypy${PYVER}-v${VERSION}-src.tar.bz2#2ed02ac9e710859c41bc82deafb08619792bb9a27eeaa1676c741ededd214dd7" "pypy_builder" "verify_py${PYVER//./}" ensurepip
|
install_package "pypy${PYVER}-v${VERSION}-src" "https://downloads.python.org/pypy/pypy${PYVER}-v${VERSION}-src.tar.bz2#2ed02ac9e710859c41bc82deafb08619792bb9a27eeaa1676c741ededd214dd7" "pypy_builder" "verify_py${PYVER//./}" ensurepip
|
||||||
|
|||||||
81
plugins/python-build/share/python-build/pypy3.7-7.3.8
Normal file
81
plugins/python-build/share/python-build/pypy3.7-7.3.8
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=4fb2f8281f3aaca72e6fe62ecc5fc054fcc79cd061ca3e0eea730f7d82d610d4
|
||||||
|
linux32_hash=38429ec6ea1aca391821ee4fbda7358ae86de4600146643f2af2fe2c085af839
|
||||||
|
linux64_hash=409085db79a6d90bfcf4f576dca1538498e65937acfbe03bd4909bdc262ff378
|
||||||
|
osx64_hash=76b8eef5b059a7e478f525615482d2a6e9feb83375e3f63c16381d80521a693f
|
||||||
|
s390x_hash=5c2cd3f7cf04cb96f6bcc6b02e271f5d7275867763978e66651b8d1605ef3141
|
||||||
|
win64_hash=96df67492bc8d62b2e71dddf5f6c58965a26cac9799c5f4081401af0494b3bcc
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.7-7.3.8-src
Normal file
14
plugins/python-build/share/python-build/pypy3.7-7.3.8-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=35752be62b148fa6f7fb69e58e1f993c7cc319bea54928eb03ed2e75b8248d5f
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy3.7-7.3.9
Normal file
81
plugins/python-build/share/python-build/pypy3.7-7.3.9
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=dfc62f2c453fb851d10a1879c6e75c31ffebbf2a44d181bb06fcac4750d023fc
|
||||||
|
linux32_hash=3398cece0167b81baa219c9cd54a549443d8c0a6b553ec8ec13236281e0d86cd
|
||||||
|
linux64_hash=c58195124d807ecc527499ee19bc511ed753f4f2e418203ca51bc7e3b124d5d1
|
||||||
|
osx64_hash=12d92f578a200d50959e55074b20f29f93c538943e9a6e6522df1a1cc9cef542
|
||||||
|
s390x_hash=fcab3b9e110379948217cf592229542f53c33bfe881006f95ce30ac815a6df48
|
||||||
|
win64_hash=8acb184b48fb3c854de0662e4d23a66b90e73b1ab73a86695022c12c745d8b00
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.7-7.3.9-src
Normal file
14
plugins/python-build/share/python-build/pypy3.7-7.3.9-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.7'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=70426163b194ee46009986eea6d9426098a3ffb552d9cdbd3dfaa64a47373f49
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy3.8-7.3.8
Normal file
81
plugins/python-build/share/python-build/pypy3.8-7.3.8
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.8'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=fe41df391f87239925e573e195e631a9d03d37f471eb1479790ee13ca47a28af
|
||||||
|
linux32_hash=bea4b275decd492af6462157d293dd6fcf08a949859f8aec0959537b40afd032
|
||||||
|
linux64_hash=089f8e3e357d6130815964ddd3507c13bd53e4976ccf0a89b5c36a9a6775a188
|
||||||
|
osx64_hash=de1b283ff112d76395c0162a1cf11528e192bdc230ee3f1b237f7694c7518dee
|
||||||
|
s390x_hash=0c46527770ec1322b98942860ad3551767d3e09d4481bcb49abd92001a293840
|
||||||
|
win64_hash=0894c468e7de758c509a602a28ef0ba4fbf197ccdf946c7853a7283d9bb2a345
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.8-7.3.8-src
Normal file
14
plugins/python-build/share/python-build/pypy3.8-7.3.8-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.8'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=f1a378b264cdbfb0e03d77dfc4d105d02f91d542bd7c9c957d1f8083a9808f1f
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy3.8-7.3.9
Normal file
81
plugins/python-build/share/python-build/pypy3.8-7.3.9
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.8'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=5e124455e207425e80731dff317f0432fa0aba1f025845ffca813770e2447e32
|
||||||
|
linux32_hash=4b261516c6c59078ab0c8bd7207327a1b97057b4ec1714ed5e79a026f9efd492
|
||||||
|
linux64_hash=08be25ec82fc5d23b78563eda144923517daba481a90af0ace7a047c9c9a3c34
|
||||||
|
osx64_hash=91a5c2c1facd5a4931a8682b7d792f7cf4f2ba25cd2e7e44e982139a6d5e4840
|
||||||
|
s390x_hash=c6177a0016c9145c7b99fddb5d74cc2e518ccdb216a6deb51ef6a377510cc930
|
||||||
|
win64_hash=05022baaa55db2b60880f2422312d9e4025e1267303ac57f33e8253559d0be88
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.8-7.3.9-src
Normal file
14
plugins/python-build/share/python-build/pypy3.8-7.3.9-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.8'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=5b5d9d9256f12a129af8384e2f581bdfab3bc0fbbe3a0a480d9c1d2e95490eb1
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy3.9-7.3.8
Normal file
81
plugins/python-build/share/python-build/pypy3.9-7.3.8
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.9'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=89d7ee12a8c416e83fae80af82482531fc6502321e75e5b7a0cc01d756ee5f0e
|
||||||
|
linux32_hash=0894c468e7de758c509a602a28ef0ba4fbf197ccdf946c7853a7283d9bb2a345
|
||||||
|
linux64_hash=129a055032bba700cd1d0acacab3659cf6b7180e25b1b2f730e792f06d5b3010
|
||||||
|
osx64_hash=95bd88ac8d6372cd5b7b5393de7b7d5c615a0c6e42fdb1eb67f2d2d510965aee
|
||||||
|
s390x_hash=37b596bfe76707ead38ffb565629697e9b6fa24e722acc3c632b41ec624f5d95
|
||||||
|
win64_hash=c1b2e4cde2dcd1208d41ef7b7df8e5c90564a521e7a5db431673da335a1ba697
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.9-7.3.8-src
Normal file
14
plugins/python-build/share/python-build/pypy3.9-7.3.8-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.8'
|
||||||
|
PYVER='3.9'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=546b7fc3789728869d5ada7b6a95ce9d03047e8489b92ada84613c900e431ee9
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
81
plugins/python-build/share/python-build/pypy3.9-7.3.9
Normal file
81
plugins/python-build/share/python-build/pypy3.9-7.3.9
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.9'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
aarch64_hash=2e1ae193d98bc51439642a7618d521ea019f45b8fb226940f7e334c548d2b4b9
|
||||||
|
linux32_hash=0de4b9501cf28524cdedcff5052deee9ea4630176a512bdc408edfa30914bae7
|
||||||
|
linux64_hash=46818cb3d74b96b34787548343d266e2562b531ddbaf330383ba930ff1930ed5
|
||||||
|
osx64_hash=59c8852168b2b1ba1f0211ff043c678760380d2f9faf2f95042a8878554dbc25
|
||||||
|
s390x_hash=774dca83bcb4403fb99b3d155e7bd572ef8c52b9fe87a657109f64e75ad71732
|
||||||
|
win64_hash=be48ab42f95c402543a7042c999c9433b17e55477c847612c8733a583ca6dff5
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
function pypy_pkg_data {
|
||||||
|
# pypy architecture
|
||||||
|
local ARCH="${1}"
|
||||||
|
|
||||||
|
local basesrc="pypy${PYVER}-${VERSION}-src"
|
||||||
|
local basever="pypy${PYVER}-v${VERSION}"
|
||||||
|
local baseurl="https://downloads.python.org/pypy/${basever}"
|
||||||
|
|
||||||
|
# defaults
|
||||||
|
local cmd='install_package' # use bz2
|
||||||
|
local pkg="${ARCH}" # assume matches
|
||||||
|
local url="${baseurl}-${pkg}.tar.bz2" # use bz2
|
||||||
|
local hash='' # undefined
|
||||||
|
|
||||||
|
case "${pkg}" in
|
||||||
|
'linux-aarch64' )
|
||||||
|
hash="${aarch64_hash}"
|
||||||
|
url="${baseurl}-aarch64.tar.bz2" # diff url
|
||||||
|
;;
|
||||||
|
'linux' )
|
||||||
|
hash="${linux32_hash}"
|
||||||
|
pkg='linux32' # package name revised
|
||||||
|
url="${baseurl}-${pkg}.tar.bz2" # new url
|
||||||
|
;;
|
||||||
|
'linux64' )
|
||||||
|
hash="${linux64_hash}"
|
||||||
|
;;
|
||||||
|
'osx64' )
|
||||||
|
if require_osx_version "10.13"; then
|
||||||
|
hash="${osx64_hash}"
|
||||||
|
else
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true), OS X < 10.13."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
's390x' )
|
||||||
|
hash="${s390x_hash}"
|
||||||
|
;;
|
||||||
|
'win64' )
|
||||||
|
hash="${win64_hash}"
|
||||||
|
cmd='install_zip' # diff command
|
||||||
|
url="${baseurl}-${pkg}.zip" # zip rather than bz2
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": The binary distribution of PyPy is not available for $(pypy_architecture 2>/dev/null || true)."
|
||||||
|
echo "try '${basesrc}' to build from source."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# result - command, package dir, url+hash
|
||||||
|
echo "${cmd}" "${basever}-${pkg}" "${url}#${hash}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# determine command, package directory, url+hash
|
||||||
|
declare -a pd="$(pypy_pkg_data "$(pypy_architecture 2>/dev/null || true)")"
|
||||||
|
|
||||||
|
# install
|
||||||
|
${pd[0]} "${pd[1]}" "${pd[2]}" 'pypy' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
14
plugins/python-build/share/python-build/pypy3.9-7.3.9-src
Normal file
14
plugins/python-build/share/python-build/pypy3.9-7.3.9-src
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
VERSION='7.3.9'
|
||||||
|
PYVER='3.9'
|
||||||
|
|
||||||
|
# https://www.pypy.org/checksums.html
|
||||||
|
hash=2abaa1e9fe1ec0e233c9fbc377a0c8e9a0634080a8f4f30eb6898301f6618c12
|
||||||
|
|
||||||
|
### end of manual settings - following lines same for every download
|
||||||
|
|
||||||
|
ver="pypy${PYVER}-v${VERSION}-src"
|
||||||
|
url="https://downloads.python.org/pypy/${ver}.tar.bz2"
|
||||||
|
|
||||||
|
prefer_openssl11
|
||||||
|
install_package "openssl-1.1.1f" "https://www.openssl.org/source/openssl-1.1.1f.tar.gz#186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35" mac_openssl --if has_broken_mac_openssl
|
||||||
|
install_package "${ver}" "${url}#${hash}" 'pypy_builder' "verify_py${PYVER//./}" 'ensurepip'
|
||||||
19
plugins/python-build/share/python-build/pyston-2.3.2
Normal file
19
plugins/python-build/share/python-build/pyston-2.3.2
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
echo
|
||||||
|
colorize 1 "WARNING"
|
||||||
|
echo ": Pyston only runs on x86_64 platforms, and only has been tested on Ubuntu"
|
||||||
|
echo "so, your mileage may vary with other Linux distributions."
|
||||||
|
echo
|
||||||
|
|
||||||
|
case "$(pyston_architecture 2>/dev/null || true)" in
|
||||||
|
"linux64" )
|
||||||
|
install_package "pyston_2.3.2" "https://github.com/pyston/pyston/releases/download/pyston_2.3.2/pyston_2.3.2_portable.tar.gz#80e71dd2db504e09951ee835e04c9e1183c79412da9aa11d98a6d3f44b95bec1" "pyston" verify_py38 get_pip
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": A Pyston 2.3.2 binary is not available for $(pyston_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
16
plugins/python-build/share/python-build/pyston-2.3.3
Normal file
16
plugins/python-build/share/python-build/pyston-2.3.3
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
case "$(pyston_architecture 2>/dev/null || true)" in
|
||||||
|
"linux64" )
|
||||||
|
install_package "pyston_2.3.3_portable_amd64" "https://github.com/pyston/pyston/releases/download/pyston_2.3.3/pyston_2.3.3_portable_amd64.tar.gz#7a38e2bd2fed38e6daba4d513bae32af0d5ba6185cadf37cb1af6bcc4de0cb57" "pyston" verify_py38 get_pip
|
||||||
|
;;
|
||||||
|
"linux-aarch64" )
|
||||||
|
install_package "pyston_2.3.3_portable_arm64" "https://github.com/pyston/pyston/releases/download/pyston_2.3.3/pyston_2.3.3_portable_arm64.tar.gz#f93f55b59120f576e5755bd8f86fa38361a30ca5389dbadc68450051ee2dccb1" "pyston" verify_py38 get_pip
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
{ echo
|
||||||
|
colorize 1 "ERROR"
|
||||||
|
echo ": A Pyston 2.3.3 binary is not available for $(pyston_architecture 2>/dev/null || true)."
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -62,7 +62,7 @@ assert_build_log() {
|
|||||||
cached_tarball "yaml-0.1.6"
|
cached_tarball "yaml-0.1.6"
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
for i in {1..4}; do stub uname '-s : echo Linux'; done
|
for i in {1..9}; do stub uname '-s : echo Linux'; done
|
||||||
stub brew false
|
stub brew false
|
||||||
stub_make_install
|
stub_make_install
|
||||||
stub_make_install
|
stub_make_install
|
||||||
@@ -89,7 +89,7 @@ OUT
|
|||||||
cached_tarball "yaml-0.1.6"
|
cached_tarball "yaml-0.1.6"
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
for i in {1..4}; do stub uname '-s : echo Linux'; done
|
for i in {1..9}; do stub uname '-s : echo Linux'; done
|
||||||
stub brew false
|
stub brew false
|
||||||
stub_make_install
|
stub_make_install
|
||||||
stub_make_install
|
stub_make_install
|
||||||
@@ -119,15 +119,12 @@ OUT
|
|||||||
cached_tarball "yaml-0.1.6"
|
cached_tarball "yaml-0.1.6"
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
stub uname '-s : echo Linux' '-s : echo Linux'
|
for i in {1..9}; do stub uname '-s : echo Linux'; done
|
||||||
stub brew false
|
stub brew false
|
||||||
stub_make_install
|
stub_make_install
|
||||||
stub_make_install
|
stub_make_install
|
||||||
stub patch ' : echo patch "$@" | sed -E "s/\.[[:alnum:]]+$/.XXX/" >> build.log'
|
stub patch ' : echo patch "$@" | sed -E "s/\.[[:alnum:]]+$/.XXX/" >> build.log'
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
|
||||||
stub uname false false
|
|
||||||
|
|
||||||
TMPDIR="$TMP" install_fixture --patch definitions/needs-yaml <<<"diff --git a/script.py"
|
TMPDIR="$TMP" install_fixture --patch definitions/needs-yaml <<<"diff --git a/script.py"
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
@@ -154,7 +151,7 @@ OUT
|
|||||||
BREW_PREFIX="$TMP/homebrew-prefix"
|
BREW_PREFIX="$TMP/homebrew-prefix"
|
||||||
mkdir -p "$BREW_PREFIX"
|
mkdir -p "$BREW_PREFIX"
|
||||||
|
|
||||||
for i in {1..4}; do stub uname '-s : echo Darwin'; done
|
for i in {1..9}; do stub uname '-s : echo Darwin'; done
|
||||||
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
stub brew "--prefix : echo '$BREW_PREFIX'" false
|
stub brew "--prefix : echo '$BREW_PREFIX'" false
|
||||||
stub_make_install
|
stub_make_install
|
||||||
@@ -164,8 +161,8 @@ install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.
|
|||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub sw_vers
|
|
||||||
unstub uname
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
assert_build_log <<OUT
|
assert_build_log <<OUT
|
||||||
@@ -182,7 +179,7 @@ OUT
|
|||||||
brew_libdir="$TMP/homebrew-yaml"
|
brew_libdir="$TMP/homebrew-yaml"
|
||||||
mkdir -p "$brew_libdir"
|
mkdir -p "$brew_libdir"
|
||||||
|
|
||||||
for i in {1..4}; do stub uname '-s : echo Darwin'; done
|
for i in {1..10}; do stub uname '-s : echo Darwin'; done
|
||||||
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
stub brew "--prefix libyaml : echo '$brew_libdir'"
|
stub brew "--prefix libyaml : echo '$brew_libdir'"
|
||||||
for i in {1..4}; do stub brew false; done
|
for i in {1..4}; do stub brew false; done
|
||||||
@@ -191,8 +188,8 @@ OUT
|
|||||||
install_fixture definitions/needs-yaml
|
install_fixture definitions/needs-yaml
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub sw_vers
|
|
||||||
unstub uname
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub brew
|
unstub brew
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -204,12 +201,41 @@ make install
|
|||||||
OUT
|
OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "yaml is not linked from Homebrew in non-MacOS" {
|
||||||
|
cached_tarball "yaml-0.1.6"
|
||||||
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
|
for i in {1..9}; do stub uname '-s : echo Linux'; done
|
||||||
|
stub brew true; brew
|
||||||
|
stub_make_install
|
||||||
|
stub_make_install
|
||||||
|
|
||||||
|
install_fixture definitions/needs-yaml
|
||||||
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub brew
|
||||||
|
unstub make
|
||||||
|
|
||||||
|
assert_build_log <<OUT
|
||||||
|
yaml-0.1.6: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
|
||||||
|
yaml-0.1.6: --prefix=${TMP}/install
|
||||||
|
make -j 2
|
||||||
|
make install
|
||||||
|
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
|
||||||
|
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
|
||||||
|
make -j 2
|
||||||
|
make install
|
||||||
|
OUT
|
||||||
|
}
|
||||||
|
|
||||||
@test "readline is linked from Homebrew" {
|
@test "readline is linked from Homebrew" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
readline_libdir="$TMP/homebrew-readline"
|
readline_libdir="$TMP/homebrew-readline"
|
||||||
mkdir -p "$readline_libdir"
|
mkdir -p "$readline_libdir"
|
||||||
stub uname false
|
for i in {1..8}; do stub uname '-s : echo Darwin'; done
|
||||||
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
for i in {1..2}; do stub brew false; done
|
for i in {1..2}; do stub brew false; done
|
||||||
stub brew "--prefix readline : echo '$readline_libdir'"
|
stub brew "--prefix readline : echo '$readline_libdir'"
|
||||||
stub brew false
|
stub brew false
|
||||||
@@ -220,6 +246,8 @@ install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.
|
|||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub brew
|
unstub brew
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -231,6 +259,30 @@ make install
|
|||||||
OUT
|
OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "no library searches performed during normal operation touch homebrew in non-MacOS" {
|
||||||
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
|
for i in {1..8}; do stub uname '-s : echo Linux'; done
|
||||||
|
stub brew true; brew
|
||||||
|
stub_make_install
|
||||||
|
|
||||||
|
run_inline_definition <<DEF
|
||||||
|
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
|
||||||
|
DEF
|
||||||
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub brew
|
||||||
|
unstub make
|
||||||
|
|
||||||
|
assert_build_log <<OUT
|
||||||
|
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
|
||||||
|
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
|
||||||
|
make -j 2
|
||||||
|
make install
|
||||||
|
OUT
|
||||||
|
}
|
||||||
|
|
||||||
@test "readline is not linked from Homebrew when explicitly defined" {
|
@test "readline is not linked from Homebrew when explicitly defined" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
@@ -239,8 +291,8 @@ OUT
|
|||||||
mkdir -p "$readline_libdir/include/readline"
|
mkdir -p "$readline_libdir/include/readline"
|
||||||
touch "$readline_libdir/include/readline/rlconf.h"
|
touch "$readline_libdir/include/readline/rlconf.h"
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
for i in {1..8}; do stub uname '-s : echo Darwin'; done
|
||||||
stub uname false false
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
|
|
||||||
for i in {1..3}; do stub brew false; done
|
for i in {1..3}; do stub brew false; done
|
||||||
stub_make_install
|
stub_make_install
|
||||||
@@ -251,6 +303,8 @@ install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.
|
|||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub brew
|
unstub brew
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -269,10 +323,13 @@ OUT
|
|||||||
mkdir -p "$tcl_tk_libdir/lib"
|
mkdir -p "$tcl_tk_libdir/lib"
|
||||||
echo "TCL_VERSION='$tcl_tk_version'" >>"$tcl_tk_libdir/lib/tclConfig.sh"
|
echo "TCL_VERSION='$tcl_tk_version'" >>"$tcl_tk_libdir/lib/tclConfig.sh"
|
||||||
|
|
||||||
stub uname false
|
for i in {1..10}; do stub uname '-s : echo Darwin'; done
|
||||||
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
|
|
||||||
stub brew false
|
stub brew false
|
||||||
for i in {1..2}; do stub brew "--prefix tcl-tk : echo '$tcl_tk_libdir'"; done
|
for i in {1..2}; do stub brew "--prefix tcl-tk : echo '$tcl_tk_libdir'"; done
|
||||||
for i in {1..2}; do stub brew false; done
|
for i in {1..2}; do stub brew false; done
|
||||||
|
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
run_inline_definition <<DEF
|
run_inline_definition <<DEF
|
||||||
@@ -280,6 +337,8 @@ install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.
|
|||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub brew
|
unstub brew
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -298,8 +357,8 @@ OUT
|
|||||||
tcl_tk_version_long="8.6.10"
|
tcl_tk_version_long="8.6.10"
|
||||||
tcl_tk_version="${tcl_tk_version_long%.*}"
|
tcl_tk_version="${tcl_tk_version_long%.*}"
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
for i in {1..9}; do stub uname '-s : echo Darwin'; done
|
||||||
stub uname false false
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
|
||||||
|
|
||||||
for i in {1..4}; do stub brew false; done
|
for i in {1..4}; do stub brew false; done
|
||||||
stub_make_install
|
stub_make_install
|
||||||
@@ -310,6 +369,8 @@ install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.
|
|||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub brew
|
unstub brew
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -324,14 +385,9 @@ OUT
|
|||||||
@test "number of CPU cores defaults to 2" {
|
@test "number of CPU cores defaults to 2" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
# yyuu/pyenv#222
|
for i in {1..10}; do stub uname '-s : echo Darwin'; done
|
||||||
stub uname '-s : echo Darwin'
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 10.10'; done
|
||||||
stub sw_vers '-productVersion : echo 10.10'
|
|
||||||
|
|
||||||
# yyuu/pyenv#257
|
|
||||||
stub uname '-s : echo Darwin'
|
|
||||||
|
|
||||||
stub uname '-s : echo Darwin' false '-s : echo Darwin'
|
|
||||||
stub sysctl false
|
stub sysctl false
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
@@ -342,6 +398,7 @@ DEF
|
|||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub uname
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
assert_build_log <<OUT
|
assert_build_log <<OUT
|
||||||
@@ -355,14 +412,9 @@ OUT
|
|||||||
@test "number of CPU cores is detected on Mac" {
|
@test "number of CPU cores is detected on Mac" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
# yyuu/pyenv#222
|
for i in {1..10}; do stub uname '-s : echo Darwin'; done
|
||||||
stub uname '-s : echo Darwin'
|
for i in {1..2}; do stub sw_vers '-productVersion : echo 10.10'; done
|
||||||
stub sw_vers '-productVersion : echo 10.10'
|
|
||||||
|
|
||||||
# yyuu/pyenv#257
|
|
||||||
stub uname '-s : echo Darwin'
|
|
||||||
|
|
||||||
stub uname '-s : echo Darwin' false '-s : echo Darwin'
|
|
||||||
stub sysctl '-n hw.ncpu : echo 4'
|
stub sysctl '-n hw.ncpu : echo 4'
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
@@ -373,6 +425,7 @@ DEF
|
|||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
unstub uname
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
unstub sysctl
|
unstub sysctl
|
||||||
unstub make
|
unstub make
|
||||||
|
|
||||||
@@ -387,10 +440,10 @@ OUT
|
|||||||
@test "number of CPU cores is detected on FreeBSD" {
|
@test "number of CPU cores is detected on FreeBSD" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
for i in {1..7}; do stub uname '-s : echo FreeBSD'; done
|
||||||
stub uname false false
|
stub uname '-r : echo 11.0-RELEASE'
|
||||||
|
for i in {1..2}; do stub uname '-s : echo FreeBSD'; done
|
||||||
|
|
||||||
stub uname '-s : echo FreeBSD' false false
|
|
||||||
stub sysctl '-n hw.ncpu : echo 1'
|
stub sysctl '-n hw.ncpu : echo 1'
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
@@ -415,10 +468,8 @@ OUT
|
|||||||
@test "setting PYTHON_MAKE_INSTALL_OPTS to a multi-word string" {
|
@test "setting PYTHON_MAKE_INSTALL_OPTS to a multi-word string" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
for i in {1..8}; do stub uname '-s : echo Linux'; done
|
||||||
stub uname false false false
|
|
||||||
|
|
||||||
stub uname '-s : echo Linux'
|
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
export PYTHON_MAKE_INSTALL_OPTS="DOGE=\"such wow\""
|
export PYTHON_MAKE_INSTALL_OPTS="DOGE=\"such wow\""
|
||||||
@@ -441,10 +492,7 @@ OUT
|
|||||||
@test "setting MAKE_INSTALL_OPTS to a multi-word string" {
|
@test "setting MAKE_INSTALL_OPTS to a multi-word string" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
# pyenv/pyenv#1026
|
for i in {1..8}; do stub uname '-s : echo Linux'; done
|
||||||
stub uname false false false
|
|
||||||
|
|
||||||
stub uname '-s : echo Linux'
|
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
export MAKE_INSTALL_OPTS="DOGE=\"such wow\""
|
export MAKE_INSTALL_OPTS="DOGE=\"such wow\""
|
||||||
@@ -476,10 +524,10 @@ OUT
|
|||||||
@test "make on FreeBSD 9 defaults to gmake" {
|
@test "make on FreeBSD 9 defaults to gmake" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
stub uname "-s : echo FreeBSD" "-r : echo 9.1" false
|
stub uname "-s : echo FreeBSD" "-r : echo 9.1"
|
||||||
|
for i in {1..6}; do stub uname "-s : echo FreeBSD"; done
|
||||||
# pyenv/pyenv#1026
|
stub uname "-r : echo 9.1"
|
||||||
stub uname false false false
|
for i in {1..2}; do stub uname "-s : echo FreeBSD"; done
|
||||||
|
|
||||||
MAKE=gmake stub_make_install
|
MAKE=gmake stub_make_install
|
||||||
|
|
||||||
@@ -493,10 +541,10 @@ OUT
|
|||||||
@test "make on FreeBSD 10" {
|
@test "make on FreeBSD 10" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
stub uname "-s : echo FreeBSD" "-r : echo 10.0-RELEASE" false
|
stub uname "-s : echo FreeBSD" "-r : echo 10.0-RELEASE"
|
||||||
|
for i in {1..6}; do stub uname "-s : echo FreeBSD"; done
|
||||||
# pyenv/pyenv#1026
|
stub uname "-r : echo 10.0-RELEASE"
|
||||||
stub uname false false false
|
for i in {1..2}; do stub uname "-s : echo FreeBSD"; done
|
||||||
|
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
@@ -509,10 +557,10 @@ OUT
|
|||||||
@test "make on FreeBSD 11" {
|
@test "make on FreeBSD 11" {
|
||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
stub uname "-s : echo FreeBSD" "-r : echo 11.0-RELEASE" false
|
stub uname "-s : echo FreeBSD" "-r : echo 11.0-RELEASE"
|
||||||
|
for i in {1..6}; do stub uname "-s : echo FreeBSD"; done
|
||||||
# pyenv/pyenv#1026
|
stub uname "-r : echo 11.0-RELEASE"
|
||||||
stub uname false false false
|
for i in {1..2}; do stub uname "-s : echo FreeBSD"; done
|
||||||
|
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
@@ -531,15 +579,10 @@ apply -p1 -i /my/patch.diff
|
|||||||
exec ./configure "\$@"
|
exec ./configure "\$@"
|
||||||
CONF
|
CONF
|
||||||
|
|
||||||
stub uname '-s : echo Linux'
|
for i in {1..8}; do stub uname '-s : echo Linux'; done
|
||||||
stub apply 'echo apply "$@" >> build.log'
|
stub apply 'echo apply "$@" >> build.log'
|
||||||
stub_make_install
|
stub_make_install
|
||||||
|
|
||||||
# yyuu/pyenv#257
|
|
||||||
stub uname '-s : echo Linux'
|
|
||||||
stub uname '-s : echo Linux'
|
|
||||||
stub uname '-s : echo Linux'
|
|
||||||
|
|
||||||
export PYTHON_CONFIGURE="${TMP}/custom-configure"
|
export PYTHON_CONFIGURE="${TMP}/custom-configure"
|
||||||
run_inline_definition <<DEF
|
run_inline_definition <<DEF
|
||||||
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
|
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
|
||||||
|
|||||||
@@ -63,8 +63,8 @@ DEF
|
|||||||
mkdir -p "$INSTALL_ROOT"
|
mkdir -p "$INSTALL_ROOT"
|
||||||
cd "$INSTALL_ROOT"
|
cd "$INSTALL_ROOT"
|
||||||
|
|
||||||
for i in {1..5}; do stub uname '-s : echo Darwin'; done
|
for i in {1..10}; do stub uname '-s : echo Darwin'; done
|
||||||
for i in {1..4}; do stub sw_vers '-productVersion : echo 10.10'; done
|
for i in {1..3}; do stub sw_vers '-productVersion : echo 10.10'; done
|
||||||
|
|
||||||
stub cc 'false'
|
stub cc 'false'
|
||||||
stub brew 'false'
|
stub brew 'false'
|
||||||
@@ -85,6 +85,10 @@ exec 4<&1
|
|||||||
build_package_standard python
|
build_package_standard python
|
||||||
DEF
|
DEF
|
||||||
assert_success
|
assert_success
|
||||||
|
|
||||||
|
unstub uname
|
||||||
|
unstub sw_vers
|
||||||
|
|
||||||
assert_output <<OUT
|
assert_output <<OUT
|
||||||
./configure --prefix=$INSTALL_ROOT --libdir=${TMP}/install/lib
|
./configure --prefix=$INSTALL_ROOT --libdir=${TMP}/install/lib
|
||||||
CC=clang
|
CC=clang
|
||||||
|
|||||||
@@ -315,7 +315,7 @@ EOS
|
|||||||
cached_tarball "Python-3.6.2"
|
cached_tarball "Python-3.6.2"
|
||||||
|
|
||||||
for i in {1..4}; do stub brew false; done
|
for i in {1..4}; do stub brew false; done
|
||||||
for i in {1..3}; do stub uname '-s : echo Linux'; done
|
for i in {1..7}; do stub uname '-s : echo Linux'; done
|
||||||
stub "$MAKE" \
|
stub "$MAKE" \
|
||||||
" : echo \"$MAKE \$@\" >> build.log" \
|
" : echo \"$MAKE \$@\" >> build.log" \
|
||||||
" : echo \"$MAKE \$@\" >> build.log && cat build.log >> '$INSTALL_ROOT/build.log'"
|
" : echo \"$MAKE \$@\" >> build.log && cat build.log >> '$INSTALL_ROOT/build.log'"
|
||||||
@@ -332,7 +332,6 @@ OUT
|
|||||||
|
|
||||||
unstub make
|
unstub make
|
||||||
unstub uname
|
unstub uname
|
||||||
unstub brew
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "default MACOSX_DEPLOYMENT_TARGET" {
|
@test "default MACOSX_DEPLOYMENT_TARGET" {
|
||||||
|
|||||||
@@ -83,15 +83,6 @@ if [ -n "${!_STUB_END}" ]; then
|
|||||||
# the requested index, we failed.
|
# the requested index, we failed.
|
||||||
if [ $index -ge "${!_STUB_INDEX}" ]; then
|
if [ $index -ge "${!_STUB_INDEX}" ]; then
|
||||||
eval "${_STUB_RESULT}"=1
|
eval "${_STUB_RESULT}"=1
|
||||||
{
|
|
||||||
echo "index: $index; stub index: ${!_STUB_INDEX}"
|
|
||||||
echo "plan:"
|
|
||||||
cat "${!_STUB_PLAN}"
|
|
||||||
echo "run:"
|
|
||||||
cat "${!_STUB_RUN}"
|
|
||||||
echo "log:"
|
|
||||||
cat "${!_STUB_LOG}"
|
|
||||||
} >&2
|
|
||||||
fi
|
fi
|
||||||
if [ "${!_STUB_RESULT}" -ne 0 ]; then
|
if [ "${!_STUB_RESULT}" -ne 0 ]; then
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -17,6 +17,13 @@ load test_helper
|
|||||||
assert_line "command pyenv rehash 2>/dev/null"
|
assert_line "command pyenv rehash 2>/dev/null"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "auto rehash for --path" {
|
||||||
|
run pyenv-init --path
|
||||||
|
assert_success
|
||||||
|
assert_line "command pyenv rehash 2>/dev/null"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@test "setup shell completions" {
|
@test "setup shell completions" {
|
||||||
root="$(cd $BATS_TEST_DIRNAME/.. && pwd)"
|
root="$(cd $BATS_TEST_DIRNAME/.. && pwd)"
|
||||||
run pyenv-init - bash
|
run pyenv-init - bash
|
||||||
@@ -53,7 +60,7 @@ OUT
|
|||||||
@test "fish instructions" {
|
@test "fish instructions" {
|
||||||
run pyenv-init fish
|
run pyenv-init fish
|
||||||
assert [ "$status" -eq 1 ]
|
assert [ "$status" -eq 1 ]
|
||||||
assert_line '# See the README for instructions on how to set up'
|
assert_line 'pyenv init - | source'
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "option to skip rehash" {
|
@test "option to skip rehash" {
|
||||||
@@ -64,30 +71,41 @@ OUT
|
|||||||
|
|
||||||
@test "adds shims to PATH" {
|
@test "adds shims to PATH" {
|
||||||
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin:/usr/local/bin"
|
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin:/usr/local/bin"
|
||||||
run pyenv-init --path bash
|
run pyenv-init - bash
|
||||||
assert_success
|
assert_success
|
||||||
assert_line 0 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
assert_line 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "adds shims to PATH (fish)" {
|
@test "adds shims to PATH (fish)" {
|
||||||
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin:/usr/local/bin"
|
export PATH="${BATS_TEST_DIRNAME}/../libexec:/usr/bin:/bin:/usr/local/bin"
|
||||||
run pyenv-init --path fish
|
run pyenv-init - fish
|
||||||
assert_success
|
assert_success
|
||||||
assert_line 0 "set -gx PATH '${PYENV_ROOT}/shims' \$PATH"
|
assert_line "set -gx PATH '${PYENV_ROOT}/shims' \$PATH"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "can add shims to PATH more than once" {
|
@test "removes existing shims from PATH" {
|
||||||
export PATH="${PYENV_ROOT}/shims:$PATH"
|
OLDPATH="$PATH"
|
||||||
run pyenv-init --path bash
|
export PATH="${BATS_TEST_DIRNAME}/nonexistent:${PYENV_ROOT}/shims:$PATH"
|
||||||
|
run bash -e <<!
|
||||||
|
eval "\$(pyenv-init -)"
|
||||||
|
echo "\$PATH"
|
||||||
|
!
|
||||||
assert_success
|
assert_success
|
||||||
assert_line 0 'export PATH="'${PYENV_ROOT}'/shims:${PATH}"'
|
assert_output "${PYENV_ROOT}/shims:${BATS_TEST_DIRNAME}/nonexistent:${OLDPATH//${PYENV_ROOT}\/shims:/}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "can add shims to PATH more than once (fish)" {
|
@test "removes existing shims from PATH (fish)" {
|
||||||
export PATH="${PYENV_ROOT}/shims:$PATH"
|
command -v fish >/dev/null || skip "-- fish not installed"
|
||||||
run pyenv-init --path fish
|
OLDPATH="$PATH"
|
||||||
|
export PATH="${BATS_TEST_DIRNAME}/nonexistent:${PYENV_ROOT}/shims:$PATH"
|
||||||
|
# fish 2 (Ubuntu Bionic) adds spurious messages when setting PATH, messing up the output
|
||||||
|
run fish <<!
|
||||||
|
set -x PATH "$PATH"
|
||||||
|
pyenv init - | source
|
||||||
|
echo "\$PATH"
|
||||||
|
!
|
||||||
assert_success
|
assert_success
|
||||||
assert_line 0 "set -gx PATH '${PYENV_ROOT}/shims' \$PATH"
|
assert_output "${PYENV_ROOT}/shims:${BATS_TEST_DIRNAME}/nonexistent:${OLDPATH//${PYENV_ROOT}\/shims:/}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "outputs sh-compatible syntax" {
|
@test "outputs sh-compatible syntax" {
|
||||||
|
|||||||
@@ -84,7 +84,8 @@ assert_line() {
|
|||||||
for line in "${lines[@]}"; do
|
for line in "${lines[@]}"; do
|
||||||
if [ "$line" = "$1" ]; then return 0; fi
|
if [ "$line" = "$1" ]; then return 0; fi
|
||||||
done
|
done
|
||||||
flunk "expected line \`$1'"
|
flunk "expected line \`$1'" $'\n'\
|
||||||
|
"output: $output"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,7 +99,8 @@ refute_line() {
|
|||||||
local line
|
local line
|
||||||
for line in "${lines[@]}"; do
|
for line in "${lines[@]}"; do
|
||||||
if [ "$line" = "$1" ]; then
|
if [ "$line" = "$1" ]; then
|
||||||
flunk "expected to not find line \`$line'"
|
flunk "expected to not find line \`$line'" $'\n'\
|
||||||
|
"output: $output"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user