Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/supervisor: supervisor-3.1.0.ebuild ChangeLog
Date: Fri, 01 Aug 2014 05:35:46
Message-Id: 20140801053540.3077E2004E@flycatcher.gentoo.org
1 patrick 14/08/01 05:35:39
2
3 Modified: ChangeLog
4 Added: supervisor-3.1.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.14 app-admin/supervisor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 5 Sep 2013 18:15:49 -0000 1.13
24 +++ ChangeLog 1 Aug 2014 05:35:39 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/supervisor
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v 1.13 2013/09/05 18:15:49 mgorny Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/ChangeLog,v 1.14 2014/08/01 05:35:39 patrick Exp $
31 +
32 +*supervisor-3.1.0 (01 Aug 2014)
33 +
34 + 01 Aug 2014; Patrick Lauer <patrick@g.o> +supervisor-3.1.0.ebuild:
35 + Bump
36
37 05 Sep 2013; Michał Górny <mgorny@g.o> supervisor-3.0.ebuild,
38 supervisor-3.0_beta2-r1.ebuild:
39
40
41
42 1.1 app-admin/supervisor/supervisor-3.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: supervisor-3.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.1.0.ebuild,v 1.1 2014/08/01 05:35:39 patrick Exp $
52
53 EAPI="5"
54
55 PYTHON_COMPAT=( python{2_6,2_7} )
56 # xml.etree.ElementTree module required.
57 PYTHON_REQ_USE="xml"
58
59 inherit distutils-r1 eutils
60
61 MY_PV="${PV/_beta/b}"
62
63 DESCRIPTION="A system for controlling process state under UNIX"
64 HOMEPAGE="http://supervisord.org/ http://pypi.python.org/pypi/supervisor"
65 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
66
67 LICENSE="repoze ZPL BSD HPND GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="test"
71
72 RDEPEND=">=dev-python/meld3-0.6.10-r1[${PYTHON_USEDEP}]
73 dev-python/setuptools[${PYTHON_USEDEP}]"
74 DEPEND="${RDEPEND}
75 test? ( dev-python/mock[${PYTHON_USEDEP}] )"
76
77 # package uses namespaces which makes tests use installed packages
78 RESTRICT="test"
79
80 S="${WORKDIR}/${PN}-${MY_PV}"
81
82 DOCS=( CHANGES.txt TODO.txt )
83
84 python_prepare_all() {
85 # write missing MANIFEST.in file, otherwise required files get lost due to
86 # egg_info being passed to setup.py
87 cat > MANIFEST.in << EOF
88 include supervisor/*.txt
89 recursive-include supervisor/skel *.conf
90 recursive-include supervisor/ui *.html *.css *.gif *.png
91 recursive-include supervisor/tests *.conf *.txt
92 EOF
93 }
94
95 python_test() {
96 esetup.py test
97 }
98
99 python_install_all() {
100 newinitd "${FILESDIR}/init.d-r1" supervisord
101 newconfd "${FILESDIR}/conf.d" supervisord
102 }