You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/simpy/simpy-2.3.1.ebuild

53 lines
1.3 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.1.ebuild,v 1.1 2012/08/26 09:09:27 jlec Exp $
EAPI=4
PYTHON_DEPEND="2:2.6"
PYTHON_USE_WITH="tk"
SUPPORT_PYTHON_ABIS="1"
# https://sourceforge.net/tracker/?func=detail&aid=3470332&group_id=62366&atid=500345
RESTRICT_PYTHON_ABIS="2.5 3.* 2.7-pypy-*"
PYTHON_MODNAME="SimPy"
inherit distutils
MY_P="${P/simpy/SimPy}"
DESCRIPTION="Simulation in Python is an object-oriented, process-based discrete-event simulation language"
HOMEPAGE="http://simpy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}/SimPy-2.3/${MY_P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="LGPL-2.1"
IUSE="test doc"
RDEPEND=""
DEPEND="
doc? ( dev-python/sphinx )
test? ( dev-python/pytest )"
S="${WORKDIR}/${MY_P}"
src_test() {
testing() {
PYTHONPATH="." $(PYTHON) -c "import SimPy; SimPy.test()" || die
}
python_execute_function testing
}
src_install() {
distutils_src_install
dodoc AUTHORS.txt CHANGES.txt README.txt
## fails with current sphinx
# PYTHONPATH=.. emake man
# doman build/man/*
if use doc; then
cd docs
PYTHONPATH=.. emake html && dohtml -r html/* build/doctrees/*
fi
}