From 115dcc7054f5934a2c8e26fd8a8eed5f3e29e9ce Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 28 Mar 2023 09:49:11 +0100 Subject: gentoo auto-resync : 28:03:2023 - 09:49:10 --- dev-python/furo/Manifest | 2 ++ dev-python/furo/furo-2023.3.27.ebuild | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 dev-python/furo/furo-2023.3.27.ebuild (limited to 'dev-python/furo') diff --git a/dev-python/furo/Manifest b/dev-python/furo/Manifest index 9ac6eaff4dc7..3a17a7f92644 100644 --- a/dev-python/furo/Manifest +++ b/dev-python/furo/Manifest @@ -1,5 +1,7 @@ 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 +DIST furo-2023.3.27-py3-none-any.whl 327605 BLAKE2B 1368aabdbd497acf181c5b059da6d4bd3ae11e66bb81ec097358e051f7c64b7cffa537d5855ed68293398b26bb7df4d35a183c3eea00d4790b786b0f4bdbc6eb SHA512 7d321f59064d64c205c9c1a207fd62685c22102bc1546f0e063be9565458c6eed887e9f52851160e2658401ac8ed791572183e3c067c2e85c9c1811411e051f6 EBUILD furo-2022.12.7.ebuild 922 BLAKE2B 6b0532f93ce16159f688599a964cd11999f3c56edbb40f10c3d527dafd2c2740af10ff3688a15bf4c62a3e19bfbe748fa06ba0f64a02dc0180aa3b62301b1e93 SHA512 28f0de446cc5e84574513a05577f87559617e11ad94fd8df6a34bdb92496949d2646bcd28be51a8221f74132b6ba212d5683e4b1ce397e0e2d53f5e0e8f7bcde EBUILD furo-2023.3.23.ebuild 930 BLAKE2B db6c6d2f3fdd3258a7703d1e044b708b207d5e3daf7e591bcfa7983e45f94fdfc7ef4693330bc44c7d5e0e4ac1aa7d251d0acb4b5f5e21759ca70303614fc4ab SHA512 364a231ffbb7ffe54d5d010ad9e311842b178accfc06dd1f6db67261103ee08ab83cf85a643a28143457dd6c1dd0e5dab89d8f6f37b704974a698b39f4acbc9a +EBUILD furo-2023.3.27.ebuild 930 BLAKE2B db6c6d2f3fdd3258a7703d1e044b708b207d5e3daf7e591bcfa7983e45f94fdfc7ef4693330bc44c7d5e0e4ac1aa7d251d0acb4b5f5e21759ca70303614fc4ab SHA512 364a231ffbb7ffe54d5d010ad9e311842b178accfc06dd1f6db67261103ee08ab83cf85a643a28143457dd6c1dd0e5dab89d8f6f37b704974a698b39f4acbc9a MISC metadata.xml 436 BLAKE2B 81bb1424cf305f98c15a96afc454de34c0965277a5829c1c299ee6da4c86882aa1d47d45b71cfd3413b82c68b521a0f2b4bcd37c47988a6c171f55ef97f930ef SHA512 63d65b518096cba951f2bdac8b3ff0a602ac23fee7679ba808f27b01644cc612a7223942ba01f26d4c0931f16ccf9be1832be5da650835c6f43396e2076d1d30 diff --git a/dev-python/furo/furo-2023.3.27.ebuild b/dev-python/furo/furo-2023.3.27.ebuild new file mode 100644 index 000000000000..23c3292f31c1 --- /dev/null +++ b/dev-python/furo/furo-2023.3.27.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" +} -- cgit v1.2.3