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 pyzmq-14.1.1.ebuild ChangeLog
Date: Wed, 02 Apr 2014 08:26:21
Message-Id: 20140402082610.BBC2F20060@flycatcher.gentoo.org
1 idella4 14/04/02 08:26:10
2
3 Modified: pyzmq-14.0.1.ebuild pyzmq-14.1.1.ebuild ChangeLog
4 Log:
5 ditto -14.1.1
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.5 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.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?r1=1.4&r2=1.5
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.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- pyzmq-14.0.1.ebuild 2 Apr 2014 08:09:35 -0000 1.4
23 +++ pyzmq-14.0.1.ebuild 2 Apr 2014 08:26:10 -0000 1.5
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.4 2014/04/02 08:09:35 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild,v 1.5 2014/04/02 08:26:10 idella4 Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
32 @@ -41,7 +41,7 @@
33 if python_is_python3; then
34 einfo "Skipping python3 due to lack of support by gevent"
35 else
36 - nosetests -svw "${BUILD_DIR}/lib/" || die
37 + nosetests -svw "${BUILD_DIR}/lib/"
38 fi
39 }
40
41
42
43
44 1.2 dev-python/pyzmq/pyzmq-14.1.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild?rev=1.2&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild?rev=1.2&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild?r1=1.1&r2=1.2
49
50 Index: pyzmq-14.1.1.ebuild
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild,v
53 retrieving revision 1.1
54 retrieving revision 1.2
55 diff -u -r1.1 -r1.2
56 --- pyzmq-14.1.1.ebuild 18 Mar 2014 23:03:55 -0000 1.1
57 +++ pyzmq-14.1.1.ebuild 2 Apr 2014 08:26:10 -0000 1.2
58 @@ -1,6 +1,6 @@
59 # Copyright 1999-2014 Gentoo Foundation
60 # Distributed under the terms of the GNU General Public License v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild,v 1.1 2014/03/18 23:03:55 radhermit Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.1.1.ebuild,v 1.2 2014/04/02 08:26:10 idella4 Exp $
63
64 EAPI=5
65 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
66 @@ -23,9 +23,9 @@
67 DEPEND="${RDEPEND}
68 test? (
69 dev-python/cffi[${PYTHON_USEDEP}]
70 - dev-python/nose[${PY2_USEDEP}]
71 + dev-python/nose[${PYTHON_USEDEP}]
72 dev-python/gevent[${PY2_USEDEP}]
73 - dev-python/cython[${PY2_USEDEP}]
74 + dev-python/cython[${PYTHON_USEDEP}]
75 )"
76
77 python_configure_all() {
78 @@ -38,17 +38,14 @@
79 }
80
81 python_test() {
82 - if [[ "${EPYTHON}" == python3* ]]; then
83 - einfo "Skipping python3 due to many incompatibilities"
84 + if python_is_python3; then
85 + einfo "Skipping python3 due to lack of support by gevent"
86 else
87 - nosetests -svw "${BUILD_DIR}/lib/" || die "Tests fail with ${EPYTHON}"
88 + nosetests -svw "${BUILD_DIR}/lib/"
89 fi
90 }
91
92 python_install_all() {
93 + use examples && local EXAMPLES=( examples/. )
94 distutils-r1_python_install_all
95 - if use examples; then
96 - dodoc -r examples
97 - docompress -x /usr/share/doc/${PF}/examples
98 - fi
99 }
100
101
102
103 1.45 dev-python/pyzmq/ChangeLog
104
105 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.45&view=markup
106 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.45&content-type=text/plain
107 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.44&r2=1.45
108
109 Index: ChangeLog
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
112 retrieving revision 1.44
113 retrieving revision 1.45
114 diff -u -r1.44 -r1.45
115 --- ChangeLog 2 Apr 2014 08:09:35 -0000 1.44
116 +++ ChangeLog 2 Apr 2014 08:26:10 -0000 1.45
117 @@ -1,6 +1,10 @@
118 # ChangeLog for dev-python/pyzmq
119 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
120 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.44 2014/04/02 08:09:35 idella4 Exp $
121 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.45 2014/04/02 08:26:10 idella4 Exp $
122 +
123 + 02 Apr 2014; Ian Delaney <idella4@g.o> pyzmq-14.0.1.ebuild,
124 + pyzmq-14.1.1.ebuild:
125 + ditto -14.1.1
126
127 02 Apr 2014; Ian Delaney <idella4@g.o> pyzmq-14.0.1.ebuild:
128 correction to deps, tidy to test phase, update to python_install_all phase