commit: 056c01bddb496c2c8029da5603689d2a63ff3a1a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 26 04:56:07 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep 26 04:56:07 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=056c01bd
dev-python/furo: Bump to 2025.9.25
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/furo/Manifest | 1 +
dev-python/furo/furo-2025.9.25.ebuild | 42 +++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-python/furo/Manifest b/dev-python/furo/Manifest
index 2ef8024d8be7..04094dcbd805 100644
--- a/dev-python/furo/Manifest
+++ b/dev-python/furo/Manifest
@@ -1 +1,2 @@
DIST furo-2025.7.19-py3-none-any.whl 342175 BLAKE2B
6ce62b2749be93dcafbc19695694be51c1be44dd56fa70fba72279260e3216d936e3399e4c53af96b7991053e75612a44cde379b6628e5b6773927cfb671a2df
SHA512
5b602da4922ec14a0d8c8c113e26b6be486079423daecfc984251c445fe6fb1d414b0c25f561a0df793fdac2f34e6e299a866b9606b9a00a0185ad12b5538e3d
+DIST furo-2025.9.25-py3-none-any.whl 340409 BLAKE2B
fadcabddce23f9a07e1d26a569c58a88d2f11ef0dd9c5a3c5ed8445b309a1d4542a4279b14ef641210cf74de81abfc69ad6545c6516c2e89c1de158738131013
SHA512
4326fc515de9eb4d44322c7c2fd7a4a8f5672dd21892708c520cadc7596909ca90a257f636e3bb1a68605575b98a4d48d83d357c97ada265d6a3f9d50746c52f
diff --git a/dev-python/furo/furo-2025.9.25.ebuild
b/dev-python/furo/furo-2025.9.25.ebuild
new file mode 100644
index 000000000000..509364af3771
--- /dev/null
+++ b/dev-python/furo/furo-2025.9.25.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2021-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# sphinx-theme-builder is completely unusable, as it requires pinning
+# to a very-specific nodejs version number, and ofc loves fetching
+# everything from the Internet
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Clean customisable Sphinx documentation theme"
+HOMEPAGE="
+ https://pypi.org/project/furo/
+ https://github.com/pradyunsg/furo/
+"
+SRC_URI="$(pypi_wheel_url)"
+S=${WORKDIR}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390
~sparc ~x86"
+
+RDEPEND="
+ dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ dev-python/sphinx-basic-ng[${PYTHON_USEDEP}]
+"
+
+src_unpack() {
+ if [[ ${PKGBUMPING} == ${PVR} ]]; then
+ unzip "${DISTDIR}/${A}" || die
+ fi
+}
+
+python_compile() {
+ distutils_wheel_install "${BUILD_DIR}/install" \
+ "${DISTDIR}/${P}-py3-none-any.whl"
+}