Upgraded base/libxslt to version 1.1.42 Upgraded base/python3 to 3.9.20 Upgraded base/mdadm to 4.3 Fixed miscellaneous build files to putbstuff inside /usr
60 lines
1.9 KiB
Text
Executable file
60 lines
1.9 KiB
Text
Executable file
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=python3
|
|
version=3.9.20
|
|
build=1sml
|
|
homepage="https://www.python.org/"
|
|
download="https://www.python.org/ftp/python/$version/Python-$version.tar.xz"
|
|
desc="object-oriented interpreted programming language"
|
|
requires="libffi expat file openssl sqlite libpng"
|
|
noautoconfsite=1
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf "Python-$version"
|
|
|
|
tar xf $srcdir/Python-$version.tar.?z*
|
|
cd "Python-$version"
|
|
fixbuilddirpermissions
|
|
|
|
applypatch $srcdir/musl-find_library.patch
|
|
applypatch $srcdir/python3.no-static-library.diff
|
|
}
|
|
|
|
build() {
|
|
LDFLAGS="-lncursesw -lterminfo" \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--bindir=/bin \
|
|
--with-system-expat \
|
|
--with-system-ffi \
|
|
--without-ensurepip \
|
|
--enable-shared \
|
|
--enable-ipv6 \
|
|
--enable-loadable-sqlite-extensions
|
|
|
|
make $MAKEFLAGS
|
|
make -j1 install maninstall DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
for test in sqlite3/test email/test ctypes/test test\
|
|
unittest/test tkinter/test \
|
|
bsddb/test json/tests lib2to3/tests\
|
|
distutils/tests tests ; do
|
|
rm -rf "$pkg"/usr/lib/python3.9/"$test"
|
|
done
|
|
|
|
(
|
|
cd $pkg/bin ; ln -s python3 python
|
|
)
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
e658b0d59b5cfdc591d626e8282b9945759f27ee6fbc8bcb8670737db32ffc11fb832dfed9b0e80188fb5f7f3f39fe6dd6191ab7736376453c9e248321e9b063 Python-3.12.6.tar.xz
|
|
b5fd0afe131c82bbce6ddf887c59eef6945910d6a9a2bc87c0927f4e4a096bf9ca4d25bcb729c40f6ebb8a65fbe8bf7b0b97a7c4a8c9e551240eb4f34b878653 Python-3.9.16.tar.xz
|
|
c828f33edf1704e3149499d6d34e89264cb5cdb2b09ff05561641b359716d7996f0fe928629e09f006b1fd7850fdaf937275919c7fdd83f5efc32707c64d814b Python-3.9.20.tar.xz
|
|
ab8eaa2858d5109049b1f9f553198d40e0ef8d78211ad6455f7b491af525bffb16738fed60fc84e960c4889568d25753b9e4a1494834fea48291b33f07000ec2 musl-find_library.patch
|
|
a579ca09bdcf08c9d39e75df4294dc310be4ed313431b1e7607f1e44ae22da8840f5658c5a7186bc4d7c89e1c7eec4fdfb81f6a8fb17456abe7b25c5c5bdfdf3 python3.no-static-library.diff
|
|
"
|