diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-01-30 04:41:28 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-01-30 05:06:48 +0100 |
commit | b145e7bdd62b45fe0d3c3a467d897f8ecbc587f6 (patch) | |
tree | 7fd1bf60e4eb453b2cff8b3694126bfdf27e2b35 /dev-python/furo | |
parent | mail-filter/rspamd: Stabilize 3.7.5 amd64, #921014 (diff) | |
download | gentoo-b145e7bdd62b45fe0d3c3a467d897f8ecbc587f6.tar.gz gentoo-b145e7bdd62b45fe0d3c3a467d897f8ecbc587f6.tar.bz2 gentoo-b145e7bdd62b45fe0d3c3a467d897f8ecbc587f6.zip |
dev-python/furo: Bump to 2024.1.29
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/furo')
-rw-r--r-- | dev-python/furo/Manifest | 1 | ||||
-rw-r--r-- | dev-python/furo/furo-2024.1.29.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/furo/Manifest b/dev-python/furo/Manifest index 3cf7370ce3d9..f553b5a5024a 100644 --- a/dev-python/furo/Manifest +++ b/dev-python/furo/Manifest @@ -1 +1,2 @@ DIST furo-2023.9.10-py3-none-any.whl 324431 BLAKE2B 3a513e00c7a5856c19fda8e74c6a66fd89ea53ae5a8035969bc84b3827ec7f8b4c48bf964e3fd9d663f780b4621bdff31cc1bee2ffe0bc8e35700a41e4eb1bcc SHA512 67aba2f451beba1d2ecdcac8cd38db8a5b5952ccdd5d715d8b59ca68106214a8d9b8e0efe3adad6ee1ad84459904053b8fa038d8a334073b4879bd51934c28cf +DIST furo-2024.1.29-py3-none-any.whl 325212 BLAKE2B 7dec8d515bb2ac6741d875dac57048e066f6e9602e7c529bfcf5b01a8b47d6ff38d6212d5a5abf8dfbe42d7667481a3a14c20f39367d65d8968e429e6c5fbbea SHA512 375fff9ad283732c0e242da0233e6b3e5bc570c514fa1a5899232599ac1a73c3198071e74635ab115ba28ea9d97156e1c28ae40c5e203cc21cf639b183201893 diff --git a/dev-python/furo/furo-2024.1.29.ebuild b/dev-python/furo/furo-2024.1.29.ebuild new file mode 100644 index 000000000000..1cf4206b8d7e --- /dev/null +++ b/dev-python/furo/furo-2024.1.29.ebuild @@ -0,0 +1,36 @@ +# Copyright 2021-2024 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=( pypy3 python3_{10..12} ) + +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 ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/beautifulsoup4[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx-basic-ng[${PYTHON_USEDEP}] +" + +python_compile() { + distutils_wheel_install "${BUILD_DIR}/install" \ + "${DISTDIR}/${P}-py3-none-any.whl" +} |