| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: $ |
| 4 |
|
| 5 |
EAPI="3" |
| 6 |
SUPPORT_PYTHON_ABIS="1" |
| 7 |
RESTRICT_PYTHON_ABIS="3.* *-jython" |
| 8 |
DISTUTILS_SRC_TEST="nosetests" |
| 9 |
|
| 10 |
inherit distutils eutils |
| 11 |
|
| 12 |
DESCRIPTION="A WSGI HTTP Server for UNIX" |
| 13 |
HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn" |
| 14 |
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" |
| 15 |
|
| 16 |
LICENSE="MIT" |
| 17 |
SLOT="0" |
| 18 |
IUSE="test" |
| 19 |
KEYWORDS="~amd64 ~x86" |
| 20 |
|
| 21 |
RDEPEND="dev-python/setproctitle" |
| 22 |
DEPEND="dev-python/setuptools" |
| 23 |
|
| 24 |
DOCS="README.rst" |
| 25 |
|
| 26 |
src_prepare() { |
| 27 |
epatch "${FILESDIR}/${PN}"-0.14.0-noegg.patch || die |
| 28 |
} |