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