Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/prompt_toolkit: prompt_toolkit-0.38.ebuild ChangeLog prompt_toolkit-0.31.ebuild prompt_toolkit-0.34.ebuild
Date: Wed, 03 Jun 2015 08:07:47
Message-Id: 20150603080736.6A824A17@oystercatcher.gentoo.org
1 jlec 15/06/03 08:07:36
2
3 Modified: ChangeLog
4 Added: prompt_toolkit-0.38.ebuild
5 Removed: prompt_toolkit-0.31.ebuild
6 prompt_toolkit-0.34.ebuild
7 Log:
8 Version Bump
9
10 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
11
12 Revision Changes Path
13 1.5 dev-python/prompt_toolkit/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/prompt_toolkit/ChangeLog?rev=1.5&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/prompt_toolkit/ChangeLog?rev=1.5&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/prompt_toolkit/ChangeLog?r1=1.4&r2=1.5
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/prompt_toolkit/ChangeLog,v
22 retrieving revision 1.4
23 retrieving revision 1.5
24 diff -u -r1.4 -r1.5
25 --- ChangeLog 15 May 2015 09:05:32 -0000 1.4
26 +++ ChangeLog 3 Jun 2015 08:07:36 -0000 1.5
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-python/prompt_toolkit
29 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/prompt_toolkit/ChangeLog,v 1.4 2015/05/15 09:05:32 jlec Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/prompt_toolkit/ChangeLog,v 1.5 2015/06/03 08:07:36 jlec Exp $
32 +
33 +*prompt_toolkit-0.38 (03 Jun 2015)
34 +
35 + 03 Jun 2015; Justin Lecher <jlec@g.o> +prompt_toolkit-0.38.ebuild,
36 + -prompt_toolkit-0.31.ebuild, -prompt_toolkit-0.34.ebuild:
37 + Version Bump
38
39 *prompt_toolkit-0.37 (15 May 2015)
40
41
42
43
44 1.1 dev-python/prompt_toolkit/prompt_toolkit-0.38.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/prompt_toolkit/prompt_toolkit-0.38.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/prompt_toolkit/prompt_toolkit-0.38.ebuild?rev=1.1&content-type=text/plain
48
49 Index: prompt_toolkit-0.38.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/prompt_toolkit/prompt_toolkit-0.38.ebuild,v 1.1 2015/06/03 08:07:36 jlec Exp $
54
55 EAPI=5
56
57 PYTHON_COMPAT=(python2_7 python3_{3,4} )
58
59 inherit distutils-r1
60
61 DESCRIPTION="Building powerful interactive command lines in Python"
62 HOMEPAGE="https://pypi.python.org/pypi/prompt_toolkit/ https://github.com/jonathanslenders/python-prompt-toolkit"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 SLOT="0"
66 LICENSE="BSD"
67 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 IUSE=""
69
70 RDEPEND="
71 dev-python/pygments[${PYTHON_USEDEP}]
72 >=dev-python/six-1.8.0[${PYTHON_USEDEP}]
73 dev-python/wcwidth[${PYTHON_USEDEP}]
74 "
75 DEPEND="${RDEPEND}
76 dev-python/setuptools[${PYTHON_USEDEP}]
77 "
78
79 # not contained in tarball
80 RESTRICT="test"
81
82 python_test() {
83 "${PYTHON}" "${S}"/tests/run_tests.py || die
84 }