Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@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: Tue, 03 Dec 2013 08:15:02
Message-Id: 20131203081454.DFBD42004B@flycatcher.gentoo.org
1 dev-zero 13/12/03 08:14:54
2
3 Modified: ChangeLog
4 Added: pyzmq-14.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0x1E0CA85F!)
9
10 Revision Changes Path
11 1.38 dev-python/pyzmq/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 29 Nov 2013 22:46:24 -0000 1.37
24 +++ ChangeLog 3 Dec 2013 08:14:54 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyzmq
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.37 2013/11/29 22:46:24 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.38 2013/12/03 08:14:54 dev-zero Exp $
30 +
31 +*pyzmq-14.0.1 (03 Dec 2013)
32 +
33 + 03 Dec 2013; Tiziano Müller <dev-zero@g.o> +pyzmq-14.0.1.ebuild:
34 + Version bump.
35
36 29 Nov 2013; Pacho Ramos <pacho@g.o> pyzmq-13.1.0.ebuild:
37 amd64 stable, bug #488738
38
39
40
41 1.1 dev-python/pyzmq/pyzmq-14.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyzmq-14.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.0.1.ebuild,v 1.1 2013/12/03 08:14:54 dev-zero Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
54
55 inherit distutils-r1 toolchain-funcs
56
57 DESCRIPTION="PyZMQ is a lightweight and super-fast messaging library built on top of the ZeroMQ library"
58 HOMEPAGE="http://www.zeromq.org/bindings:python http://pypi.python.org/pypi/pyzmq"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
64 IUSE="examples green test"
65
66 PY2_USEDEP=$(python_gen_usedep 'python2*')
67
68 RDEPEND=">=net-libs/zeromq-2.1.9
69 green? ( dev-python/gevent[${PY2_USEDEP}] )"
70 DEPEND="${RDEPEND}
71 test? (
72 !arm? ( dev-python/cffi[${PYTHON_USEDEP}] )
73 dev-python/nose[${PY2_USEDEP}]
74 dev-python/gevent[${PY2_USEDEP}]
75 dev-python/cython[${PY2_USEDEP}]
76 )"
77
78 REQUIRED_USE="test? ( !arm )"
79
80 python_configure_all() {
81 tc-export CC
82 }
83
84 python_compile() {
85 python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
86 distutils-r1_python_compile
87 }
88
89 python_test() {
90 if [[ "${EPYTHON}" == python3* ]]; then
91 einfo "Skipping python3 due to many incompatibilities"
92 else
93 nosetests -svw "${BUILD_DIR}/lib/" || die "Tests fail with ${EPYTHON}"
94 fi
95 }
96
97 python_install_all() {
98 distutils-r1_python_install_all
99 if use examples; then
100 dodoc -r examples
101 docompress -x /usr/share/doc/${PF}/examples
102 fi
103 }