update to 12.4-systemd: python-3.13.7

This commit is contained in:
2025-12-21 22:58:13 -05:00
parent 46145fe3a9
commit 2a9969ee82

View File

@@ -1,5 +1,6 @@
pkgname=python pkgname=python
pkgver=3.13.2 pkgver=3.13.7
_pybasever=${pkgver%.*}
pkgdesc="The Python programming language" pkgdesc="The Python programming language"
license=('PSF-2.0') license=('PSF-2.0')
homepage="https://www.python.org/" homepage="https://www.python.org/"
@@ -9,8 +10,8 @@ sources=("Python-${pkgver}.tar.xz"
urls=("https://www.python.org/ftp/${pkgname}/${pkgver}/${sources[0]}" urls=("https://www.python.org/ftp/${pkgname}/${pkgver}/${sources[0]}"
"https://www.python.org/ftp/${pkgname}/doc/${pkgver}/${sources[1]}" "https://www.python.org/ftp/${pkgname}/doc/${pkgver}/${sources[1]}"
) )
md5sums=("4c2d9202ab4db02c9d0999b14655dfe5" md5sums=("256cdb3bbf45cdce7499e52ba6c36ea3"
"d6aede88f480a018d26b3206f21654ae" "b84c0d81b2758398bb7f5b7411d3d908"
) )
src_prepare() { src_prepare() {
@@ -48,7 +49,7 @@ src_install() {
ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1 ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
# doc # doc
install -v -dm755 "${pkgdir}/usr/share/doc/python-3.12.5/html" install -v -dm755 "${pkgdir}/usr/share/doc/python-${pkgver}/html"
cp -R --no-preserve=mode python-${pkgver}-docs-html/* \ cp -R --no-preserve=mode python-${pkgver}-docs-html/* \
"${pkgdir}/usr/share/doc/python-3.12.5/html" "${pkgdir}/usr/share/doc/python-${pkgver}/html"
} }