30 lines
845 B
Bash
30 lines
845 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.9.2.ebuild,v 1.1 2013/07/25 05:37:46 patrick Exp $
|
|
|
|
EAPI="5"
|
|
PYTHON_COMPAT=( python{2_6,2_7,3_3} pypy{1_9,2_0} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PN="Werkzeug"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="Collection of various utilities for WSGI applications"
|
|
HOMEPAGE="http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug"
|
|
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
python_test() {
|
|
esetup.py test
|
|
}
|