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/urwid: ChangeLog urwid-1.0.1.ebuild
Date: Fri, 02 Dec 2011 01:07:47
Message-Id: 20111202010731.13FBF2004B@flycatcher.gentoo.org
1 radhermit 11/12/02 01:07:31
2
3 Modified: ChangeLog
4 Added: urwid-1.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.46 dev-python/urwid/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/urwid/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/urwid/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 4 Nov 2011 22:30:57 -0000 1.45
24 +++ ChangeLog 2 Dec 2011 01:07:30 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/urwid
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.45 2011/11/04 22:30:57 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/ChangeLog,v 1.46 2011/12/02 01:07:30 radhermit Exp $
30 +
31 +*urwid-1.0.1 (02 Dec 2011)
32 +
33 + 02 Dec 2011; Tim Harder <radhermit@g.o> +urwid-1.0.1.ebuild:
34 + Version bump.
35
36 04 Nov 2011; Markos Chandras <hwoarang@g.o> urwid-1.0.0.ebuild:
37 Fix dependencies. Restrict Jython ABIs. Ignore tests failures with Python 3.1.
38
39
40
41 1.1 dev-python/urwid/urwid-1.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/urwid/urwid-1.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/urwid/urwid-1.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: urwid-1.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/urwid/urwid-1.0.1.ebuild,v 1.1 2011/12/02 01:07:30 radhermit Exp $
51
52 EAPI="4"
53 PYTHON_USE_WITH="ncurses"
54 SUPPORT_PYTHON_ABIS="1"
55 RESTRICT_PYTHON_ABIS="*-jython"
56 PYTHON_TESTS_FAILURES_TOLERANT_ABIS="3.1"
57 DISTUTILS_SRC_TEST="setup.py"
58
59 inherit distutils
60
61 DESCRIPTION="Urwid is a curses-based user interface library for Python"
62 HOMEPAGE="http://excess.org/urwid/ http://pypi.python.org/pypi/urwid"
63 SRC_URI="http://excess.org/urwid/${P}.tar.gz"
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
68 IUSE="examples"
69
70 DEPEND="dev-python/setuptools"
71
72 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
73
74 src_install() {
75 distutils_src_install
76
77 dohtml reference.html tutorial.html
78
79 if use examples; then
80 docinto examples
81 dodoc bigtext.py browse.py calc.py dialog.py edit.py \
82 fib.py graph.py input_test.py tour.py
83 fi
84 }