Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/collective-checkdocs/
Date: Thu, 01 Oct 2020 21:56:10
Message-Id: 1601589354.bac86b99a3c1e2186e96b4848c3b38462693c921.sbraz@gentoo
1 commit: bac86b99a3c1e2186e96b4848c3b38462693c921
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 13:15:55 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 21:55:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac86b99
7
8 dev-python/collective-checkdocs: add PyPy3+Py3.{8,9}, tests, fix QA
9
10 Closes: https://bugs.gentoo.org/722294
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
13
14 .../collective-checkdocs-0.2-r1.ebuild | 37 ++++++++++++++++++++++
15 1 file changed, 37 insertions(+)
16
17 diff --git a/dev-python/collective-checkdocs/collective-checkdocs-0.2-r1.ebuild b/dev-python/collective-checkdocs/collective-checkdocs-0.2-r1.ebuild
18 new file mode 100644
19 index 00000000000..9631a340958
20 --- /dev/null
21 +++ b/dev-python/collective-checkdocs/collective-checkdocs-0.2-r1.ebuild
22 @@ -0,0 +1,37 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( pypy3 python3_{6..9} )
29 +# TODO: revert to rdepend once this is merged:
30 +# https://github.com/collective/collective.checkdocs/pull/11
31 +DISTUTILS_USE_SETUPTOOLS=manual
32 +
33 +inherit distutils-r1
34 +
35 +MY_PN="${PN/-/.}"
36 +DESCRIPTION="Distutils command to view/validate packages's rst text long_descriptions."
37 +HOMEPAGE="https://github.com/collective/collective.checkdocs"
38 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip"
39 +S="${WORKDIR}/${MY_PN}-${PV}"
40 +
41 +LICENSE="GPL-2" # until https://github.com/collective/collective.checkdocs/issues/8 is fixed
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
44 +
45 +RDEPEND="
46 + dev-python/setuptools[${PYTHON_USEDEP}]
47 + dev-python/docutils[${PYTHON_USEDEP}]
48 +"
49 +BDEPEND="
50 + app-arch/unzip
51 + dev-python/setuptools[${PYTHON_USEDEP}]
52 +"
53 +
54 +distutils_enable_tests unittest
55 +
56 +python_install_all() {
57 + distutils-r1_python_install_all
58 + find "${D}" -name '*.pth' -delete || die
59 +}