Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/joblib: joblib-0.8.0.ebuild ChangeLog
Date: Sun, 01 Jun 2014 06:48:01
Message-Id: 20140601064758.33D672004E@flycatcher.gentoo.org
1 idella4 14/06/01 06:47:58
2
3 Modified: ChangeLog
4 Added: joblib-0.8.0.ebuild
5 Log:
6 bump; drop py2.6 py3.2 add py3.4 pypy support, add IUSE doc, doc build, upgrade test phase
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.10 dev-python/joblib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/joblib/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/joblib/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/joblib/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/joblib/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 8 Aug 2013 16:58:30 -0000 1.9
24 +++ ChangeLog 1 Jun 2014 06:47:58 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/joblib
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/joblib/ChangeLog,v 1.9 2013/08/08 16:58:30 bicatali Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/joblib/ChangeLog,v 1.10 2014/06/01 06:47:58 idella4 Exp $
31 +
32 +*joblib-0.8.0 (01 Jun 2014)
33 +
34 + 01 Jun 2014; Ian Delaney <idella4@g.o> +joblib-0.8.0.ebuild:
35 + bump; drop py2.6 py3.2 add py3.4 pypy support, add IUSE doc, doc build,
36 + upgrade test phase
37
38 *joblib-0.7.1 (08 Aug 2013)
39
40
41
42
43 1.1 dev-python/joblib/joblib-0.8.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/joblib/joblib-0.8.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/joblib/joblib-0.8.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: joblib-0.8.0.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/joblib/joblib-0.8.0.ebuild,v 1.1 2014/06/01 06:47:58 idella4 Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Tools to provide lightweight pipelining in Python"
61 HOMEPAGE="http://pythonhosted.org/joblib/"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE="doc"
68
69 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
70 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
71 RDEPEND="${DEPEND}"
72 # Usual; req'd for testsuite
73 DISTUTILS_IN_SOURCE_BUILD=1
74
75 python_compile_all() {
76 if use doc; then
77 sphinx-build -b html -c doc/ doc/ doc/html || die "docs failed installation"
78 fi
79 }
80
81 python_test() {
82 # https://github.com/joblib/joblib/issues/143
83 if [[ "${EPYTHON}" == pypy ]]; then
84 sed -e 's:test_func_inspect_errors:_&:' -i ${PN}/test/test_func_inspect.py || die
85 sed -e 's:test_parallel_pickling:_&:' -i ${PN}/test/test_parallel.py || die
86 fi
87
88 nosetests -w ${PN}/test || die
89 }
90
91 python_install_all() {
92 use doc && local HTML_DOCS=( doc/html/. )
93 distutils-r1_python_install_all
94 }