diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-03-24 06:10:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-24 06:21:17 +0100 |
commit | 96a83cf6f36926d16f1a5dc3bf5785bc88813af6 (patch) | |
tree | 0c8f6107176716a10674e0f003531267d1eed208 /dev-python/furo | |
parent | dev-python/furo: Use pypi.eclass (diff) | |
download | gentoo-96a83cf6f36926d16f1a5dc3bf5785bc88813af6.tar.gz gentoo-96a83cf6f36926d16f1a5dc3bf5785bc88813af6.tar.bz2 gentoo-96a83cf6f36926d16f1a5dc3bf5785bc88813af6.zip |
dev-python/furo: Bump to 2023.3.23
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-2023.3.23.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/furo/Manifest b/dev-python/furo/Manifest index 921b1fb71e6c..7e126f4dd57f 100644 --- a/dev-python/furo/Manifest +++ b/dev-python/furo/Manifest @@ -1 +1,2 @@ DIST furo-2022.12.7-py3-none-any.whl 328721 BLAKE2B 2a2d215db9d63946da85579ccc5a71f87e3ecbca0fda180ed44b7e79e77744b47d2c17d4d5a256d71e02d5e7ac5165f3648f38c08567b7c871abf8d7edf2ce26 SHA512 ce44dd78db216875538722a56041ce7634bfeebbc6add6b52cdecd86d0f99f5f9c8aa0d275a8439a269f75345ae716a32b90701d031dfd3047df3f1db33e150e +DIST furo-2023.3.23-py3-none-any.whl 329348 BLAKE2B 647d28d124be4bc2f9cc748383941127fab88517f880c9e75f18a3b1ef2a1f893576c410a95c1162227c6e35b73018c0f7837a4d625d9038121364ed01a3b0ad SHA512 f664c17f34ca7defe4f1d2ceb976b1e35f125588a3597a1c8542a92a45c1e5453d8470df4259a74e873017983e469daa74a711d08cd6ed4279ae623ea7cfc377 diff --git a/dev-python/furo/furo-2023.3.23.ebuild b/dev-python/furo/furo-2023.3.23.ebuild new file mode 100644 index 000000000000..23c3292f31c1 --- /dev/null +++ b/dev-python/furo/furo-2023.3.23.ebuild @@ -0,0 +1,36 @@ +# Copyright 2021-2023 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_{9..11} ) + +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" +} |