Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/gunicorn: ChangeLog gunicorn-0.14.1.ebuild gunicorn-0.14.0.ebuild
Date: Sun, 04 Mar 2012 19:44:51
Message-Id: 20120304194441.895732004B@flycatcher.gentoo.org
1 rafaelmartins 12/03/04 19:44:41
2
3 Modified: ChangeLog
4 Added: gunicorn-0.14.1.ebuild
5 Removed: gunicorn-0.14.0.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha89_p5/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.16 www-servers/gunicorn/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 4 Mar 2012 01:25:15 -0000 1.15
25 +++ ChangeLog 4 Mar 2012 19:44:41 -0000 1.16
26 @@ -1,6 +1,12 @@
27 # ChangeLog for www-servers/gunicorn
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.15 2012/03/04 01:25:15 rafaelmartins Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.16 2012/03/04 19:44:41 rafaelmartins Exp $
31 +
32 +*gunicorn-0.14.1 (04 Mar 2012)
33 +
34 + 04 Mar 2012; Rafael G. Martins <rafaelmartins@g.o>
35 + -gunicorn-0.14.0.ebuild, +gunicorn-0.14.1.ebuild:
36 + Version bump.
37
38 *gunicorn-0.14.0 (04 Mar 2012)
39
40
41
42
43 1.1 www-servers/gunicorn/gunicorn-0.14.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gunicorn-0.14.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.1.ebuild,v 1.1 2012/03/04 19:44:41 rafaelmartins Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="2:2.5"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
58 DISTUTILS_SRC_TEST="nosetests"
59
60 inherit distutils eutils
61
62 DESCRIPTION="A WSGI HTTP Server for UNIX"
63 HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 LICENSE="MIT"
67 SLOT="0"
68 IUSE="doc test"
69 KEYWORDS="~amd64 ~x86"
70
71 RDEPEND="dev-python/setproctitle"
72 DEPEND="dev-python/setuptools"
73
74 DOCS="README.rst"
75
76 src_prepare() {
77 epatch "${FILESDIR}/${P}-"noegg.patch || die
78 }
79
80 src_install() {
81 distutils_src_install
82 use doc && dohtml -r doc/htdocs/*
83 }