Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/superlance/
Date: Tue, 29 Nov 2016 08:18:08
Message-Id: 1480407380.3de11ec90b09008ea8052eaf8d33da692412ddc1.soap@gentoo
1 commit: 3de11ec90b09008ea8052eaf8d33da692412ddc1
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 28 10:58:55 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 08:16:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de11ec9
7
8 dev-python/superlance: remove old
9
10 Package-Manager: portage-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/2942
12
13 dev-python/superlance/Manifest | 1 -
14 dev-python/superlance/superlance-0.13.ebuild | 43 ----------------------------
15 2 files changed, 44 deletions(-)
16
17 diff --git a/dev-python/superlance/Manifest b/dev-python/superlance/Manifest
18 index db35ee9..208eca1 100644
19 --- a/dev-python/superlance/Manifest
20 +++ b/dev-python/superlance/Manifest
21 @@ -1,3 +1,2 @@
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 DIST superlance-1.0.0.tar.gz 36909 SHA256 f697c71341e9a686f3a0ff3f04a82448523eac0a6121484933729ba65a973a63 SHA512 f85dbd0768820e2f679b374c5178e6b74de21cebd813a485f615203784e25a968ddcbae72cae41dc56f4f105dab9a6ead16acf4d4cffa3cf30d91650ebb20611 WHIRLPOOL 87b5d3df4d426bced16a2c82f4383e904b91a7905d0f5193c716b989b4a2abe34eea712ef30e4721654787260bbc560108438322cf929d287b6374b4df30185d
25
26 diff --git a/dev-python/superlance/superlance-0.13.ebuild b/dev-python/superlance/superlance-0.13.ebuild
27 deleted file mode 100644
28 index a4830dd..00000000
29 --- a/dev-python/superlance/superlance-0.13.ebuild
30 +++ /dev/null
31 @@ -1,43 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=6
37 -
38 -PYTHON_COMPAT=( python2_7 )
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="A set of plugins to monitor and control supervisor"
43 -HOMEPAGE="https://github.com/Supervisor/superlance"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="repoze"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="doc test"
50 -
51 -RDEPEND="app-admin/supervisor[${PYTHON_USEDEP}]"
52 -DEPEND="
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - test? (
55 - ${RDEPEND}
56 - dev-python/mock[${PYTHON_USEDEP}]
57 - )
58 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
59 -"
60 -
61 -python_compile_all() {
62 - # https://github.com/Supervisor/superlance/issues/91
63 - # https://github.com/Supervisor/superlance/issues/92
64 - use doc && emake -C docs html
65 -}
66 -
67 -python_test() {
68 - esetup.py test
69 -}
70 -
71 -python_install_all() {
72 - use doc && local HTML_DOCS=( docs/_build/html/. )
73 - distutils-r1_python_install_all
74 -}