dev-python/django-cache-url: Add this (indirect) Raven test dependency dev-python/django-cache-url
authorW. Trevor King <wking@tremily.us>
Sat, 4 Oct 2014 20:33:06 +0000 (13:33 -0700)
committerW. Trevor King <wking@tremily.us>
Sat, 4 Oct 2014 21:23:23 +0000 (14:23 -0700)
django-cache-url-9999.ebuild [new file with mode: 0644]

diff --git a/django-cache-url-9999.ebuild b/django-cache-url-9999.ebuild
new file mode 100644 (file)
index 0000000..58ea8bf
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+if [[ "${PV}" == "9999" ]]; then
+       inherit git-2
+       EGIT_REPO_URI="git://github.com/ghickman/${PN}.git"
+       SRC_URI=""
+else
+       SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+fi
+
+DESCRIPTION="Use Cache URLs in your Django application"
+HOMEPAGE="http://github.com/ghickman/django-cache-url https://pypi.python.org/pypi/django-cache-url"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+       dev-python/django[${PYTHON_USEDEP}]
+       "
+DEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               ${RDEPEND}
+               dev-python/nose[${PYTHON_USEDEP}]
+       )"
+
+python_test() {
+       nosetests || die "Tests fail with ${EPYTHON}"
+}