Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/gevent: gevent-0.13.8.ebuild ChangeLog
Date: Wed, 22 May 2013 01:31:22
Message-Id: 20130522013110.6EC502171D@flycatcher.gentoo.org
1 radhermit 13/05/22 01:31:10
2
3 Modified: ChangeLog
4 Added: gevent-0.13.8.ebuild
5 Log:
6 Version bump and migrate to distutils-r1.
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.11 dev-python/gevent/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 14 Feb 2013 06:17:26 -0000 1.10
24 +++ ChangeLog 22 May 2013 01:31:10 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/gevent
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v 1.10 2013/02/14 06:17:26 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v 1.11 2013/05/22 01:31:10 radhermit Exp $
30 +
31 +*gevent-0.13.8 (22 May 2013)
32 +
33 + 22 May 2013; Tim Harder <radhermit@g.o> +gevent-0.13.8.ebuild:
34 + Version bump and migrate to distutils-r1.
35
36 *gevent-1.0_rc2 (14 Feb 2013)
37
38
39
40
41 1.1 dev-python/gevent/gevent-0.13.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/gevent-0.13.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/gevent-0.13.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gevent-0.13.8.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/gevent/gevent-0.13.8.ebuild,v 1.1 2013/05/22 01:31:10 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7} )
54
55 inherit distutils-r1 flag-o-matic
56
57 DESCRIPTION="Python networking library that uses greenlet to provide synchronous API"
58 HOMEPAGE="http://gevent.org/ http://pypi.python.org/pypi/gevent/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~x86"
64 IUSE="doc examples"
65
66 RDEPEND="dev-libs/libevent
67 dev-python/greenlet[${PYTHON_USEDEP}]"
68 DEPEND="${RDEPEND}
69 dev-python/setuptools[${PYTHON_USEDEP}]
70 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
71
72 # Tests take long and fail terribly a few times.
73 # It also seems that they require network access.
74 RESTRICT="test"
75
76 python_configure_all() {
77 append-flags -fno-strict-aliasing
78 }
79
80 python_compile_all() {
81 use doc && emake -C doc html
82 }
83
84 python_test() {
85 cd greentest || die
86 "${PYTHON}" testrunner.py || die "Tests fail with ${EPYTHON}"
87 }
88
89 python_install_all() {
90 local DOCS=( AUTHORS changelog.rst README.rst )
91 use doc && local HTML_DOCS=( doc/_build/html/. )
92
93 distutils-r1_python_install_all
94
95 if use examples; then
96 dodoc -r examples
97 docompress -x /usr/share/doc/${PF}/examples
98 fi
99 }