This commit is contained in:
Max Howell 2022-08-02 07:03:17 -04:00 committed by GitHub
parent f45667553a
commit d029a4b15f

View file

@ -0,0 +1,46 @@
distributable:
url: https://www.python.org/ftp/python/{{ version }}/Python-{{ version }}.tar.xz
strip-components: 1
versions:
github: python/cpython/tags
dependencies:
#TODO lots! openssl at least! libffi!
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
./configure $ARGS
make --jobs {{ hw.concurrency }}
make install
cd {{ prefix }}/bin
ln -s python{{ version.major }} python
env:
SHARE: /opt/python.org/share
ARGS:
- --prefix="{{ prefix }}"
# its 202x
- --enable-ipv6
# prevent auto updates -> we control that
- --without-ensurepip
- --disable-loadable-sqlite-extensions
# use our libraries not the bundled ones
- --with-system-expat
- --with-system-ffi
- --with-system-libmpdec
# these two make our binary not portable
#- --enable-optimizations
#- --with-lto
# on macOS we probably will actually want to --enable-framework
- --enable-shared
# put data that doesnt vary between pythons in a consistent place
- --datarootdir="$SHARE"
- --datadir="$SHARE"
test:
script:
python --version