diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-12-04 10:38:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-12-04 10:40:29 +0100 |
commit | 2f4a2af389fd3f5b3120c5fdc7edb7b51238a6fd (patch) | |
tree | d135749d9a574b34d517b26af451159955071958 /app-doc | |
parent | app-doc/python-docs: Bump to 3.11.11 (diff) | |
download | gentoo-2f4a2af389fd3f5b3120c5fdc7edb7b51238a6fd.tar.gz gentoo-2f4a2af389fd3f5b3120c5fdc7edb7b51238a6fd.tar.bz2 gentoo-2f4a2af389fd3f5b3120c5fdc7edb7b51238a6fd.zip |
app-doc/python-docs: Bump to 3.9.21
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/python-docs/Manifest | 1 | ||||
-rw-r--r-- | app-doc/python-docs/python-docs-3.9.21.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-doc/python-docs/Manifest b/app-doc/python-docs/Manifest index 2a78010c2552..2911d26a817a 100644 --- a/app-doc/python-docs/Manifest +++ b/app-doc/python-docs/Manifest @@ -9,3 +9,4 @@ DIST python-3.13.0-docs-html.tar.bz2 10238095 BLAKE2B e413eb5b2935734c2ea3aacc03 DIST python-3.13.1-docs-html.tar.bz2 10586243 BLAKE2B 8e67d2e3e31c03788cc789fe7df0e9147cd244ab0ee1cd7a04a3ffe12d9a7a903c8aa229de430c992f9673a607b2350c48229e01b924de8165579db6469ec7f8 SHA512 b04b472787b83166104af6c46bc59ce0b873be073503d2673098b81e336511b2a6db0044e5a46e03266aa7279cb01206b8c760e54786648d3544393aa9753425 DIST python-3.8.20-docs-html.tar.bz2 6727651 BLAKE2B ec11857b5bdfb4646a2762353db877a558cfc543563a7a9b0db100f675511c31450d16c30a986d39226a9b16be3ffd132863e396ef05165047ab73bf037bf2a6 SHA512 0a77f0240d6d495a5099d4a95e151f38517730815e6f3d9b82964cf60be95b8bdc960916d317e19bb8e14a9604217cd1fa85703996aec972004a6a93d4ffa6d0 DIST python-3.9.20-docs-html.tar.bz2 6988218 BLAKE2B 0e463d8fa0643a9c01ba52d35c8880b00f5d4b83d778947937ac86e2db4f5af312d6d2b580ceb498db76c0ca61231befaf0fc6d1a17d8b1b84981ddea16bcebb SHA512 524ebdc8b082ba50691fb8eadf6bf17374a1d9d6e61a6b49efecf597bbd2c7b50bca908fb94c5ca9350c06895330d88086d0d1ee9ccb7306362b1cd37282a53d +DIST python-3.9.21-docs-html.tar.bz2 6989677 BLAKE2B f23c4958fbfc2ec30b49c04530ae0d6e8bc5ca64dd99ecd61e1e7c841470197a1cce6050f47248b1f58a68ffdec24113f2d24514abfc788236fa3775a6e76306 SHA512 c033e851163dbaff410cbae947456878f6a19c02dc674f9fdce7d275b24508f003d85859fad8025769dd4ef7d7438170ec430d624afc630ce09954c06c4c4c66 diff --git a/app-doc/python-docs/python-docs-3.9.21.ebuild b/app-doc/python-docs/python-docs-3.9.21.ebuild new file mode 100644 index 000000000000..59f6fa8d85d8 --- /dev/null +++ b/app-doc/python-docs/python-docs-3.9.21.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="HTML documentation for Python" +HOMEPAGE="https://www.python.org/doc/" +SRC_URI="https://www.python.org/ftp/python/doc/${PV}/python-${PV}-docs-html.tar.bz2" +S="${WORKDIR}/python-${PV}-docs-html" + +LICENSE="PSF-2" +SLOT="$(ver_cut 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +src_install() { + rm -r _sources || die + docinto html + dodoc -r . + + newenvd - 60python-docs-${SLOT} <<-EOF + PYTHONDOCS_${SLOT//./_}="${EPREFIX}/usr/share/doc/${PF}/html/library" + EOF +} |