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: gunicorn-0.14.6.ebuild ChangeLog gunicorn-0.14.5.ebuild
Date: Mon, 30 Jul 2012 05:30:35
Message-Id: 20120730053020.4ADD92004B@flycatcher.gentoo.org
1 rafaelmartins 12/07/30 05:30:20
2
3 Modified: ChangeLog
4 Added: gunicorn-0.14.6.ebuild
5 Removed: gunicorn-0.14.5.ebuild
6 Log:
7 Version bump. bug #428250
8
9 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.21 www-servers/gunicorn/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?rev=1.21&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?rev=1.21&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/ChangeLog?r1=1.20&r2=1.21
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v
21 retrieving revision 1.20
22 retrieving revision 1.21
23 diff -u -r1.20 -r1.21
24 --- ChangeLog 18 Jul 2012 02:12:15 -0000 1.20
25 +++ ChangeLog 30 Jul 2012 05:30:20 -0000 1.21
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.20 2012/07/18 02:12:15 rafaelmartins Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.21 2012/07/30 05:30:20 rafaelmartins Exp $
31 +
32 +*gunicorn-0.14.6 (30 Jul 2012)
33 +
34 + 30 Jul 2012; Rafael G. Martins <rafaelmartins@g.o>
35 + -gunicorn-0.14.5.ebuild, +gunicorn-0.14.6.ebuild:
36 + Version bump. bug #428250
37
38 *gunicorn-0.14.5 (18 Jul 2012)
39
40
41
42
43 1.1 www-servers/gunicorn/gunicorn-0.14.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gunicorn-0.14.6.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.6.ebuild,v 1.1 2012/07/30 05:30:20 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 # tests are failing randomly.
72 RESTRICT="test"
73
74 RDEPEND="dev-python/setproctitle"
75 DEPEND="dev-python/setuptools"
76
77 DOCS="README.rst"
78
79 src_prepare() {
80 epatch "${FILESDIR}/${PN}"-0.14.0-noegg.patch || die
81 }
82
83 src_install() {
84 distutils_src_install
85 use doc && dohtml -r doc/htdocs/*
86 }