Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/urwid: ChangeLog urwid-0.9.9.1.ebuild
Date: Thu, 28 Jan 2010 18:32:34
Message-Id: E1NaZAA-0008Ac-Dt@stork.gentoo.org
1 arfrever 10/01/28 18:32:18
2
3 Modified: ChangeLog
4 Added: urwid-0.9.9.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 15214-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.40 dev-python/urwid/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 7 Jan 2010 15:55:09 -0000 1.39
23 +++ ChangeLog 28 Jan 2010 18:32:17 -0000 1.40
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/urwid
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.39 2010/01/07 15:55:09 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.40 2010/01/28 18:32:17 arfrever Exp $
29 +
30 +*urwid-0.9.9.1 (28 Jan 2010)
31 +
32 + 28 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +urwid-0.9.9.1.ebuild:
34 + Version bump.
35
36 07 Jan 2010; Joseph Jezak <josejx@g.o> urwid-0.9.9.ebuild:
37 Marked ppc stable for bug #297715.
38
39
40
41 1.1 dev-python/urwid/urwid-0.9.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/urwid-0.9.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/urwid-0.9.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: urwid-0.9.9.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/urwid-0.9.9.1.ebuild,v 1.1 2010/01/28 18:32:17 arfrever Exp $
51
52 EAPI="2"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
56
57 DESCRIPTION="Urwid is a curses-based user interface library for Python."
58 HOMEPAGE="http://excess.org/urwid/ http://pypi.python.org/pypi/urwid"
59 SRC_URI="http://excess.org/urwid/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
64 IUSE="examples"
65
66 DEPEND="dev-python/setuptools"
67 RDEPEND=""
68 RESTRICT_PYTHON_ABIS="3.*"
69
70 src_test() {
71 testing() {
72 "$(PYTHON)" test_urwid.py
73 }
74 python_execute_function testing
75 }
76
77 src_install() {
78 distutils_src_install
79
80 dohtml tutorial.html reference.html
81
82 if use examples; then
83 insinto /usr/share/doc/${PF}/examples
84 doins bigtext.py browse.py calc.py dialog.py edit.py
85 doins fib.py graph.py input_test.py tour.py
86 fi
87 }