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/pyzmq: pyzmq-14.0.1.ebuild ChangeLog
Date: Wed, 02 Apr 2014 08:09:45
Message-Id: 20140402080935.5EA2F20060@flycatcher.gentoo.org
1 idella4 14/04/02 08:09:35
2
3 Modified: pyzmq-14.0.1.ebuild ChangeLog
4 Log:
5 correction to deps, tidy to test phase, update to python_install_all phase
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.4 dev-python/pyzmq/pyzmq-14.0.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?r1=1.3&r2=1.4
15
16 Index: pyzmq-14.0.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- pyzmq-14.0.1.ebuild 16 Mar 2014 02:36:51 -0000 1.3
23 +++ pyzmq-14.0.1.ebuild 2 Apr 2014 08:09:35 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild,v 1.3 2014/03/16 02:36:51 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild,v 1.4 2014/04/02 08:09:35 idella4 Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
32 @@ -23,9 +23,9 @@
33 DEPEND="${RDEPEND}
34 test? (
35 dev-python/cffi[${PYTHON_USEDEP}]
36 - dev-python/nose[${PY2_USEDEP}]
37 + dev-python/nose[${PYTHON_USEDEP}]
38 dev-python/gevent[${PY2_USEDEP}]
39 - dev-python/cython[${PY2_USEDEP}]
40 + dev-python/cython[${PYTHON_USEDEP}]
41 )"
42
43 python_configure_all() {
44 @@ -38,17 +38,14 @@
45 }
46
47 python_test() {
48 - if [[ "${EPYTHON}" == python3* ]]; then
49 - einfo "Skipping python3 due to many incompatibilities"
50 + if python_is_python3; then
51 + einfo "Skipping python3 due to lack of support by gevent"
52 else
53 - nosetests -svw "${BUILD_DIR}/lib/" || die "Tests fail with ${EPYTHON}"
54 + nosetests -svw "${BUILD_DIR}/lib/" || die
55 fi
56 }
57
58 python_install_all() {
59 + use examples && local EXAMPLES=( examples/. )
60 distutils-r1_python_install_all
61 - if use examples; then
62 - dodoc -r examples
63 - docompress -x /usr/share/doc/${PF}/examples
64 - fi
65 }
66
67
68
69 1.44 dev-python/pyzmq/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.44&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.44&content-type=text/plain
73 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.43&r2=1.44
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
78 retrieving revision 1.43
79 retrieving revision 1.44
80 diff -u -r1.43 -r1.44
81 --- ChangeLog 18 Mar 2014 23:03:55 -0000 1.43
82 +++ ChangeLog 2 Apr 2014 08:09:35 -0000 1.44
83 @@ -1,6 +1,9 @@
84 # ChangeLog for dev-python/pyzmq
85 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.43 2014/03/18 23:03:55 radhermit Exp $
87 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.44 2014/04/02 08:09:35 idella4 Exp $
88 +
89 + 02 Apr 2014; Ian Delaney <idella4@g.o> pyzmq-14.0.1.ebuild:
90 + correction to deps, tidy to test phase, update to python_install_all phase
91
92 *pyzmq-14.1.1 (18 Mar 2014)