blob: 8a4dcf890086ecdc3c9980b50f3183e29a8a6e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# 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.12
_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 libressl-dev zlib-dev ncurses-dev bzip2-dev
gdbm-dev sqlite-dev libffi-dev readline-dev linux-headers paxmark
tk tk-dev python2"
source="http://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.xz"
builddir="$srcdir/Python-$pkgver"
prepare() {
local _pyapkbuild="$startdir"/../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 || return 1
cd "$builddir"
# Make sure we use system libs
rm -rf Modules/expat Modules/_ctypes/libffi* Modules/zlib || return 1
}
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 \
|| return 1
make || return 1
}
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 || return 1
for lib in idlelib lib-tk; do
mv "$builddir"/tmpinstall/usr/lib/python${_verbase}/$lib \
"$pkgdir"/usr/lib/python${_verbase}/ || return 1
done
mv "$builddir"/tmpinstall/usr/lib/python${_verbase}/lib-dynload/_tkinter.so \
"$pkgdir"/usr/lib/python${_verbase}/lib-dynload/ || return 1
mv "$builddir"/tmpinstall/usr/bin/idle \
"$pkgdir"/usr/bin/idle${_verbase} || return 1
}
_mv_files() {
local i
for i in "$@"; do
mkdir -p "$subpkgdir"/${i%/*}
mv "$pkgdir"/$i "$subpkgdir"/$i || return 1
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 || return 1
}
_idle() {
pkgdesc="IDE for Python2 using Tkinter"
depends="$pkgname=$pkgver-r$pkgrel"
cd "$pkgdir"
_mv_files usr/bin
}
md5sums="57dffcee9cee8bb2ab5f82af1d8e9a69 Python-2.7.12.tar.xz"
sha256sums="d7837121dd5652a05fef807c361909d255d173280c4e1a4ded94d73d80a1f978 Python-2.7.12.tar.xz"
sha512sums="6ddbbce47cc49597433d98ca05c2f62f07ed1070807b645602a8e9e9b996adc6fa66fa20a33cd7d23d4e7e925e25071d7301d288149fbe4e8c5f06d5438dda1f Python-2.7.12.tar.xz"
|