Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/furo/
Date: Sat, 01 Oct 2022 09:26:49
Message-Id: 1664616392.b49855f32cc68d27aa08578e7b3636ba054ea476.arthurzam@gentoo
1 commit: b49855f32cc68d27aa08578e7b3636ba054ea476
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 08:23:14 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 09:26:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b49855f3
7
8 dev-python/furo: add 2022.9.29
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/furo/Manifest | 1 +
13 dev-python/furo/furo-2022.9.29.ebuild | 38 +++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-python/furo/Manifest b/dev-python/furo/Manifest
17 index 48dd62bdb72f..0eb48662e643 100644
18 --- a/dev-python/furo/Manifest
19 +++ b/dev-python/furo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST furo-2022.6.21-py3-none-any.whl 323874 BLAKE2B aac38e9aaa8d4fc6fdb00a7da9df8781b18229146970a005077075b0049b6493f280377ed735e9dd5425fdce0c43f8cad5b149957018d9a084ad83c5e5fcabeb SHA512 096c9fd0a18c8c4263607a77703412fcc5d7334b08bb6c448e5369b93572f2176f7fbe3fc7eb0b8c72f09d00eeca379debfec2f6565305d2f5e1bd0518af1558
22 DIST furo-2022.9.15-py3-none-any.whl 326084 BLAKE2B 2c0fe323fb35ddc3660dd7d0b2d70bb4ab7dcfabfab894faf93651bf3b34cbd53028bde7f2eb5f9c153db5e3a460fa58df0d69c05c2e059b35dfbeee7ec00adc SHA512 a20c44d0265bd341ff08db5aa158c440b6f0b74d3fb3ef41385da73db2f75373e23f7635b829b9cee037a7f9a4987a09510cbbb328c35abe09d789061e408b2a
23 +DIST furo-2022.9.29-py3-none-any.whl 326787 BLAKE2B ef558aae586d2f189a0ec24e4dc5b8422167829ed8a917b276dcdac4ce7bcc12bdf9855b8fe6a75767b094e4e35b30b2eacd227b5d585de32845f2299f3acab1 SHA512 4ab394a006011ced6d74f696a49973628220719d1f8c1e5ae49b2a0c62dd3cc961f7a18d654bffcf385b07b6bc556930de5a5741c1e0dc9d7b6b6f4cc2cfc885
24
25 diff --git a/dev-python/furo/furo-2022.9.29.ebuild b/dev-python/furo/furo-2022.9.29.ebuild
26 new file mode 100644
27 index 000000000000..154f116846f9
28 --- /dev/null
29 +++ b/dev-python/furo/furo-2022.9.29.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 2021-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +# sphinx-theme-builder is completely unusable, as it requires pinning
37 +# to a very-specific nodejs version number, and ofc loves fetching
38 +# everything from the Internet
39 +
40 +DISTUTILS_USE_PEP517=standalone
41 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
42 +
43 +inherit distutils-r1
44 +
45 +DESCRIPTION="Clean customisable Sphinx documentation theme"
46 +HOMEPAGE="
47 + https://pypi.org/project/furo/
48 + https://github.com/pradyunsg/furo/
49 +"
50 +SRC_URI="
51 + https://files.pythonhosted.org/packages/py3/${PN::1}/${PN}/${P}-py3-none-any.whl
52 +"
53 +S=${WORKDIR}
54 +
55 +LICENSE="MIT"
56 +SLOT="0"
57 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
58 +
59 +RDEPEND="
60 + dev-python/beautifulsoup4[${PYTHON_USEDEP}]
61 + dev-python/sphinx[${PYTHON_USEDEP}]
62 + dev-python/sphinx-basic-ng[${PYTHON_USEDEP}]
63 +"
64 +
65 +python_compile() {
66 + distutils_wheel_install "${BUILD_DIR}/install" \
67 + "${DISTDIR}/${P}-py3-none-any.whl"
68 +}