Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-napoleon/
Date: Wed, 02 Aug 2017 04:07:06
Message-Id: 1501646784.c842d7e80a69f6dbf78eff04777de7ec1646ba39.bicatali@gentoo
1 commit: c842d7e80a69f6dbf78eff04777de7ec1646ba39
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 2 02:17:03 2017 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 2 04:06:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c842d7e8
7
8 dev-python/sphinxcontrib-napoleon: version bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/sphinxcontrib-napoleon/Manifest | 1 +
13 .../sphinxcontrib-napoleon-0.6.1.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-napoleon/Manifest b/dev-python/sphinxcontrib-napoleon/Manifest
17 index 39fc74bc8a2..4f73eaf3553 100644
18 --- a/dev-python/sphinxcontrib-napoleon/Manifest
19 +++ b/dev-python/sphinxcontrib-napoleon/Manifest
20 @@ -1 +1,2 @@
21 DIST sphinxcontrib-napoleon-0.5.2.tar.gz 24939 SHA256 3babaf7da3d062a2feba71f747946d123187e12ef68329eb6974026b25d218b8 SHA512 5f8d31c4ce66a042aa0c79ec06b7592539154bd7a397c1898db0cbed15b9891c908bb1d51334ef0b759e5d44ac99cf124616f0e4b3a1b1253f0f92312c949a8c WHIRLPOOL e577861c4357719a75ef84166f4cb9059fadded3b629606674beb5bfbd242bf4efb15c2889731690f4be8555b7561fb7c7ded14df925ebc2d926f26c91889bf4
22 +DIST sphinxcontrib-napoleon-0.6.1.tar.gz 20057 SHA256 614b779888629f14dfdfad6c17bffbb6d3813a0a0917a9541651d85384d4d6bd SHA512 1809fcadf964622bd75cc3ae17aaad467b7003f82e6df4de039a0ba86daa5c5b199af0c185129e79d3c4f8738c0d6c2411950888969fee3bb32ecc8cdfbc84b0 WHIRLPOOL 2d10156012e8032abcf76f4de524fabc628420137df6a2bf307da93903a16293e7416ce11fa5c6f8104909d9ccb2fe6a195586257989cc13a5adf50e35c776d2
23
24 diff --git a/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.6.1.ebuild b/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.6.1.ebuild
25 new file mode 100644
26 index 00000000000..7816e405392
27 --- /dev/null
28 +++ b/dev-python/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.6.1.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Allow a different format in dosctrings for better clarity"
40 +HOMEPAGE="https://sphinxcontrib-napoleon.readthedocs.io/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE=""
47 +
48 +RDEPEND="
49 + >=dev-python/sphinx-1.2[${PYTHON_USEDEP}]
50 + <dev-python/sphinx-1.33[${PYTHON_USEDEP}]
51 + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
52 +"
53 +DEPEND="
54 + dev-python/pockets[${PYTHON_USEDEP}]
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + dev-python/six[${PYTHON_USEDEP}]
57 +"
58 +
59 +python_install_all() {
60 + distutils-r1_python_install_all
61 + find "${ED}" -name '*.pth' -delete || die
62 +}