Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-httpdomain/
Date: Thu, 07 May 2020 00:16:41
Message-Id: 1588810583.4751e4e1f2b0405fd33770ad247363f3656d0d15.chutzpah@gentoo
1 commit: 4751e4e1f2b0405fd33770ad247363f3656d0d15
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Wed May 6 22:39:26 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 00:16:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4751e4e1
7
8 dev-python/sphinxcontrib-httpdomain-1.7.0: bump, enable tests, add py38
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/sphinxcontrib-httpdomain/Manifest | 1 +
15 .../sphinxcontrib-httpdomain-1.7.0.ebuild | 31 ++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/dev-python/sphinxcontrib-httpdomain/Manifest b/dev-python/sphinxcontrib-httpdomain/Manifest
19 index 7762919cee6..e58f3dc8305 100644
20 --- a/dev-python/sphinxcontrib-httpdomain/Manifest
21 +++ b/dev-python/sphinxcontrib-httpdomain/Manifest
22 @@ -1 +1,2 @@
23 DIST sphinxcontrib-httpdomain-1.5.0.tar.gz 13981 BLAKE2B ca08a5cdc22d9898c6972ce8b7585fc4f185e3a0c8e49302bfafbfc88b4bb69d9d3deaf15cca2dfcd2f218199f509023aeb542129fea2003cecb2e8ef8215fd4 SHA512 e393690314cb7a7b81207ee42826eb5360ca6cfa8ad1b57c9a8dd5897ed1ed97bad4a46d8348aad9d5f6b6145e5456af629b14973ad2561d5b90b2f8dbf2163a
24 +DIST sphinxcontrib-httpdomain-1.7.0.tar.gz 37493 BLAKE2B e34682029ed2f59cb8c70b2a5270a2f89c4cb08179fdf3a53c65f1ad23eebba71bff5385b5d3fd971a6e3341457b253e4187632a8bf856ca208843938bbde056 SHA512 8c6e40dfaa29a552164078fbc96de578b2aac269cb0ce5e228293a85f87c4db4ef8c902868caccaca709df938d4e3917cc77b3da9bd889b9c6f8c6fa242dcc0d
25
26 diff --git a/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.7.0.ebuild b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.7.0.ebuild
27 new file mode 100644
28 index 00000000000..129a707fd96
29 --- /dev/null
30 +++ b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.7.0.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Extension providing a Sphinx domain for describing RESTful HTTP APIs"
41 +HOMEPAGE="https://github.com/sphinx-contrib/httpdomain
42 + https://sphinxcontrib-httpdomain.readthedocs.io/"
43 +SRC_URI="https://github.com/sphinx-contrib/httpdomain/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +S="${WORKDIR}/${PN#sphinxcontrib-}-${PV}"
45 +
46 +LICENSE="BSD-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
49 +
50 +RDEPEND="
51 + dev-python/sphinx[${PYTHON_USEDEP}]
52 + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
53 + dev-python/six[${PYTHON_USEDEP}]
54 +"
55 +BDEPEND="${RDEPEND}"
56 +
57 +distutils_enable_tests pytest
58 +
59 +python_install_all() {
60 + distutils-r1_python_install_all
61 + find "${ED}" -name '*.pth' -delete || die
62 +}