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-github-alt/
Date: Thu, 20 Feb 2020 09:42:37
Message-Id: 1582191386.1799bd53b7a5d2a3e7da6a4b6324eee80fc00171.mgorny@gentoo
1 commit: 1799bd53b7a5d2a3e7da6a4b6324eee80fc00171
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 22 12:44:58 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 20 09:36:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1799bd53
7
8 dev-python/sphinxcontrib-github-alt: Build from pyproject.toml
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../sphinxcontrib-github-alt-1.1-r1.ebuild | 24 ++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r1.ebuild b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..e2c50ac186d
18 --- /dev/null
19 +++ b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r1.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2020 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
27 +PYTHON_COMPAT=( python3_{5,6,7} )
28 +
29 +inherit distutils-r1
30 +
31 +MY_PN="sphinxcontrib_github_alt"
32 +
33 +DESCRIPTION="Link to GitHub issues, pull requests, commits and users from Sphinx docs"
34 +HOMEPAGE="https://github.com/jupyter/sphinxcontrib_github_alt"
35 +SRC_URI="https://github.com/jupyter/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 +
37 +LICENSE="BSD-2"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +
41 +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
42 +BDEPEND=${RDEPEND}
43 +
44 +S="${WORKDIR}/${MY_PN}-${PV}"