Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-github-alt/
Date: Sun, 01 Mar 2020 04:31:11
Message-Id: 1583037056.0ba3f2decfa7b1b76ecb5c7b33c3be627340c271.grozin@gentoo
1 commit: 0ba3f2decfa7b1b76ecb5c7b33c3be627340c271
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 1 04:30:56 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 04:30:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba3f2de
7
8 sphinxcontrib-github-alt: add python3_8
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 .../sphinxcontrib-github-alt-1.1-r2.ebuild | 24 ++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild
17 new file mode 100644
18 index 00000000000..a6dd4f90d8d
19 --- /dev/null
20 +++ b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
28 +PYTHON_COMPAT=( python3_{6,7,8} )
29 +
30 +inherit distutils-r1
31 +
32 +MY_PN="sphinxcontrib_github_alt"
33 +
34 +DESCRIPTION="Link to GitHub issues, pull requests, commits and users from Sphinx docs"
35 +HOMEPAGE="https://github.com/jupyter/sphinxcontrib_github_alt"
36 +SRC_URI="https://github.com/jupyter/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
37 +
38 +LICENSE="BSD-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +
42 +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
43 +BDEPEND=${RDEPEND}
44 +
45 +S="${WORKDIR}/${MY_PN}-${PV}"