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/peak-rules/peak-rules-0.5.ebuild

45 lines
1.3 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_PN="PEAK-Rules"
MY_P="${MY_PN}-${PV}a1.dev-r2713"
DESCRIPTION="Generic functions and business rules support systems"
HOMEPAGE="http://peak.telecommunity.com/ https://pypi.org/project/PEAK-Rules/"
SRC_URI="http://peak.telecommunity.com/snapshots/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS=( Code-Generation.txt Criteria.txt Indexing.txt README.txt Syntax-Matching.txt )
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/bytecodeassembler-0.6[${PYTHON_USEDEP}]
>=dev-python/addons-0.6[${PYTHON_USEDEP}]
>=dev-python/extremes-1.1[${PYTHON_USEDEP}]
test? ( >=dev-python/importing-1.10[${PYTHON_USEDEP}] )"
S="${WORKDIR}"/${MY_P}
python_test() {
PYTHONPATH=$PYTHONPATH:"${S}"/peak/rules/ "${PYTHON}" test_rules.py \
&& einfo "Tests passed under ${EPYTHON}" \
|| die "Tests failed under ${EPYTHON}"
}
src_test() {
# Relative import misfires for core.py during emerge
sed -e "s:from peak.rules.core:from core:" -i test_rules.py
distutils-r1_src_test
# Return to original statefor final install
sed -e "s:from core:from peak.rules.core:" -i test_rules.py
}