Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/urwid: ChangeLog urwid-0.9.8.4.ebuild
Date: Sat, 21 Mar 2009 16:48:28
Message-Id: E1Ll4Mz-0007jC-94@stork.gentoo.org
1 patrick 09/03/21 16:48:25
2
3 Modified: ChangeLog
4 Added: urwid-0.9.8.4.ebuild
5 Log:
6 Bump to 0.9.8.4, closes #262612
7 (Portage version: 2.2_rc26/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 dev-python/urwid/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 15 Feb 2009 14:18:31 -0000 1.24
23 +++ ChangeLog 21 Mar 2009 16:48:25 -0000 1.25
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/urwid
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.24 2009/02/15 14:18:31 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.25 2009/03/21 16:48:25 patrick Exp $
29 +
30 +*urwid-0.9.8.4 (21 Mar 2009)
31 +
32 + 21 Mar 2009; Patrick Lauer <patrick@g.o> +urwid-0.9.8.4.ebuild:
33 + Bump to 0.9.8.4, closes #262612
34
35 *urwid-0.9.8.3 (15 Feb 2009)
36
37
38
39
40 1.1 dev-python/urwid/urwid-0.9.8.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/urwid-0.9.8.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/urwid/urwid-0.9.8.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: urwid-0.9.8.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/urwid-0.9.8.4.ebuild,v 1.1 2009/03/21 16:48:25 patrick Exp $
50
51 NEED_PYTHON=2.2
52
53 inherit distutils
54
55 DESCRIPTION="Urwid is a curses-based user interface library for Python."
56 HOMEPAGE="http://excess.org/urwid/"
57 SRC_URI="http://excess.org/urwid/${P}.tar.gz"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
62 IUSE="examples"
63
64 DEPEND="dev-python/setuptools"
65 RDEPEND=""
66
67 src_test() {
68 "${python}" test_urwid.py || die "unit tests failed"
69 }
70
71 src_install() {
72 distutils_src_install
73
74 dohtml tutorial.html reference.html
75
76 if use examples; then
77 insinto /usr/share/doc/${PF}/examples
78 doins bigtext.py browse.py calc.py dialog.py edit.py
79 doins fib.py graph.py input_test.py tour.py
80 fi
81 }