blob: 374085b8e9cada78435f609a7c512e5ed25e838e (
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
102
103
104
105
106
107
108
109
|
# Maintainer: Blair Bonnett <blair.bonnett@gmail.com>
# Based off python313 PKGBUILD by Tobias Kunze <r@rixx.de>
pkgname=python313-freethreaded
pkgver=3.13.1
pkgrel=1
_pyver=3.13.1
_pybasever=3.13
_pymajver=3
pkgdesc="Major release 3.13 of the Python high-level programming language (freethreading version without GIL)"
arch=('x86_64')
license=('PSF-2.0')
url="https://www.python.org/"
depends=(
'bzip2'
'expat'
'gdbm'
'libffi'
'libnsl'
'libxcrypt'
'openssl'
'zlib'
)
makedepends=(
'bluez-libs'
'gdb'
'mpdecimal'
'sqlite'
'tk'
)
optdepends=(
'mpdecimal: for decimal'
'sqlite'
'tk: for tkinter'
'xz: for lzma'
)
options=(!emptydirs)
source=(
"https://www.python.org/ftp/python/${_pyver}/Python-${pkgver}.tar.xz"{,.asc}
)
md5sums=(
'80c16badb94ffe235280d4d9a099b8bc'
'SKIP'
)
sha256sums=(
'9cf9427bee9e2242e3877dd0f6b641c1853ca461f39d6503ce260a59c80bf0d9'
'SKIP'
)
validpgpkeys=(
'7169605F62C751356D054A26A821E680E5FA6305' # Thomas Wouters (3.13 release manager) <thomas@python.org>
)
prepare() {
cd "${srcdir}/Python-${pkgver}"
# Ensure that we are using the system copy of various libraries (expat, zlib and libffi),
# rather than copies shipped in the tarball
rm -rf Modules/expat
rm -rf Modules/zlib
rm -rf Modules/_ctypes/{darwin,libffi}*
rm -rf Modules/_decimal/libmpdec
}
build() {
cd "${srcdir}/Python-${pkgver}"
CFLAGS="${CFLAGS} -fno-semantic-interposition -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"
./configure ax_cv_c_float_words_bigendian=no \
--prefix=/usr \
--enable-shared \
--with-computed-gotos \
--with-lto \
--disable-gil \
--enable-ipv6 \
--with-system-expat \
--with-dbmliborder=gdbm:ndbm \
--with-system-libmpdec \
--enable-loadable-sqlite-extensions \
--without-ensurepip \
--with-tzpath=/usr/share/zoneinfo
make EXTRA_CFLAGS="$CFLAGS"
}
package() {
cd "${srcdir}/Python-${pkgver}"
# altinstall: /usr/bin/pythonX.Y but not /usr/bin/python or /usr/bin/pythonX
make DESTDIR="${pkgdir}" altinstall
# Split tests
rm -r "$pkgdir"/usr/lib/python*/{test,idlelib/idle_test}
# Avoid conflicts with the main 'python' package.
rm -f "${pkgdir}/usr/lib/libpython${_pymajver}.so"
# Avoid conflicts with the python313 package.
mv "${pkgdir}/usr/bin/idle${_pybasever}" "${pkgdir}/usr/bin/idle${_pybasever}t"
mv "${pkgdir}/usr/bin/pydoc${_pybasever}" "${pkgdir}/usr/bin/pydoc${_pybasever}t"
rm "${pkgdir}/usr/bin/python${_pybasever}"
rm -r "${pkgdir}/usr/share/man"
# Clean-up reference to build directory
sed -i "s|$srcdir/Python-${pkgver}:||" "$pkgdir/usr/lib/python${_pybasever}t/config-${_pybasever}t-${CARCH}-linux-gnu/Makefile"
# License
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|