idella4 14/12/07 06:43:03 Modified: ChangeLog Added: billiard-3.3.0.19.ebuild Log: bump; add pypy3 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.25 dev-python/billiard/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/billiard/ChangeLog?rev=1.25&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/billiard/ChangeLog?rev=1.25&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/billiard/ChangeLog?r1=1.24&r2=1.25 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ChangeLog 16 Jul 2014 08:54:17 -0000 1.24 +++ ChangeLog 7 Dec 2014 06:43:02 -0000 1.25 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/billiard # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v 1.24 2014/07/16 08:54:17 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/ChangeLog,v 1.25 2014/12/07 06:43:02 idella4 Exp $ + +*billiard-3.3.0.19 (07 Dec 2014) + + 07 Dec 2014; Ian Delaney <idel...@gentoo.org> +billiard-3.3.0.19.ebuild: + bump; add pypy3 *billiard-3.3.0.18 (16 Jul 2014) 1.1 dev-python/billiard/billiard-3.3.0.19.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/billiard/billiard-3.3.0.19.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/billiard/billiard-3.3.0.19.ebuild?rev=1.1&content-type=text/plain Index: billiard-3.3.0.19.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/billiard-3.3.0.19.ebuild,v 1.1 2014/12/07 06:43:02 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) 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="doc test" RDEPEND="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( >=dev-python/unittest2-0.4.0[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] dev-python/nose-cover3[${PYTHON_USEDEP}] $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy pypy3 ) )" # The usual req'd for tests DISTUTILS_IN_SOURCE_BUILD=1 python_compile() { if ! python_is_python3; then local CFLAGS=${CFLAGS} append-cflags -fno-strict-aliasing fi distutils-r1_python_compile } python_compile_all() { use doc && esetup.py build_sphinx --builder="html" --source-dir=Doc/ } python_test() { cd "${BUILD_DIR}" || die # The teardown in __init__.py breaks pypy's installed nose if [[ "${EPYTHON}" == pypy ]]; then rm lib/billiard/tests/__init__.py || die echo "from __future__ import absolute_import" >> ./lib/billiard/tests/__init__.py || die fi nosetests billiard.tests || die "Tests fail with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( build/sphinx/html/. ) distutils-r1_python_install_all }