Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/
Date: Sat, 01 Oct 2016 20:15:31
Message-Id: 1475352920.f64b878649f97ac028cac45c1858065c7405f0f0.patrick@gentoo
1 commit: f64b878649f97ac028cac45c1858065c7405f0f0
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 19:22:05 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 20:15:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f64b8786
7
8 app-admin/supervisor: Bump
9
10 Package-Manager: portage-2.3.0
11
12 app-admin/supervisor/Manifest | 1 +
13 app-admin/supervisor/supervisor-3.3.1.ebuild | 47 ++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/app-admin/supervisor/Manifest b/app-admin/supervisor/Manifest
17 index 2894efa..7aec78a 100644
18 --- a/app-admin/supervisor/Manifest
19 +++ b/app-admin/supervisor/Manifest
20 @@ -3,3 +3,4 @@ DIST supervisor-3.2.1.tar.gz 410461 SHA256 d6b54903aab4214664b6f2c6400f673bee3e2
21 DIST supervisor-3.2.2.tar.gz 410884 SHA256 67b07b75bdf4529af0ed99f3940bac73d8bcdd8acb1b7cadb7314152e73b8c5f SHA512 2a4beba2bb707ce0ec90a80e212d7edc5e3a74e36675bb483100d97f75e2826538c3bf604faf07fe435e7f4c89608694a22f59293f272ea1e03f8859c0bf9da2 WHIRLPOOL 48795b0e61f9c7a295c0a807db81362d00012a91c3f37f4d2ccfa4f6c171d89219ec24c74e1ea53885353c2ae55c208ba6b6441345e89379c6159145f889a4de
22 DIST supervisor-3.2.3.tar.gz 411342 SHA256 3d6f0304c8ce74ab2100dfc4ab0f70050568504216f9508a81b8ed269aec9705 SHA512 53ced6e918aaf4cf780787378cf1559579c66760dc85fe07fe42554d42434ed01dc7f36b4b59bb3f56064523a51fe9f9b509bfc5d83c2306e2dcb523070c989a WHIRLPOOL 03d76d41a3c809305754e13087c183748a4c321b5e0ddf2b19a4869bffc457611946524749a80b33ee965dd52c9b9aa50212e669d87285c3201b736034b51a11
23 DIST supervisor-3.3.0.tar.gz 416329 SHA256 3176fb8a78c60164020e252e4a2b50b039cfec1f410b4562a843b66186188652 SHA512 cbb622522dde2bebfa98ae1eb47d747cc8e041b1a67b7708a9f1ddd50e2940af4e39fa859c02f4c431429896eb63d5be88b199921c68846ec774baad13244bb0 WHIRLPOOL 4ad6947c5ea4043785c7bd10d426c6d11ebac97e37622c0381d1f2cf62e41ae40301f48f340c2e2cfe28a24f28a6bac13ce8bc9e656b736e099725257384ad3a
24 +DIST supervisor-3.3.1.tar.gz 415246 SHA256 fc3af22e5a7af2f6c3be787acf055c1c17777f5607cd4dc935fe633ab97061fd SHA512 e67d4e7b01f6f98a595e7524c5318e780b422a7f8f932f205c6a4d74c3c9e058b265b1732e944e5b467daa6ceffde7d1aae1f1af12c2b7c53728739edb10f740 WHIRLPOOL 744fd11df897ac25839138ce12bf194682b4d0576396b692ef2befecdffb658ed9c2a47aa2248793b082c674cb9a3dc39c0c38127e4a2da74028fb8606500336
25
26 diff --git a/app-admin/supervisor/supervisor-3.3.1.ebuild b/app-admin/supervisor/supervisor-3.3.1.ebuild
27 new file mode 100644
28 index 00000000..117a655
29 --- /dev/null
30 +++ b/app-admin/supervisor/supervisor-3.3.1.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI="5"
37 +
38 +PYTHON_COMPAT=( python2_7 ) # py2 only
39 +# xml.etree.ElementTree module required.
40 +PYTHON_REQ_USE="xml"
41 +
42 +inherit distutils-r1
43 +
44 +MY_PV="${PV/_beta/b}"
45 +
46 +DESCRIPTION="A system for controlling process state under UNIX"
47 +HOMEPAGE="http://supervisord.org/ https://pypi.python.org/pypi/supervisor"
48 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
49 +
50 +LICENSE="repoze ZPL BSD HPND GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +IUSE="doc test"
54 +
55 +# ALL versions of meld3 match to >=meld3-0.6.5
56 +RDEPEND="dev-python/meld3[${PYTHON_USEDEP}]
57 + dev-python/setuptools[${PYTHON_USEDEP}]"
58 +DEPEND="${RDEPEND}
59 + test? ( dev-python/mock[${PYTHON_USEDEP}] )
60 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
61 +
62 +S="${WORKDIR}/${PN}-${MY_PV}"
63 +
64 +python_compile_all() {
65 + # Somehow the test phase is called and run on invoking a doc build; harmless
66 + use doc && emake -C docs html
67 +}
68 +
69 +python_test() {
70 + esetup.py test
71 +}
72 +
73 +python_install_all() {
74 + newinitd "${FILESDIR}/init.d-r1" supervisord
75 + newconfd "${FILESDIR}/conf.d" supervisord
76 + use doc && local HTML_DOCS=( docs/.build/html/. )
77 + distutils-r1_python_install_all
78 +}