Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/supervisor: supervisor-3.1.1.ebuild ChangeLog
Date: Mon, 25 Aug 2014 06:19:07
Message-Id: 20140825061903.3DDE13DB5@oystercatcher.gentoo.org
1 idella4 14/08/25 06:19:03
2
3 Modified: ChangeLog
4 Added: supervisor-3.1.1.ebuild
5 Log:
6 bump; add IUSE doc, doc build, tidy
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.16 app-admin/supervisor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 2 Aug 2014 01:38:30 -0000 1.15
24 +++ ChangeLog 25 Aug 2014 06:19:03 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/supervisor
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v 1.15 2014/08/02 01:38:30 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v 1.16 2014/08/25 06:19:03 idella4 Exp $
30 +
31 +*supervisor-3.1.1 (25 Aug 2014)
32 +
33 + 25 Aug 2014; Ian Delaney <idella4@g.o> +supervisor-3.1.1.ebuild:
34 + bump; add IUSE doc, doc build, tidy
35
36 02 Aug 2014; Ian Delaney <idella4@g.o> supervisor-3.1.0.ebuild:
37 drop py2.6, unrestrict workable test phase, tidy
38
39
40
41 1.1 app-admin/supervisor/supervisor-3.1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: supervisor-3.1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.1.1.ebuild,v 1.1 2014/08/25 06:19:03 idella4 Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python2_7 ) # py2 only
55 # xml.etree.ElementTree module required.
56 PYTHON_REQ_USE="xml"
57
58 inherit distutils-r1
59
60 MY_PV="${PV/_beta/b}"
61
62 DESCRIPTION="A system for controlling process state under UNIX"
63 HOMEPAGE="http://supervisord.org/ http://pypi.python.org/pypi/supervisor"
64 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
65
66 LICENSE="repoze ZPL BSD HPND GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc test"
70
71 # ALL versions of meld3 match to >=meld3-0.6.5
72 RDEPEND="dev-python/meld3[${PYTHON_USEDEP}]
73 dev-python/setuptools[${PYTHON_USEDEP}]"
74 DEPEND="${RDEPEND}
75 test? ( dev-python/mock[${PYTHON_USEDEP}] )
76 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
77
78 S="${WORKDIR}/${PN}-${MY_PV}"
79
80 python_compile_all() {
81 # Somehow the test phase is called and run on invoking a doc build; harmless
82 use doc && emake -C docs html
83 }
84
85 python_test() {
86 esetup.py test
87 }
88
89 python_install_all() {
90 newinitd "${FILESDIR}/init.d-r1" supervisord
91 newconfd "${FILESDIR}/conf.d" supervisord
92 use doc && local HTML_DOCS=( docs/.build/html/. )
93 distutils-r1_python_install_all
94 }