Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/execnet: ChangeLog execnet-1.2.0.ebuild
Date: Wed, 29 Jan 2014 14:05:18
Message-Id: 20140129140513.6C3532004C@flycatcher.gentoo.org
1 grozin 14/01/29 14:05:13
2
3 Modified: ChangeLog
4 Added: execnet-1.2.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
9
10 Revision Changes Path
11 1.18 dev-python/execnet/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/execnet/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/execnet/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/execnet/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 3 Dec 2013 19:59:42 -0000 1.17
24 +++ ChangeLog 29 Jan 2014 14:05:13 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/execnet
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v 1.17 2013/12/03 19:59:42 floppym Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v 1.18 2014/01/29 14:05:13 grozin Exp $
31 +
32 +*execnet-1.2.0 (29 Jan 2014)
33 +
34 + 29 Jan 2014; Andrey Grozin <grozin@g.o> +execnet-1.2.0.ebuild:
35 + Version bump
36
37 03 Dec 2013; Mike Gilbert <floppym@g.o> execnet-1.1-r1.ebuild:
38 Revert last change and replace distutils-r1_python_test with distutils-
39
40
41
42 1.1 dev-python/execnet/execnet-1.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/execnet/execnet-1.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/execnet/execnet-1.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: execnet-1.2.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/execnet-1.2.0.ebuild,v 1.1 2014/01/29 14:05:13 grozin Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_6,2_7,3_2} pypy2_0 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Rapid multi-Python deployment"
60 HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc"
67
68 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
69 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
70 RDEPEND=""
71
72 python_compile_all() {
73 use doc && emake -C doc html
74 }
75
76 src_test() {
77 # Tests are a bit fragile to failures in parallel.
78 # XXX: take a closer look, it may be easy to fix.
79 local DISTUTILS_NO_PARALLEL_BUILD=1
80
81 distutils-r1_src_test
82 }
83
84 python_test() {
85 # Re-enable in order to properly test disabling it ;).
86 # https://bitbucket.org/hpk42/execnet/issue/10
87 unset PYTHONDONTWRITEBYTECODE
88
89 py.test || die "Tests fail with ${EPYTHON}"
90 }
91
92 python_install_all() {
93 use doc && local HTML_DOCS=( doc/_build/html/. )
94
95 distutils-r1_python_install_all
96 }