# Maintainer: Tobias Kunze # Maintained at https://github.com/rixx/pkgbuilds, feel free to submit patches pkgname=python38 pkgver=3.8.19 pkgrel=1 _pybasever=3.8 _pymajver=3 pkgdesc="Major release 3.8 of the Python high-level programming language" arch=('i686' 'x86_64') license=('PSF-2.0') url="https://www.python.org/" depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib') makedepends=('tk' 'sqlite' 'bluez-libs' 'mpdecimal') optdepends=('tk: for tkinter' 'sqlite') source=( https://www.python.org/ftp/python/${pkgver}/Python-${pkgver}.tar.xz https://www.python.org/ftp/python/${pkgver}/Python-${pkgver}.tar.xz.asc mpdecimal-2.5.1.patch ) sha256sums=('d2807ac69f69b84fd46a0b93bbd02a4fa48d3e70f4b2835ff0f72a2885040076' 'SKIP' '8eb389be1babe03a0231001dc16dd2d69a3ea0fbf6b8c976a580787e7ff1594c') validpgpkeys=('E3FF2839C048B25C084DEBE9B26995E310250568') prepare() { cd "${srcdir}/Python-${pkgver}" patch -p1 -i "${srcdir}/mpdecimal-2.5.1.patch" # FS#23997 sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py # 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/_ctypes/{darwin,libffi}* rm -rf Modules/_decimal/libmpdec } build() { cd "${srcdir}/Python-${pkgver}" CFLAGS=-DOPENSSL_NO_SSL2 ./configure --prefix=/usr \ --enable-shared \ --with-threads \ --with-computed-gotos \ --enable-ipv6 \ --with-system-expat \ --with-dbmliborder=gdbm:ndbm \ --with-system-libmpdec \ --enable-loadable-sqlite-extensions \ --without-ensurepip make } package() { cd "${srcdir}/Python-${pkgver}" # altinstall: /usr/bin/pythonX.Y but not /usr/bin/python or /usr/bin/pythonX make DESTDIR="${pkgdir}" altinstall maninstall # Avoid conflicts with the main 'python' package. rm -f "${pkgdir}/usr/lib/libpython${_pymajver}.so" rm -f "${pkgdir}/usr/share/man/man1/python${_pymajver}.1" # Clean-up reference to build directory sed -i "s|$srcdir/Python-${pkgver}:||" "$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}-${CARCH}-linux-gnu/Makefile" # Add useful scripts FS#46146 install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts} install -m755 Tools/i18n/{msgfmt,pygettext}.py "${pkgdir}"/usr/lib/python${_pybasever}/Tools/i18n/ install -m755 Tools/scripts/{README,*py} "${pkgdir}"/usr/lib/python${_pybasever}/Tools/scripts/ # License install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }