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-httpdomain/
Date: Wed, 02 Aug 2017 04:07:05
Message-Id: 1501646784.5b6a127c423403e351cfb4b1059be3a547a124d3.bicatali@gentoo
1 commit: 5b6a127c423403e351cfb4b1059be3a547a124d3
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 22:36:20 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=5b6a127c
7
8 dev-python/sphinxcontrib-httpdomain: version bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/sphinxcontrib-httpdomain/Manifest | 1 +
13 .../sphinxcontrib-httpdomain-1.5.0.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-httpdomain/Manifest b/dev-python/sphinxcontrib-httpdomain/Manifest
17 index 7b834ca8281..e7402d62d9d 100644
18 --- a/dev-python/sphinxcontrib-httpdomain/Manifest
19 +++ b/dev-python/sphinxcontrib-httpdomain/Manifest
20 @@ -1 +1,2 @@
21 DIST sphinxcontrib-httpdomain-1.4.0.tar.gz 12192 SHA256 9db07b047b8799378ae532d6b9b17080035da8d889082ad7f124de0469feeea4 SHA512 85d4d0898a1703a1742755814200253b875795b5f267b08adb00c7d8d7c15c434718ce0f93656e7b698df89c958a9f6f3f3403bdc6d08f6df322fd80371f1d70 WHIRLPOOL 1365183bd1ba9edff7c82c5c509c6d1f4fe36a35a7f88c168755d330217e4bd70600679d8a501fbacc7730901196ae62c2f6487ded513b8efed1a0012d93a1a8
22 +DIST sphinxcontrib-httpdomain-1.5.0.tar.gz 13981 SHA256 eab097505caee272ca6a313edb2cbc3d2103bb6bcc09923ef43054e238452f6b SHA512 e393690314cb7a7b81207ee42826eb5360ca6cfa8ad1b57c9a8dd5897ed1ed97bad4a46d8348aad9d5f6b6145e5456af629b14973ad2561d5b90b2f8dbf2163a WHIRLPOOL becf70b6b871bdd5e08be168d5b255f312389baee0b91b95aee9ad35150e9f56363ea95023206290b23e6df7b8b5e27326dbf68850349305c433518c22129534
23
24 diff --git a/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.5.0.ebuild b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.5.0.ebuild
25 new file mode 100644
26 index 00000000000..10e5eef85a8
27 --- /dev/null
28 +++ b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.5.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Extension providing a Sphinx domain for describing RESTful HTTP APIs"
39 +HOMEPAGE="http://packages.python.org/sphinxcontrib-httpdomain/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
45 +
46 +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]
47 + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
48 + dev-python/six[${PYTHON_USEDEP}]"
49 +DEPEND="${RDEPEND}
50 + dev-python/setuptools[${PYTHON_USEDEP}]"
51 +
52 +python_install_all() {
53 + distutils-r1_python_install_all
54 + find "${ED}" -name '*.pth' -delete || die
55 +}