Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/supervisor/
Date: Wed, 26 Jul 2017 15:31:58
Message-Id: 1501083105.7324ec0d537cecbaf2cbe6598cac87f1dd05d922.mgorny@gentoo
1 commit: 7324ec0d537cecbaf2cbe6598cac87f1dd05d922
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 24 22:31:56 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 26 15:31:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7324ec0d
7
8 app-admin/supervisor: bump to 3.1.4
9
10 Bug: https://bugs.gentoo.org/show_bug.cgi?id=626100
11 Package-Manager: Portage-2.3.6, Repoman-2.3.3
12
13 app-admin/supervisor/Manifest | 1 +
14 app-admin/supervisor/supervisor-3.1.4.ebuild | 46 ++++++++++++++++++++++++++++
15 2 files changed, 47 insertions(+)
16
17 diff --git a/app-admin/supervisor/Manifest b/app-admin/supervisor/Manifest
18 index 694888fd449..6e5f5aa1877 100644
19 --- a/app-admin/supervisor/Manifest
20 +++ b/app-admin/supervisor/Manifest
21 @@ -1,3 +1,4 @@
22 DIST supervisor-3.1.3.tar.gz 391529 SHA256 e32c546fe8d2a6e079ec4819c49fd24534d4075a58af39118d04367918b3c282 SHA512 40795bfd1aee3eba9e51b6dc1bfcff20c42c0a42ca7ceecc35c428f7840d5d631303b7f0c4eee85375296fd4e9a48f6b405a87caf038f8ffbfe227b5160e7aa5 WHIRLPOOL da8f41907857c46633e93e1806449babd9230994a528c73946276c10387e380763b7b9fb884bb3376537d6eb55428e5873ed8e9a11cd410a3d6c8d7593907552
23 +DIST supervisor-3.1.4.tar.gz 392321 SHA256 82f75089f719a7a3ca87f35c89a03c20fd3c0912552c96eb6fa40274ced6604e SHA512 7182db4169d37aa8f7a2a4e1d57ce40f6dea21759ed73fb49286dd5ffb2bdede0fccdc71344e93c8f8c067a2cbc4e3cb0a9a50b22bacdb1b8bc1378581ed5f07 WHIRLPOOL 64a3b7c46b6c2a2c5d67ebfc44fef0f3382ff98a2468b3c210f03b205a3cbf6d7604788b985c98b093c20a1950b4a343a86cf914713072fa2f28f50f0478f63e
24 DIST supervisor-3.3.1.tar.gz 415246 SHA256 fc3af22e5a7af2f6c3be787acf055c1c17777f5607cd4dc935fe633ab97061fd SHA512 e67d4e7b01f6f98a595e7524c5318e780b422a7f8f932f205c6a4d74c3c9e058b265b1732e944e5b467daa6ceffde7d1aae1f1af12c2b7c53728739edb10f740 WHIRLPOOL 744fd11df897ac25839138ce12bf194682b4d0576396b692ef2befecdffb658ed9c2a47aa2248793b082c674cb9a3dc39c0c38127e4a2da74028fb8606500336
25 DIST supervisor-3.3.2.tar.gz 417348 SHA256 bbb870f5b59c5c4fd79f711553e343158b2c64688997a23a1bcb2ce643f57771 SHA512 959f045d8da5a263a6990fdc4a93154684c74cca5f49aeb733b86da046a8a3a56981062d16f0ab8177c0e0bb41f137c62e1ae6a52582e76bbe0adb2b8185202c WHIRLPOOL 2cd1bae59d187d9623089a4c9bcc11773a7fd371fc8725b34b28cd5b342391ddf92dd1c3d77f7eed53ab0209fd611fd3ce0e9b15e108b422189620d97cb37658
26
27 diff --git a/app-admin/supervisor/supervisor-3.1.4.ebuild b/app-admin/supervisor/supervisor-3.1.4.ebuild
28 new file mode 100644
29 index 00000000000..1f774d43fdc
30 --- /dev/null
31 +++ b/app-admin/supervisor/supervisor-3.1.4.ebuild
32 @@ -0,0 +1,46 @@
33 +# Copyright 1999-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
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 +}