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/bitstring/bitstring-3.1.1.ebuild

31 lines
903 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bitstring/bitstring-3.1.1.ebuild,v 1.4 2013/09/02 18:38:26 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit distutils-r1
DESCRIPTION="A pure Python module for creation and analysis of binary data"
HOMEPAGE="http://python-bitstring.googlecode.com/"
SRC_URI="http://python-bitstring.googlecode.com/files/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="app-arch/unzip
test? ( virtual/python-unittest2[${PYTHON_USEDEP}] )"
RDEPEND=""
python_test() {
if [[ ${EPYTHON} == python2.6 ]]; then
local runner=( unit2.py )
else
local runner=( "${PYTHON}" -m unittest )
fi
pushd test > /dev/null || die
"${runner[@]}" discover || die "Testing failed with ${EPYTHON}"
popd test > /dev/null || die
}