aboutsummaryrefslogtreecommitdiffstats
path: root/main/python/APKBUILD
blob: a04e8d2e57254e3c0a82f43a631001a6bee5c84a (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=python
pkgver=2.6.5
pkgrel=6
pkgdesc="A high-level scripting language"
url="http://www.python.org"
arch="x86 x86_64"
license="custom"
subpackages="$pkgname-dev $pkgname-doc $pkgname-tests
	py-gdbm:gdbm
	"
depends=
makedepends="expat-dev openssl-dev zlib-dev ncurses-dev bzip2-dev !gettext
	gdbm-dev sqlite-dev libffi-dev"
source="http://www.$pkgname.org/ftp/$pkgname/$pkgver/Python-$pkgver.tar.bz2
	$pkgname-2.6-internal-expat.patch
	"

prepare() {
	cd "$srcdir/Python-$pkgver"
	for i in ../*.patch; do
		msg "Apply $i"
		patch -p1 < $i || return 1
	done
}

build() {
	cd "$srcdir/Python-$pkgver"
	./configure --prefix=/usr \
		--enable-shared \
		--with-threads \
		--with-system-ffi \
		--enable-unicode=ucs4 \
		|| return 1

	make || return 1
}

package() {
	cd "$srcdir/Python-$pkgver"
	make -j1 DESTDIR="$pkgdir" install
	install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

_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"
	cd "$pkgdir"
	_mv_files $(find usr/lib -type d -name 'test*')
}

gdbm() {
	pkgdesc="GNU dbm database support for Python"
	cd "$pkgdir"
	_mv_files $(find usr/lib -name '*gdbm*')
}

md5sums="6bef0417e71a1a1737ccf5750420fdb3  Python-2.6.5.tar.bz2
9d64df5e0a6aed149a792c7bff16e3d9  python-2.6-internal-expat.patch"