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