Ivan Pozdeev
9373970678
pyenv-latest: replace -q with -b and -f, document as internal
More tailored for the emergent internal use cases
vor 2 Jahren
native-api
cdd97d8c30
Fix pyenv-uninstall not having the debug tracing invocation ( #3020 )
vor 2 Jahren
native-api
50e726ac41
Fix debug build for X.Yy-dev ( #3011 )
also just use extglob everywhere
vor 2 Jahren
Sam Gross
d660c5a84f
Add support for free-threaded Python ( #2995 )
vor 2 Jahren
Tim Felgentreff
98c5b711dc
fix http_get_aria to cat the correct file
vor 2 Jahren
Edgar Ramírez Mondragón
8c7fc98c4f
Add CPython 3.14-dev, update 3.13-dev ( #2960 )
* Add CPython 3.14-dev
* Update 3.13-dev branch to 3.13
* Use OpenSSL 3.3.0
vor 2 Jahren
Ivan Pozdeev
1e017f3917
Set useful PS4 in python-build
vor 2 Jahren
Ivan Pozdeev
05bb4f9a8d
Use Homebrew in Linux if Pyenv is installed with Homebrew or PYTHON_BUILD_USE_HOMEBREW is set
vor 2 Jahren
cpzt
2d85075123
Add micropython 1.20.0 and 1.21.0 ( #2869 )
vor 2 Jahren
Marvin Häuser
2c69732fec
Add installation prefix to `python-config --ldflags` output ( #2865 )
Needed to link against libpython of the Pyenv-controlled installation
vor 2 Jahren
startergo
d25cd0d0f5
Fix linking against Homebrew's Tcl/Tk 8.6.13 in MacOS ( #2820 )
Headers have been moved to the 'tcl-tk' subdir
This was causing Tcl/Tk 8.5 from XCode SDK to be silently picked instead
vor 2 Jahren
Ivan Pozdeev
509d3a8855
Use pip<21 syntax in ensurepip call for pypy2.7-7.3.13 and 2.7.18
vor 2 Jahren
Alex Hedges
928f69cf9a
Install ncurses from Homebrew, if available ( #2813 )
XCode Command Line Tools 15.0 was recently released, and it contains a
broken version of ncurses 6.0. Some uses of Python's `curses` module
will segfault when compiled with it. The solution is to switch to using
the version of ncurses from Homebrew, which is currently 6.4. Support
for ncurses 6 was added to Python 3.7 and was backported to 3.6 and 2.7,
so this change should not break any recently supported Python versions.
Tested with Python 3.12, 3.11, and 2.7, and all tests in
the `test.test_curses` module pass without issue.
See https://github.com/python/cpython/issues/109617 and
https://github.com/python/cpython/issues/69906 for more information.
vor 2 Jahren
native-api
d2c4d963d2
Prioritize 'zlib from xcode sdk' flag correctly ( #2791 )
All include directories should go into CPPFLAGS.
XCode SDK was being added to CFLAGS instead
which caused old Tcl/Tk in the SDK to override a newer one in Homebrew.
vor 2 Jahren
Timothy Pansino
8cfc75604b
Fix get-pip urls for older pypy versions ( #2788 )
vor 2 Jahren
native-api
da3ac7b7a3
Prefer OpenSSL 3 in Homebrew since 3.12 ( #2781 )
vor 2 Jahren
Evan Pitstick
6be6231444
Use -I with ensurepip
The -s flag assures that nothing can be installed to user site-packages
but doesn't keep ensurepip from looking there for Pip.
If Pip is installed in the user site-packages directory, pip won't be installed
for the newly built python -- and its shim won't be created.
-I makes the build install Pip in any case.
The user site-packages installation will override it --
but we'll have the shim at least.
vor 2 Jahren
native-api
ac5efed3a8
Fix FreeBSD tests in MacOS CI ( #2748 )
Guthub have recently preinstalled x64 Homebrew OpenSSL to stock MacOS runners. This has caused FreeBSD OpenSSL detection logic to erroneously trigger when running FreeBSD tests in MacOS because their paths happened to coincide.
Replaced checking a specific path with checking with pkg.
vor 3 Jahren
t0b3
def5cd994e
Update 3.12-dev and add 3.13-dev ( #2703 )
vor 3 Jahren
Shengqi Chen
b1ee6c93c4
Try locate `readlink` first in pyenv-hooks, fix #2654 ( #2655 )
* Remove all use of `greadlink`, fix #2654
Signed-off-by: Harry Chen <i@harrychen.xyz>
* revert greadlink back in tests
---------
Signed-off-by: Harry Chen <i@harrychen.xyz>
Co-authored-by: Anton Petrov <anton.a.petrov@gmail.com>
vor 3 Jahren
Florian Schüller
68918e69b7
Support for BusyBox version of `head' ( #2629 )
vor 3 Jahren
native-api
dd60d5fae2
Fix overriding arguments for --enable-framework and --enable-universalsdk after #2592 ( #2605 )
vor 3 Jahren
native-api
f1a1f59c87
Fix `:latest` after #2568 ( #2599 )
* Cleanup mocks logic
* Add test for `:latest`
vor 3 Jahren
native-api
819e2b8f45
Fix wrong libpython being linked to in MacOS ( #2596 )
Without rpath, python would link up to the system's libpython
vor 3 Jahren
Ivan Pozdeev
e447fe5b73
Don't set --enable-shared if user supplied --disable-shared
vor 3 Jahren
Ivan Pozdeev
4242694a0e
Fix priority for user-supplied configure and make flags
vor 3 Jahren
Ivan Pozdeev
4bd8a975f4
Avoid adding dangling spaces to *FLAGS
vor 3 Jahren
Ivan Pozdeev
2a5bbf6cb5
Fix searching readline and sqlite3 in FreeBSD
Surprisingly, CPython doesn't search these with pkg-config
This is fixed upstream in 3.12.0a1
vor 3 Jahren
native-api
2369ac2a08
Fix using dependencies from Ports in BSD with no pkg-config ( #2586 )
vor 3 Jahren
rockandska
31f372034d
Allow multiple versions for pyenv-install
vor 3 Jahren
Tobias Klauser
ff93c58bab
Remove stray newline after python-build installation ( #2566 )
To match other Pyenv commands
vor 3 Jahren
Ivan Pozdeev
18f62f266d
Remove no-longer-needed PyPy prerequisites
vor 3 Jahren
Dan Dees
cad18bb332
Add PyPy 7.3.10
vor 3 Jahren
Ivan Pozdeev
79fdf1e3bb
Improve Mac feature messages phrasing
vor 3 Jahren
Ivan Pozdeev
03bba03291
Set --enable-shared earlier
To take advantage of the existing logic to add to rpath
vor 3 Jahren
Ivan Pozdeev
cf50e2a2db
Don't hide output from extension checks
vor 3 Jahren
Anton Petrov
b3d52b05d2
--enable-shared by default on non-mac systems
vor 3 Jahren
native-api
31355676f0
Support `aria2c` being a snap ( #2528 )
Likely in Ubuntu where it's only available as a snap
vor 3 Jahren
native-api
1250d7dd30
Don't use Zlib from XCode SDK if a custom compiler is used ( #2516 )
vor 3 Jahren
Ivan Pozdeev
75022d5d7c
Revert version auto-resolution in `python-build`
It was moved to `pyenv-install`
vor 3 Jahren
native-api
a12f947cc3
Auto-resolve prefixes to the latest version ( #2487 )
vor 3 Jahren
native-api
5b0ac41dec
Discover Tcl/Tk from Homebrew via pkgconfig for 3.11+ ( #2501 )
CPython 3.11+ dropped support for --with-tcl-tk-*
in favor of pure pkgconfig
vor 3 Jahren
Michael Šimáček
44510a68f1
Add graalpy-22.3.0 ( #2497 )
vor 3 Jahren
Ivan Pozdeev
faceb4b79c
Allow patching supplementary packages
vor 3 Jahren
Ivan Pozdeev
f3521e88be
Allow to build CPython with --with-dsymutil
Since 3.12, CPython can provide debug symbols in
Apple's nonstandard way, "dSYM bundles"
vor 3 Jahren
Ivan Pozdeev
aa07a3a37c
Remove extraneous is_mac call
vor 3 Jahren
Sam Doran
e6446555f3
Add envvar to skip Homebrew
vor 3 Jahren
Dmitriy Serdyuk
c89a69a6ed
Add micropython 1.18 and 1.19.1 ( #2443 )
Support frozen builtin modules e.g. upip
vor 3 Jahren
hardikpnsp
afeb971fa2
Add support for multiple versions in `pyenv uninstall` ( #2432 )
vor 3 Jahren
brogon
f5cbba0636
Allow pypy2 pypy3 patching ( #2421 )
* Fix: patterns for pypy2.*/pypy3.* versions
* Shrink pypy patterns
* Fix extglob pattern
* Fix: no regex-charclasses like '[:digit:]' in 'extglob', needs also double-activation for parse/runtime stage
Co-authored-by: native-api <vano@mail.mipt.ru>
Co-authored-by: Bjoern Schneider <bjoern.schneider@scribos.com>
vor 4 Jahren