diff options
author | 2013-01-07 21:59:42 +0000 | |
---|---|---|
committer | 2013-01-07 21:59:42 +0000 | |
commit | 1e24d6c72006b8e3c1fb621410dbab3d3eb06b47 (patch) | |
tree | 938bd4a553ea2272574d4d8496ca034da3fcdcd9 /dev-python/unittest2/unittest2-0.5.1-r1.ebuild | |
parent | gnome-extra/zeitgeist-extensions: Drop old and update DESCRIPTION (diff) | |
download | historical-1e24d6c72006b8e3c1fb621410dbab3d3eb06b47.tar.gz historical-1e24d6c72006b8e3c1fb621410dbab3d3eb06b47.tar.bz2 historical-1e24d6c72006b8e3c1fb621410dbab3d3eb06b47.zip |
Migrate to distutils-r1.
Package-Manager: portage-2.2.0_alpha149/cvs/Linux x86_64
Manifest-Sign-Key: 0x42B9401D
Diffstat (limited to 'dev-python/unittest2/unittest2-0.5.1-r1.ebuild')
-rw-r--r-- | dev-python/unittest2/unittest2-0.5.1-r1.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/unittest2/unittest2-0.5.1-r1.ebuild b/dev-python/unittest2/unittest2-0.5.1-r1.ebuild new file mode 100644 index 000000000000..4f9bb45379a5 --- /dev/null +++ b/dev-python/unittest2/unittest2-0.5.1-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-0.5.1-r1.ebuild,v 1.1 2013/01/07 21:59:41 mgorny Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +PY3_P=${PN}py3k-${PV} + +DESCRIPTION="The new features in unittest for Python 2.7 backported to Python 2.4+" +HOMEPAGE="http://pypi.python.org/pypi/unittest2 + http://pypi.python.org/pypi/unittest2py3k http://code.google.com/p/unittest-ext/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz + mirror://pypi/${PN:0:1}/${PN}/${PY3_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +python_prepare_all() { + # Disable versioning of unit2 script to avoid collision with versioning performed by distutils_src_install(). + sed -i -e "/'%s = unittest2:main_' % SCRIPT2,/d" setup.py || die + + distutils-r1_python_prepare_all +} + +select_source() { + if [[ ${EPYTHON} == python3* ]]; then + cd "${WORKDIR}"/${PY3_P} || die + else + cd "${S}" || die + fi +} + +python_compile() { + select_source + distutils-r1_python_compile +} + +src_test() { + # multiprocessing causes test failure with signals + local DISTUTILS_NO_PARALLEL_BUILD=1 + + distutils-r1_src_test +} + +python_test() { + cd "${BUILD_DIR}" || die + scripts/unit2 discover -s lib || die "Tests fail with ${EPYTHON}" +} + +python_install() { + select_source + distutils-r1_python_install +} |