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/wtforms: ChangeLog wtforms-0.6.ebuild
Date: Wed, 28 Apr 2010 20:24:30
Message-Id: 20100428202425.19A742C04C@corvid.gentoo.org
1 arfrever 10/04/28 20:24:25
2
3 Modified: ChangeLog
4 Added: wtforms-0.6.ebuild
5 Log:
6 Version bump.
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-python/wtforms/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wtforms/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wtforms/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wtforms/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/wtforms/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 21 Feb 2010 12:48:28 -0000 1.3
23 +++ ChangeLog 28 Apr 2010 20:24:24 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/wtforms
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/ChangeLog,v 1.3 2010/02/21 12:48:28 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/ChangeLog,v 1.4 2010/04/28 20:24:24 arfrever Exp $
29 +
30 +*wtforms-0.6 (28 Apr 2010)
31 +
32 + 28 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +wtforms-0.6.ebuild:
34 + Version bump.
35
36 *wtforms-0.5 (21 Feb 2010)
37
38
39
40
41 1.1 dev-python/wtforms/wtforms-0.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wtforms/wtforms-0.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wtforms/wtforms-0.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wtforms-0.6.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/wtforms/wtforms-0.6.ebuild,v 1.1 2010/04/28 20:24:24 arfrever Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 MY_PN="WTForms"
59 MY_P="${MY_PN}-${PV}"
60
61 DESCRIPTION="Flexible forms validation and rendering library for python web development"
62 HOMEPAGE="http://wtforms.simplecodes.com/ http://pypi.python.org/pypi/WTForms"
63 SRC_URI="http://pypi.python.org/packages/source/W/${MY_PN}/${MY_P}.zip"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc"
69
70 S="${WORKDIR}/${MY_P}"
71
72 DEPEND="doc? ( >=dev-python/sphinx-0.6 )"
73 RDEPEND=""
74 RESTRICT_PYTHON_ABIS="3.*"
75
76 DOCS="AUTHORS.txt CHANGES.txt INSTALL.txt LICENSE.txt README.txt"
77
78 src_compile() {
79 distutils_src_compile
80
81 if use doc; then
82 cd docs
83 einfo "Generation of documentation"
84 PYTHONPATH=".." emake html || die "Building of documentation failed"
85 fi
86 }
87
88 src_test() {
89 cd tests
90 testing() {
91 "$(PYTHON)" runtests.py
92 }
93 python_execute_function testing
94 }
95
96 src_install() {
97 distutils_src_install
98
99 if use doc; then
100 dohtml -r docs/_build/html/* || die "Installation of documentation failed"
101 fi
102 }