Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pythondialog: pythondialog-3.1.0.ebuild ChangeLog pythondialog-2.7-r1.ebuild
Date: Mon, 01 Sep 2014 09:13:11
Message-Id: 20140901091307.A6D8046B4@oystercatcher.gentoo.org
1 idella4 14/09/01 09:13:07
2
3 Modified: ChangeLog
4 Added: pythondialog-3.1.0.ebuild
5 Removed: pythondialog-2.7-r1.ebuild
6 Log:
7 bump; add py3.4 suppot, IUSE examples and its install, remove one old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.20 dev-python/pythondialog/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pythondialog/ChangeLog?rev=1.20&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pythondialog/ChangeLog?rev=1.20&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pythondialog/ChangeLog?r1=1.19&r2=1.20
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pythondialog/ChangeLog,v
21 retrieving revision 1.19
22 retrieving revision 1.20
23 diff -u -r1.19 -r1.20
24 --- ChangeLog 10 Aug 2014 21:20:11 -0000 1.19
25 +++ ChangeLog 1 Sep 2014 09:13:07 -0000 1.20
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pythondialog
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pythondialog/ChangeLog,v 1.19 2014/08/10 21:20:11 slyfox Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pythondialog/ChangeLog,v 1.20 2014/09/01 09:13:07 idella4 Exp $
31 +
32 +*pythondialog-3.1.0 (01 Sep 2014)
33 +
34 + 01 Sep 2014; Ian Delaney <idella4@g.o> +pythondialog-3.1.0.ebuild,
35 + -pythondialog-2.7-r1.ebuild:
36 + bump; add py3.4 suppot, IUSE examples and its install, remove one old
37
38 10 Aug 2014; Sergei Trofimovich <slyfox@g.o>
39 pythondialog-2.7-r1.ebuild, pythondialog-2.7.ebuild,
40
41
42
43 1.1 dev-python/pythondialog/pythondialog-3.1.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pythondialog/pythondialog-3.1.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pythondialog/pythondialog-3.1.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pythondialog-3.1.0.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/pythondialog/pythondialog-3.1.0.ebuild,v 1.1 2014/09/01 09:13:07 idella4 Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python{3_2,3_3,3_4} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="A Python module for making simple text/console-mode user interfaces"
60 HOMEPAGE="http://pythondialog.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/pythondialog//${PV}/python3-${P}.tar.bz2"
62
63 LICENSE="LGPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
66 IUSE="examples"
67
68 DEPEND="dev-util/dialog"
69 RDEPEND="${DEPEND}"
70
71 python_install_all() {
72 use examples && local EXAMPLES=( examples/. )
73 distutils-r1_python_install_all
74 }