mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-16 05:12:38 +01:00
35 lines
724 B
Bash
35 lines
724 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Parser for PHP written using PLY"
|
|
HOMEPAGE="https://github.com/ramen/phply"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-python/ply
|
|
test? ( dev-python/nose )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
python_prepare_all() {
|
|
distutils-r1_python_prepare_all
|
|
# remove package of tests to avoid installing it
|
|
rm "${S}/tests/__init__.py"
|
|
}
|
|
|
|
python_test() {
|
|
distutils_install_for_testing
|
|
cd "${TEST_DIR}"/lib || die
|
|
nosetests || die "Tests fail with ${EPYTHON}"
|
|
}
|