1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/python3-tkinter/APKBUILD

122 lines
3.5 KiB
Text

# Maintainer:
# Contributor: Sheila Aman <sheila@vulpine.house>
pkgname=python3-tkinter
pkgver=3.9.6
_basever="${pkgver%.*}"
pkgrel=0
pkgdesc="A graphical user interface for the Python"
url="https://wiki.python.org/moin/TkInter"
arch="all"
license="PSF-2.0"
replaces=python3
subpackages="$pkgname-tests::noarch python3-idle:_idle:noarch"
makedepends="expat-dev openssl-dev zlib-dev ncurses-dev bzip2-dev xz-dev
sqlite-dev libffi-dev tcl-dev linux-headers gdbm-dev readline-dev
tk tk-dev python3"
source="https://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.xz
musl-find_library.patch
fix-xattrs-glibc.patch
bpo-43112.patch
"
builddir="$srcdir/Python-$pkgver"
# secfixes:
# 3.6.8-r1:
# - CVE-2019-5010
prepare() {
local _pyapkbuild="$startdir"/../../main/python3/APKBUILD
if [ -e "$_pyapkbuild" ]; then
_pver=$(. "$_pyapkbuild" ; echo $pkgver)
if [ "$_pver" != "$pkgver" ]; then
error "python version mismatch ($_pver). Set pkgver=$_pver"
return 1
fi
fi
default_prepare
# force system libs
rm -r Modules/expat \
Modules/_ctypes/darwin* \
Modules/_ctypes/libffi*
}
build() {
# --enable-optimizations is not enabled because it
# is very, very slow as many tests are ran sequentially
# for profile guided optimizations. additionally it
# seems some of the training tests hang on certain
# e.g. architectures (x86) possibly due to grsec or musl.
# -Os overwrites --enable-optimizations
export CFLAGS="${CFLAGS/-Os/} -fno-semantic-interposition"
export LDFLAGS="$LDFLAGS -fno-semantic-interposition"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-ipv6 \
--enable-loadable-sqlite-extensions \
--enable-shared \
--with-lto \
--with-computed-gotos \
--with-dbmliborder=gdbm:ndbm \
--with-system-expat \
--with-system-ffi
# set thread stack size to 1MB so we don't segfault before we hit
# sys.getrecursionlimit()
make EXTRA_CFLAGS="$CFLAGS -DTHREAD_STACK_SIZE=0x100000"
}
package() {
# we only care about idle, and tkinter
make DESTDIR="$builddir"/tmpinstall sharedinstall libinstall
mkdir -p "$pkgdir"/usr/lib/python$_basever/lib-dynload \
"$pkgdir"/usr/bin
for lib in idlelib tkinter; do
mv "$builddir"/tmpinstall/usr/lib/python$_basever/$lib \
"$pkgdir"/usr/lib/python$_basever/
done
mv "$builddir"/tmpinstall/usr/lib/python$_basever/lib-dynload/_tkinter*.so \
"$pkgdir"/usr/lib/python$_basever/lib-dynload/
mv "$builddir"/tmpinstall/usr/bin/idle* \
"$pkgdir"/usr/bin/
}
_mv_files() {
local i
for i in "$@"; do
mkdir -p "$subpkgdir"/${i%/*}
mv "$pkgdir"/$i "$subpkgdir"/$i
done
}
tests() {
pkgdesc="The test modules from the main python package for tkinter"
replaces="python3-tests"
cd "$pkgdir"
_mv_files usr/lib/python*/*/*_test \
usr/lib/python${pkgver%.*}/tkinter/test
}
_idle() {
pkgdesc="IDE for Python3 using Tkinter"
depends="$pkgname=$pkgver-r$pkgrel"
replaces=python3
cd "$pkgdir"
_mv_files usr/bin
_mv_files usr/lib/python*/idlelib
}
sha512sums="
01c529e3207738d8771caeb5ed6217e10745c21aa39832fe3185e1c87fdb6aedead97ce38dbb11e02d873654028bd8071c3f345c18452769520723284efe9dc1 Python-3.9.6.tar.xz
ab8eaa2858d5109049b1f9f553198d40e0ef8d78211ad6455f7b491af525bffb16738fed60fc84e960c4889568d25753b9e4a1494834fea48291b33f07000ec2 musl-find_library.patch
fe123dd871f7a3fa868c499a957b94f1d815a1e1de964aaff1116c579defd4d9d1e9b7eb418cf114b169b97426ed603bf4b1e61b45ec483df06abe988c6a30ee fix-xattrs-glibc.patch
68a3b0bc270e4f7ec8593945c8c891fab988489f4ba9ee78a0e4351df0699db16dfad7d374f13758c80962b0cea048ff577c0462857cd13919d6cefa1f6a382f bpo-43112.patch
"