32 lines
751 B
Bash
32 lines
751 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PN="web.py"
|
|
|
|
DESCRIPTION="A small and simple web framework for Python"
|
|
HOMEPAGE="http://www.webpy.org https://pypi.python.org/pypi/web.py"
|
|
SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
S="${WORKDIR}/web.py-${PV}"
|
|
|
|
python_test() {
|
|
local return_status="0" test tests="db http net template utils"
|
|
for test in ${tests}; do
|
|
echo "Running doctests in ${test}.py..."
|
|
"${PYTHON}" web/${test}.py || return_status="$?"
|
|
done
|
|
return "${return_status}"
|
|
}
|