diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-07-08 08:30:46 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-07-08 08:30:46 +0000 |
commit | c48df7e2945d7afd48eb68a467e5c63f49c60af0 (patch) | |
tree | 8a45d44e1cebcc1dc181759061ce25daa1c1c74c /dev-python/billiard | |
parent | Bump (diff) | |
download | gentoo-2-c48df7e2945d7afd48eb68a467e5c63f49c60af0.tar.gz gentoo-2-c48df7e2945d7afd48eb68a467e5c63f49c60af0.tar.bz2 gentoo-2-c48df7e2945d7afd48eb68a467e5c63f49c60af0.zip |
Bump
(Portage version: 2.2.0_alpha187/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/billiard')
-rw-r--r-- | dev-python/billiard/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/billiard/billiard-2.7.3.31.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-python/billiard/ChangeLog b/dev-python/billiard/ChangeLog index 97fded0918ee..6f1468593c8c 100644 --- a/dev-python/billiard/ChangeLog +++ b/dev-python/billiard/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/billiard # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v 1.15 2013/05/02 02:27:30 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v 1.16 2013/07/08 08:30:46 patrick Exp $ + +*billiard-2.7.3.31 (08 Jul 2013) + + 08 Jul 2013; Patrick Lauer <patrick@gentoo.org> +billiard-2.7.3.31.ebuild: + Bump 02 May 2013; Mike Gilbert <floppym@gentoo.org> billiard-2.7.3.28.ebuild: Enable python3.3. diff --git a/dev-python/billiard/billiard-2.7.3.31.ebuild b/dev-python/billiard/billiard-2.7.3.31.ebuild new file mode 100644 index 000000000000..7d962c015794 --- /dev/null +++ b/dev-python/billiard/billiard-2.7.3.31.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/billiard-2.7.3.31.ebuild,v 1.1 2013/07/08 08:30:46 patrick 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 flag-o-matic + +DESCRIPTION="Python multiprocessing fork" +HOMEPAGE="http://pypi.python.org/pypi/billiard https://github.com/celery/billiard" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_compile() { + if [[ ${EPYTHON} != python3* ]]; then + local CFLAGS=${CFLAGS} + append-cflags -fno-strict-aliasing + fi + distutils-r1_python_compile +} + +python_test() { + cd "${BUILD_DIR}" || die + nosetests billiard.tests || die "Tests fail with ${EPYTHON}" +} |