dev-python/furo: Bump to 2025.12.19

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-12-20 08:16:42 +01:00
parent 204f264f96
commit 0fd4ee85cf
2 changed files with 45 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST furo-2025.12.19-py3-none-any.whl 339262 BLAKE2B 95764bd44c996f75d9cb0dff1ef4e1f46ad8afd3718b575347fca6c7a53594e46eea403621b635c2bf34ca93f63c64f0eb45aa6cc76c3954cbc9c129f58f8002 SHA512 72a8bf1249c78adf8a1854e0769bdc37bf95c7ae4dadc9fe8b3bb77879448847dd52c4052f8634d63c93e5078f1746c6dc163a8cb5327424aa81a8f34046c554
DIST furo-2025.9.25-py3-none-any.whl 340409 BLAKE2B fadcabddce23f9a07e1d26a569c58a88d2f11ef0dd9c5a3c5ed8445b309a1d4542a4279b14ef641210cf74de81abfc69ad6545c6516c2e89c1de158738131013 SHA512 4326fc515de9eb4d44322c7c2fd7a4a8f5672dd21892708c520cadc7596909ca90a257f636e3bb1a68605575b98a4d48d83d357c97ada265d6a3f9d50746c52f

View File

@@ -0,0 +1,44 @@
# 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}]
"
distutils_enable_tests import-check
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"
}