summaryrefslogtreecommitdiff
path: root/dev-python/furo
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-09-26 07:04:23 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-09-26 07:04:23 +0000
commitb6765e207201ea66bc0936130d07e72b466b7ff3 (patch)
tree42bb7b26fd67a84d64dd189fcbd091b42eb814b1 /dev-python/furo
parent3a504ec9094022d6a46d49465f882e3f46868175 (diff)
downloadbaldeagleos-repo-b6765e207201ea66bc0936130d07e72b466b7ff3.tar.gz
baldeagleos-repo-b6765e207201ea66bc0936130d07e72b466b7ff3.tar.xz
baldeagleos-repo-b6765e207201ea66bc0936130d07e72b466b7ff3.zip
Adding metadata
Diffstat (limited to 'dev-python/furo')
-rw-r--r--dev-python/furo/Manifest1
-rw-r--r--dev-python/furo/furo-2025.9.25.ebuild42
2 files changed, 43 insertions, 0 deletions
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"
+}