# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/netaddr/netaddr-0.7.6.ebuild,v 1.3 2012/04/23 20:19:28 mgorny Exp $ EAPI="4" SUPPORT_PYTHON_ABIS="1" PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython" inherit distutils DESCRIPTION="Network address representation and manipulation library" HOMEPAGE="https://github.com/drkjam/netaddr http://pypi.python.org/pypi/netaddr" SRC_URI="mirror://github/drkjam/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="" src_prepare() { distutils_src_prepare # https://github.com/drkjam/netaddr/issues/20 sed -e "s/AddrFormatError/netaddr.core.AddrFormatError/" -i netaddr/tests/3.x/ip/{platform_linux2.txt,platform_win32.txt} } src_test() { testing() { PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" netaddr/tests/__init__.py } python_execute_function testing }