diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-09-02 08:04:53 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-09-02 08:04:53 +0000 |
commit | f1726c22af02379e401f97d76b003a9747de57fb (patch) | |
tree | 57f4ea6776c1bc213f0aa7ddfee4ca07cadbcde8 /dev-python | |
parent | Stable for amd64, wrt bug #483250 (diff) | |
download | gentoo-2-f1726c22af02379e401f97d76b003a9747de57fb.tar.gz gentoo-2-f1726c22af02379e401f97d76b003a9747de57fb.tar.bz2 gentoo-2-f1726c22af02379e401f97d76b003a9747de57fb.zip |
Bump
(Portage version: 2.2.1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/billiard/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/billiard/billiard-2.7.3.32.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-python/billiard/ChangeLog b/dev-python/billiard/ChangeLog index 6f1468593c8c..b4ee9aa817d6 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.16 2013/07/08 08:30:46 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v 1.17 2013/09/02 08:04:53 patrick Exp $ + +*billiard-2.7.3.32 (02 Sep 2013) + + 02 Sep 2013; Patrick Lauer <patrick@gentoo.org> +billiard-2.7.3.32.ebuild: + Bump *billiard-2.7.3.31 (08 Jul 2013) diff --git a/dev-python/billiard/billiard-2.7.3.32.ebuild b/dev-python/billiard/billiard-2.7.3.32.ebuild new file mode 100644 index 000000000000..69b4ea17f5f8 --- /dev/null +++ b/dev-python/billiard/billiard-2.7.3.32.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.32.ebuild,v 1.1 2013/09/02 08:04:53 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}" +} |