mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
this keeps them out of the python-config flags, which stops them from being needlessly duplicated everywhere later
219 lines
5.8 KiB
Plaintext
219 lines
5.8 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Sheila Aman <sheila@vulpine.house>
|
|
pkgname=python3
|
|
# the python3-tkinter's pkgver needs to be synchronized with this.
|
|
pkgver=3.11.1
|
|
_basever="${pkgver%.*}"
|
|
pkgrel=2
|
|
pkgdesc="A high-level scripting language"
|
|
url="https://www.python.org/"
|
|
arch="all"
|
|
license="PSF-2.0"
|
|
subpackages="
|
|
$pkgname-dbg
|
|
$pkgname-dev
|
|
$pkgname-doc
|
|
$pkgname-tests::noarch
|
|
$pkgname-gdbm
|
|
"
|
|
makedepends="
|
|
!gettext-dev
|
|
bluez-headers
|
|
bzip2-dev
|
|
expat-dev
|
|
gdbm-dev
|
|
libffi-dev
|
|
linux-headers
|
|
mpdecimal-dev
|
|
musl-libintl
|
|
ncurses-dev
|
|
openssl-dev
|
|
readline-dev
|
|
sqlite-dev
|
|
tcl-dev
|
|
xz-dev
|
|
zlib-dev
|
|
"
|
|
source="https://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.xz
|
|
fix-xattrs-glibc.patch
|
|
musl-find_library.patch
|
|
"
|
|
options="net" # Required for tests
|
|
builddir="$srcdir/Python-$pkgver"
|
|
|
|
# secfixes:
|
|
# 3.11.1-r0:
|
|
# - CVE-2022-45061
|
|
# 3.10.5-r0:
|
|
# - CVE-2015-20107
|
|
# 3.9.5-r0:
|
|
# - CVE-2021-29921
|
|
# 3.9.4-r0:
|
|
# - CVE-2021-3426
|
|
# 3.8.8-r0:
|
|
# - CVE-2021-23336
|
|
# 3.8.7-r2:
|
|
# - CVE-2021-3177
|
|
# 3.8.5-r0:
|
|
# - CVE-2019-20907
|
|
# 3.8.4-r0:
|
|
# - CVE-2020-14422
|
|
# 3.8.2-r0:
|
|
# - CVE-2020-8315
|
|
# - CVE-2020-8492
|
|
# 3.7.5-r0:
|
|
# - CVE-2019-16056
|
|
# - CVE-2019-16935
|
|
# 3.6.8-r1:
|
|
# - CVE-2019-5010
|
|
|
|
# was briefly present, and is in 3.16
|
|
provides="pythonispython3=$pkgver-r$pkgrel"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
# force system libs
|
|
rm -r Modules/expat \
|
|
Modules/_ctypes/darwin* \
|
|
Modules/_ctypes/libffi*
|
|
}
|
|
|
|
build() {
|
|
# set thread stack size to 2MB so we don't segfault before we hit
|
|
# sys.getrecursionlimit()
|
|
# note: raised from 1 as we ran into some stack limit on x86_64 too
|
|
# sometimes, but not recursion
|
|
local stacksize=0x200000
|
|
|
|
# we want -O2 here for more speed for such a large interpreter.
|
|
export CFLAGS_NODIST="$CFLAGS -O2 -DTHREAD_STACK_SIZE=$stacksize"
|
|
export CXXFLAGS_NODIST="$CXXFLAGS -O2"
|
|
export CPPFLAGS_NODIST="$CPPFLAGS -O2"
|
|
export LDFLAGS_NODIST="$LDFLAGS"
|
|
|
|
# we set them via NODIST to not propagate them and duplicate them to modules
|
|
unset LDFLAGS CFLAGS CXXFLAGS CPPFLAGS
|
|
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-ipv6 \
|
|
--enable-loadable-sqlite-extensions \
|
|
--enable-optimizations \
|
|
--enable-shared \
|
|
--with-lto \
|
|
--with-computed-gotos \
|
|
--with-dbmliborder=gdbm:ndbm \
|
|
--with-system-expat \
|
|
--with-system-ffi \
|
|
--with-system-libmpdec \
|
|
--without-ensurepip
|
|
|
|
make
|
|
}
|
|
|
|
check() {
|
|
# test that we reach recursionlimit before we segfault
|
|
cat > test-stacksize.py <<-EOF
|
|
import threading
|
|
import sys
|
|
|
|
def fun(i):
|
|
try:
|
|
fun(i+1)
|
|
except:
|
|
sys.exit(0)
|
|
|
|
t = threading.Thread(target=fun, args=[1])
|
|
t.start()
|
|
EOF
|
|
LD_LIBRARY_PATH=$PWD ./python test-stacksize.py
|
|
|
|
local fail
|
|
|
|
# musl related
|
|
fail="test__locale test_locale test_strptime test_re" # various musl locale deficiencies
|
|
fail="$fail test_c_locale_coercion"
|
|
fail="$fail test_datetime" # hangs if 'tzdata' installed
|
|
fail="$fail test_os" # fpathconf, ttyname errno values
|
|
fail="$fail test_posix" # sched_[gs]etscheduler not impl
|
|
fail="$fail test_shutil" # lchmod, requires real unzip
|
|
|
|
# FIXME: failures needing investigation
|
|
fail="$fail test_faulthandler test_gdb" # hangs(?)
|
|
fail="$fail test_tokenize test_tools" # SLOW (~60s)
|
|
fail="$fail test_capi" # test.test_capi.EmbeddingTests
|
|
fail="$fail test_threadsignals" # test_{,r}lock_acquire_interruption
|
|
fail="$fail test_time" # strftime/strptime %Z related
|
|
fail="$fail test_cmath test_math" # hang(?) on x86
|
|
fail="$fail test_hash test_plistlib" # fail on armhf
|
|
fail="$fail test_ctypes" # fail on aarch64 (ctypes.test.test_win32.Structures)
|
|
fail="$fail test_cmd_line_script" # fails on x86_64
|
|
fail="$fail test_multiprocessing_main_handling" # fails on x86_64
|
|
fail="$fail test_runpy" # fails on x86_64
|
|
fail="$fail test_threading" # hangs on all arches (except x86_64?)
|
|
fail="$fail test_selectors" # AssertionError: 'Python' not found in '' (python3.9)
|
|
fail="$fail test_nntplib"
|
|
fail="$fail test_asyncio" # hangs; routinely problematic (e.g. bpo-39101, bpo-41891, bpo-42183)
|
|
fail="$fail test_distutils" # tests a deprecated module, fails with py3-docutils installed
|
|
|
|
# kernel related
|
|
fail="$fail test_fcntl" # wants DNOTIFY, we don't have it
|
|
|
|
case "$CARCH" in
|
|
ppc64le)
|
|
fail="$fail test_buffer"
|
|
;;
|
|
esac
|
|
|
|
make quicktest TESTOPTS="-j${JOBS:-$(nproc)} --exclude $fail"
|
|
}
|
|
|
|
package() {
|
|
make -j1 DESTDIR="$pkgdir" EXTRA_CFLAGS="$CFLAGS" install maninstall
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
# those are provided by python3-tkinter
|
|
rm -r "$pkgdir"/usr/bin/idle* "$pkgdir"/usr/lib/python*/idlelib \
|
|
"$pkgdir"/usr/lib/python*/tkinter
|
|
|
|
ln -s python3 "$pkgdir"/usr/bin/python
|
|
ln -s python3-config "$pkgdir"/usr/bin/python-config
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
|
|
# pyconfig.h is needed runtime so we move it back
|
|
mkdir -p "$pkgdir"/usr/include/python$_basever
|
|
mv "$subpkgdir"/usr/include/python$_basever/pyconfig.h \
|
|
"$pkgdir"/usr/include/python$_basever/
|
|
}
|
|
|
|
tests() {
|
|
pkgdesc="The test modules from the main python package"
|
|
|
|
cd "$pkgdir"/usr/lib/python$_basever
|
|
local i; for i in */test */tests; do
|
|
mkdir -p "$subpkgdir"/usr/lib/python$_basever/"$i"
|
|
mv "$i"/* "$subpkgdir"/usr/lib/python$_basever/"$i"
|
|
rm -rf "$i"
|
|
done
|
|
|
|
amove usr/lib/python$_basever/test
|
|
}
|
|
|
|
gdbm() {
|
|
pkgdesc="Python backend for GNU gdbm"
|
|
|
|
amove usr/lib/python3*/lib-dynload/_gdbm.cpython*
|
|
}
|
|
|
|
sha512sums="
|
|
5edd70c881e083c96199c60471f18f9ebc4c97a2d45dc66f89e16d7c3638d8a5d2cbf2e84b1be3d7f1178ce9f7fa4197884385c1ee3618ff66a538f872f318ed Python-3.11.1.tar.xz
|
|
fe123dd871f7a3fa868c499a957b94f1d815a1e1de964aaff1116c579defd4d9d1e9b7eb418cf114b169b97426ed603bf4b1e61b45ec483df06abe988c6a30ee fix-xattrs-glibc.patch
|
|
ab8eaa2858d5109049b1f9f553198d40e0ef8d78211ad6455f7b491af525bffb16738fed60fc84e960c4889568d25753b9e4a1494834fea48291b33f07000ec2 musl-find_library.patch
|
|
"
|