Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/superlance/
Date: Thu, 29 Sep 2016 11:56:21
Message-Id: 1475150166.0dde51370cb8a39729dc0aa96055c683a371d99c.kensington@gentoo
1 commit: 0dde51370cb8a39729dc0aa96055c683a371d99c
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 27 10:51:25 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 11:56:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dde5137
7
8 dev-python/superlance: bump to 0.14
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/superlance/Manifest | 1 +
13 dev-python/superlance/superlance-0.14.ebuild | 41 ++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/superlance/Manifest b/dev-python/superlance/Manifest
17 index 3c6a55b..8946c50 100644
18 --- a/dev-python/superlance/Manifest
19 +++ b/dev-python/superlance/Manifest
20 @@ -1,2 +1,3 @@
21 DIST superlance-0.11.tar.gz 33882 SHA256 ab3aa27f2985c840f59f19b90e75b62e43d8d70e41b0cdc6523a884fb32f9d6e SHA512 bdf6da9e26f4db6f32f79cc27987fd75d2902ca6c098cf9c07785791fe50d3546348689391636eac25d963cd09edb2e57669e5526e68bddfd78c88eb9918fd91 WHIRLPOOL 9c85c8a68d60b195c5cb8d67a0f4e47cf5701c3b2b6711ad28ae1b11cf81723a9c0265e29f0cfed7d415d375a42abe0147101444b9fb969db598a3b786bb8140
22 DIST superlance-0.13.tar.gz 35009 SHA256 51fb4c990ed6dda553fbc541c5d638b614dfd8bd2832a3d958300c75dc2bf83a SHA512 283a49f345901c9212b4fa44b6cf47590c70ee9861bcedaf5c85ef74b445998e890daf9aa2d45ca32e66e8b41d9ca54eb12d860403c536265415e473dc8a2ffc WHIRLPOOL c8203367bec0f8c14c1b28607a5cd77f65a0d34a07f09bd32127fcc0dbbde280a9ff0bdfffe113c1122deb9a16225e9d9df60ad8aa616942fe042ca2e5e5749e
23 +DIST superlance-0.14.tar.gz 36237 SHA256 74bba9be799a3eacb4120f05d2999d401365527f3cd0e924f68b6e475367c987 SHA512 41fdc9cf83ce636aea3665aed0fa9b1a37c2fe4d3740db694c20f60676d44ee6cc534ae038018edc0a1057607bac9dd4f0d14ea365735148a19a10e138723efd WHIRLPOOL b11f7eaf04f108b9183cbdb2f6ab329bd663fb8a1a1845c6e949f1e3b1fe32550ca432990203f2274fb4bc33145047f9b446d3bf181233bff6df34f32f9ae0c8
24
25 diff --git a/dev-python/superlance/superlance-0.14.ebuild b/dev-python/superlance/superlance-0.14.ebuild
26 new file mode 100644
27 index 00000000..30f77da
28 --- /dev/null
29 +++ b/dev-python/superlance/superlance-0.14.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A set of plugins to monitor and control supervisor"
42 +HOMEPAGE="https://github.com/Supervisor/superlance"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="repoze"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="doc test"
49 +
50 +RDEPEND="app-admin/supervisor[${PYTHON_USEDEP}]"
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? (
54 + ${RDEPEND}
55 + dev-python/mock[${PYTHON_USEDEP}]
56 + )
57 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 +"
59 +
60 +python_compile_all() {
61 + use doc && emake -C docs html
62 +}
63 +
64 +python_test() {
65 + esetup.py test
66 +}
67 +
68 +python_install_all() {
69 + use doc && local HTML_DOCS=( docs/_build/html/. )
70 + distutils-r1_python_install_all
71 +}