Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-doxylink/
Date: Sat, 07 May 2022 09:35:12
Message-Id: 1651916028.2b5df21f8cc00f758df07dd57bb7d9fe3ec339ec.mgorny@gentoo
1 commit: 2b5df21f8cc00f758df07dd57bb7d9fe3ec339ec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 08:09:56 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 09:33:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5df21f
7
8 dev-python/sphinxcontrib-doxylink: Bump to 1.12.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinxcontrib-doxylink/Manifest | 1 +
13 .../sphinxcontrib-doxylink-1.12.0.ebuild | 47 ++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-doxylink/Manifest b/dev-python/sphinxcontrib-doxylink/Manifest
17 index 51153276219e..3f56ffdee445 100644
18 --- a/dev-python/sphinxcontrib-doxylink/Manifest
19 +++ b/dev-python/sphinxcontrib-doxylink/Manifest
20 @@ -1,2 +1,3 @@
21 DIST sphinxcontrib-doxylink-1.11.1.gh.tar.gz 22087 BLAKE2B 2f59c2cf802f428459eb13dc095dea2422ee37f9fc93ec8ceb4e6d72bbb8d0381651ef348de77aa5362857ebae7ff9a92be0c868575e43cf4e6c3b271b05147a SHA512 5c86771aa064e3e9ffeb04223ff8cb90fe8c6b8ad8749f250a8a866b4204bece6b82388cda3ccefc83901966e97b3093d3d47bc60fbd8c9f84a5b162fd4d8c02
22 DIST sphinxcontrib-doxylink-1.11.2.gh.tar.gz 22157 BLAKE2B d2c26675b89cdc9b22b1fae09adb935c1d3491b568d3c1dfcfe7c1dbc378ecbacbe1d202f1a77a90afaf9b7bcc9a1320b4cf3e6859bf631be42b636fd90810ea SHA512 6d470a3bddadf1e56b1ab77e366d5636de0d6ef84bad0fbdf57f903a7493f4fbc249ade7e2f41bd1bb24e39a9396b8a440886cb7766832a108caecb533980f5a
23 +DIST sphinxcontrib-doxylink-1.12.0.gh.tar.gz 22589 BLAKE2B 322fdd0968147abc480a88247ee724daa8c4da4519ff97280af1d81e9f36d4636aca358f5bb1ba08e5ff0f138cf8446194d1fe819a9d18a227eb463b20ee5738 SHA512 7626fad06613a614b5d6efdea088825732571c7ed45f6f2d69f34e0aede020df0930716cb34ca14260891a29aa152019c7bfae8aad729039642ea1c6bbf7d09e
24
25 diff --git a/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.12.0.ebuild b/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.12.0.ebuild
26 new file mode 100644
27 index 000000000000..c5b515e21ef5
28 --- /dev/null
29 +++ b/dev-python/sphinxcontrib-doxylink/sphinxcontrib-doxylink-1.12.0.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=poetry
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Extension to link to external Doxygen API documentation"
42 +HOMEPAGE="
43 + https://pypi.org/project/sphinxcontrib-doxylink/
44 + https://pythonhosted.org/sphinxcontrib-doxylink/
45 + https://github.com/sphinx-contrib/doxylink/
46 +"
47 +SRC_URI="
48 + https://github.com/sphinx-contrib/doxylink/archive/refs/tags/${PV}.tar.gz
49 + -> ${P}.gh.tar.gz
50 +"
51 +S="${WORKDIR}/doxylink-${PV}"
52 +
53 +LICENSE="BSD-2"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
56 +
57 +RDEPEND="
58 + >=dev-python/sphinx-1.6[${PYTHON_USEDEP}]
59 + >=dev-python/pyparsing-3.0.8[${PYTHON_USEDEP}]
60 + >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
61 +"
62 +
63 +BDEPEND="
64 + test? (
65 + app-doc/doxygen
66 + >=dev-python/testfixtures-6.18.5[${PYTHON_USEDEP}]
67 + )
68 +"
69 +
70 +distutils_enable_tests pytest
71 +distutils_enable_sphinx doc
72 +
73 +python_test() {
74 + distutils_write_namespace sphinxcontrib
75 + cd "${T}" || die
76 + epytest "${S}"/tests
77 +}