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/cytoolz: ChangeLog cytoolz-0.7.3.ebuild
Date: Wed, 03 Jun 2015 04:14:11
Message-Id: 20150603041409.3DC5DA24@oystercatcher.gentoo.org
1 idella4 15/06/03 04:14:09
2
3 Modified: ChangeLog
4 Added: cytoolz-0.7.3.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.10 dev-python/cytoolz/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 20 Mar 2015 05:29:12 -0000 1.9
24 +++ ChangeLog 3 Jun 2015 04:14:09 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/cytoolz
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v 1.9 2015/03/20 05:29:12 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v 1.10 2015/06/03 04:14:09 idella4 Exp $
30 +
31 +*cytoolz-0.7.3 (03 Jun 2015)
32 +
33 + 03 Jun 2015; Ian Delaney <idella4@g.o> +cytoolz-0.7.3.ebuild:
34 + bump
35
36 20 Mar 2015; Ian Delaney <idella4@g.o> cytoolz-0.7.2-r2.ebuild:
37 shift toolz as a dep for tests, from info from package's author
38
39
40
41 1.1 dev-python/cytoolz/cytoolz-0.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cytoolz-0.7.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.3.ebuild,v 1.1 2015/06/03 04:14:09 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Cython implementation of Toolz: High performance functional utilities"
58 HOMEPAGE="https://pypi.python.org/pypi/cytoolz"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 # Informed by author the dep in toolz is not only required but the
67 # tests are version sensitive.
68 # https://github.com/pytoolz/cytoolz/issues/57
69 RDEPEND="
70 dev-python/cython[${PYTHON_USEDEP}]"
71 DEPEND="${RDEPEND}
72 test? ( dev-python/nose[${PYTHON_USEDEP}]
73 >=dev-python/toolz-0.7.1[${PYTHON_USEDEP}] )"
74
75 python_compile() {
76 python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
77
78 distutils-r1_python_compile
79 }
80
81 python_test() {
82 pushd "${BUILD_DIR}"/lib/ > /dev/null
83 PYTHONPATH=.:${PN} nosetests --with-doctest ${PN} || die "tests failed under ${EPYTHON}"
84 popd > /dev/null
85 }