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/pexpect: ChangeLog pexpect-3.3.ebuild
Date: Thu, 26 Jun 2014 07:11:20
Message-Id: 20140626071115.79D4D2004E@flycatcher.gentoo.org
1 radhermit 14/06/26 07:11:15
2
3 Modified: ChangeLog
4 Added: pexpect-3.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.69 dev-python/pexpect/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 15 Apr 2014 04:58:28 -0000 1.68
24 +++ ChangeLog 26 Jun 2014 07:11:15 -0000 1.69
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pexpect
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v 1.68 2014/04/15 04:58:28 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v 1.69 2014/06/26 07:11:15 radhermit Exp $
30 +
31 +*pexpect-3.3 (26 Jun 2014)
32 +
33 + 26 Jun 2014; Tim Harder <radhermit@g.o> +pexpect-3.3.ebuild:
34 + Version bump.
35
36 *pexpect-3.2 (15 Apr 2014)
37
38
39
40
41 1.1 dev-python/pexpect/pexpect-3.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pexpect-3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild,v 1.1 2014/06/26 07:11:15 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Python module for spawning child applications and responding to expected patterns"
58 HOMEPAGE="http://pexpect.sourceforge.net/ http://pypi.python.org/pypi/pexpect/ https://github.com/pexpect/pexpect/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~amd64-fbsd ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
64 IUSE="doc examples test"
65
66 DEPEND="
67 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
68 test? ( dev-python/pytest[${PYTHON_USEDEP}] )
69 "
70
71 python_compile_all() {
72 use doc && emake -C doc html
73 }
74
75 python_test() {
76 py.test tests || die "Tests fail with ${EPYTHON}"
77 }
78
79 python_install_all() {
80 use doc && local HTML_DOCS=( doc/_build/html/. )
81 use examples && local EXAMPLES=( examples/. )
82 distutils-r1_python_install_all
83 }