mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
120 lines
3.1 KiB
Text
120 lines
3.1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
|
|
# This package must be synchronized with python2. It is splitted to avoid
|
|
# a cyclic dependency: python -> tk -> libx11 -> libxcb -> xcb-proto -> python
|
|
|
|
pkgname=python2-tkinter
|
|
pkgver=2.7.17
|
|
_verbase=${pkgver%.*}
|
|
pkgrel=0
|
|
pkgdesc="A graphical user interface for the Python"
|
|
url="https://wiki.python.org/moin/TkInter"
|
|
arch="all"
|
|
license="custom"
|
|
subpackages="$pkgname-tests python2-idle:_idle:noarch"
|
|
depends=""
|
|
makedepends="expat-dev openssl-dev zlib-dev ncurses-dev bzip2-dev
|
|
gdbm-dev sqlite-dev libffi-dev readline-dev linux-headers paxmark
|
|
tk tk-dev python2"
|
|
replaces="python2"
|
|
replaces_priority=1
|
|
source="https://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.xz
|
|
musl-find_library.patch
|
|
unchecked-ioctl.patch
|
|
"
|
|
builddir="$srcdir/Python-$pkgver"
|
|
|
|
# secfixes:
|
|
# 2.7.17-r0:
|
|
# - CVE-2019-15903
|
|
# - CVE-2019-16056
|
|
# - CVE-2019-16935
|
|
# - CVE-2019-9636
|
|
# - CVE-2019-9948
|
|
# 2.7.16-r0:
|
|
# - CVE-2018-14647
|
|
# 2.7.15-r3:
|
|
# - CVE-2019-5010
|
|
# 2.7.15-r0:
|
|
# - CVE-2018-1060
|
|
# - CVE-2018-1061
|
|
|
|
prepare() {
|
|
local _pyapkbuild="$startdir"/../main/python2/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
|
|
cd "$builddir"
|
|
|
|
# Make sure we use system libs
|
|
rm -rf Modules/expat Modules/_ctypes/libffi* Modules/zlib
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
export OPT="$CFLAGS"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--with-threads \
|
|
--enable-ipv6 \
|
|
--with-system-ffi \
|
|
--with-system-expat \
|
|
--with-system-zlib \
|
|
--enable-unicode=ucs4
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
# we only care about idle, and tkinter
|
|
make DESTDIR="$builddir"/tmpinstall sharedinstall libinstall \
|
|
|| return 1
|
|
|
|
mkdir -p "$pkgdir"/usr/lib/python${_verbase}/lib-dynload \
|
|
"$pkgdir"/usr/bin
|
|
|
|
for lib in idlelib lib-tk; do
|
|
mv "$builddir"/tmpinstall/usr/lib/python${_verbase}/$lib \
|
|
"$pkgdir"/usr/lib/python${_verbase}/
|
|
done
|
|
|
|
mv "$builddir"/tmpinstall/usr/lib/python${_verbase}/lib-dynload/_tkinter.so \
|
|
"$pkgdir"/usr/lib/python${_verbase}/lib-dynload/
|
|
|
|
mv "$builddir"/tmpinstall/usr/bin/idle \
|
|
"$pkgdir"/usr/bin/idle${_verbase}
|
|
}
|
|
|
|
_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="python-tests python2-tests"
|
|
cd "$pkgdir"
|
|
_mv_files usr/lib/python*/*/test
|
|
}
|
|
|
|
_idle() {
|
|
pkgdesc="IDE for Python2 using Tkinter"
|
|
depends="$pkgname=$pkgver-r$pkgrel"
|
|
cd "$pkgdir"
|
|
_mv_files usr/bin
|
|
}
|
|
|
|
sha512sums="2dc19a0b0d818c71429dae94783e58b2aac0fa31f5faa1e840cac06245a59932ecc4658d913515736601bcf70a78c9ec60367aed75f4567d1e41ff3bb104da9a Python-2.7.17.tar.xz
|
|
ab8eaa2858d5109049b1f9f553198d40e0ef8d78211ad6455f7b491af525bffb16738fed60fc84e960c4889568d25753b9e4a1494834fea48291b33f07000ec2 musl-find_library.patch
|
|
5a8e013a4132d71c4360771f130d27b37275ae59330cf9a75378dc8a11236017f540eb224f2a148984e82ca3fb6b29129375b1080ba05b81044faa717520ab82 unchecked-ioctl.patch"
|