From b97202d0d95b09cd1fa9be8ccc950c8b271de4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 8 Apr 2026 03:40:47 +0200 Subject: [PATCH] app-doc/python-docs: Bump to 3.14.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- app-doc/python-docs/Manifest | 1 + app-doc/python-docs/python-docs-3.14.4.ebuild | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 app-doc/python-docs/python-docs-3.14.4.ebuild diff --git a/app-doc/python-docs/Manifest b/app-doc/python-docs/Manifest index 8477297771f3b..8626fa35470c1 100644 --- a/app-doc/python-docs/Manifest +++ b/app-doc/python-docs/Manifest @@ -10,5 +10,6 @@ DIST python-3.13.12-docs-html.tar.bz2 10439375 BLAKE2B f7d199a63cc5e4e1bef545f72 DIST python-3.13.13-docs-html.tar.bz2 10439311 BLAKE2B 96e5baa94a282973529c4428efa08e8355f3cece46a67902b6b606491338f92f730eae5bb350f2f3cd702ad5d365cf1cb9c2273de8bffc72642afd27b679a0a5 SHA512 12326cbe3a238cd529df37f47a4bab9beeb2d0663df907bc8572954cd4c18e76b7fac6b10999866698c70df34836fda9a0e6c0df57591dd2c6b6b6f9cfe10aaa DIST python-3.14.2-docs-html.tar.bz2 10777500 BLAKE2B 2082328f9a19a6acac3bd1f49b47d825b8ccb576efb6d73aecd578b3f45cf9a915d6993f1f10bc507f0f8ae13f6cdf542c857916e331cd05c3477801dcd84849 SHA512 b76c8fe18168b603e71482b486fd02f378c062cc9d1d9c71677c7fa825885cdfc6e7576a70ef6c623beed75e0b3ea98d8c6685346215015de5fe71214a7b41ca DIST python-3.14.3-docs-html.tar.bz2 10863434 BLAKE2B 2a18e184124186b589b2deee12a2ef9ab0271bb88eaa13fa2f7d2f4d29db2c48dfaa413f7c4c73e4f004c4eb119d2e396b2cafdc9860ce86981c053f48777617 SHA512 b2acf4985eed1e795e5afe59597c00eef9f7dbdd1c2c54ff584e87b6b11154a3156b7845466fd05cc7f214a61475b8b268ea3363f29dcc889f82f0ccb2f0143a +DIST python-3.14.4-docs-html.tar.bz2 10964901 BLAKE2B afa7d080995a21fd4448d7c50dde7a1223901032b2f1543a69f3cb5da27aa33d6e6136b31527528316cda09117be59a858ffc264469a37a5a44a8b92261e56ca SHA512 0f304a7b80f217007b7436d6144178f2c91cb28b8ef984fdc80792d84795bfcd3be4a44b37e96f846e784a98e049337e6a00279db65d8ba29e4ba0b492f6a4fc DIST python-3.8.20-docs-html.tar.bz2 6727651 BLAKE2B ec11857b5bdfb4646a2762353db877a558cfc543563a7a9b0db100f675511c31450d16c30a986d39226a9b16be3ffd132863e396ef05165047ab73bf037bf2a6 SHA512 0a77f0240d6d495a5099d4a95e151f38517730815e6f3d9b82964cf60be95b8bdc960916d317e19bb8e14a9604217cd1fa85703996aec972004a6a93d4ffa6d0 DIST python-3.9.25-docs-html.tar.bz2 7017902 BLAKE2B 8ce019aad3c3d15c56536a46e4a26c27889a1a92cfdd6fd49be4883d125e70db6467ba652057253b23de054503d12f7b8c6fd948f4f9e462d70a398948cc4698 SHA512 1af06c9cafe0b11e0e9ee0bce252e5c356a5508f11932f5a29a84412d4a5d9e71d79cba623bf8086bfbcddaa90fc0116d01b9d427711c4a784bb5feeb8c3a9de diff --git a/app-doc/python-docs/python-docs-3.14.4.ebuild b/app-doc/python-docs/python-docs-3.14.4.ebuild new file mode 100644 index 0000000000000..0affc199615ad --- /dev/null +++ b/app-doc/python-docs/python-docs-3.14.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P=python-${PV}-docs-html +DESCRIPTION="HTML documentation for Python" +HOMEPAGE="https://www.python.org/doc/" +SRC_URI="https://www.python.org/ftp/python/doc/${PV}/${MY_P}.tar.bz2" +S=${WORKDIR}/${MY_P} + +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 +}