diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-22 20:26:04 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-22 20:26:04 +0100 |
commit | 10326ea19519a9f4327f1cacacabcd342e97f363 (patch) | |
tree | b9684235782f271dd057f8424833b4ca4e00c07e /dev-python/raven/raven-2.0.10.ebuild | |
parent | dev-python/webarticle2text: add upstream tag to metadata.xml (diff) | |
download | eva-10326ea19519a9f4327f1cacacabcd342e97f363.tar.gz eva-10326ea19519a9f4327f1cacacabcd342e97f363.tar.bz2 eva-10326ea19519a9f4327f1cacacabcd342e97f363.zip |
dev-python/raven: initial ebuild
Diffstat (limited to 'dev-python/raven/raven-2.0.10.ebuild')
-rw-r--r-- | dev-python/raven/raven-2.0.10.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/raven/raven-2.0.10.ebuild b/dev-python/raven/raven-2.0.10.ebuild new file mode 100644 index 0000000..c15b99d --- /dev/null +++ b/dev-python/raven/raven-2.0.10.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" +PYTHON_COMPAT=( python2_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Raven is a client for Sentry" +HOMEPAGE="http://github.com/getsentry/raven-python" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/blinker-1.1 + >=dev-python/celery-2.5 + >=dev-python/django-1.2 + >=dev-python/django-celery-2.5 + >=dev-python/flask-0.8 + dev-python/logbook + dev-python/webob + dev-python/pytz +" +DEPEND="${RDEPEND} + test? ( + dev-python/django-nose + dev-python/nose + dev-util/mock + dev-python/pep8 + dev-python/unittest2 ) +" +RDEPEND="${RDEPEND} + <dev-python/django-1.5 +" |