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