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/flask-wtf: flask-wtf-0.10.1.ebuild ChangeLog
Date: Thu, 28 Aug 2014 06:33:22
Message-Id: 20140828063318.18D2841A5@oystercatcher.gentoo.org
1 patrick 14/08/28 06:33:18
2
3 Modified: ChangeLog
4 Added: flask-wtf-0.10.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.15 dev-python/flask-wtf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 10 Aug 2014 21:11:07 -0000 1.14
24 +++ ChangeLog 28 Aug 2014 06:33:18 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-wtf
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/ChangeLog,v 1.14 2014/08/10 21:11:07 slyfox Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/ChangeLog,v 1.15 2014/08/28 06:33:18 patrick Exp $
30 +
31 +*flask-wtf-0.10.1 (28 Aug 2014)
32 +
33 + 28 Aug 2014; Patrick Lauer <patrick@g.o> +flask-wtf-0.10.1.ebuild:
34 + Bump
35
36 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> flask-wtf-0.10.0.ebuild,
37 flask-wtf-0.9.3.ebuild, flask-wtf-0.9.4.ebuild, flask-wtf-0.9.5.ebuild:
38
39
40
41 1.1 dev-python/flask-wtf/flask-wtf-0.10.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/flask-wtf-0.10.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/flask-wtf-0.10.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-wtf-0.10.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/flask-wtf-0.10.1.ebuild,v 1.1 2014/08/28 06:33:18 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 pypy )
54
55 # silly captcha test trying to access things over the network
56 RESTRICT="test"
57
58 inherit distutils-r1
59
60 MY_PN="Flask-WTF"
61 MY_P="${MY_PN}-${PV}"
62
63 DESCRIPTION="Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration"
64 HOMEPAGE="http://pythonhosted.org/Flask-WTF/ https://pypi.python.org/pypi/Flask-WTF"
65 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="doc test"
71
72 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
73 >=dev-python/wtforms-1.0.5[${PYTHON_USEDEP}]"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools[${PYTHON_USEDEP}]
76 test? (
77 dev-python/nose[${PYTHON_USEDEP}]
78 dev-python/flask-testing[${PYTHON_USEDEP}]
79 dev-python/flask-uploads[${PYTHON_USEDEP}]
80 dev-python/speaklater[${PYTHON_USEDEP}]
81 dev-python/flask-babel[${PYTHON_USEDEP}] )
82 doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
83 $(python_gen_cond_dep 'dev-python/werkzeug[${PYTHON_USEDEP}]' python2_7 )
84 )"
85
86 S="${WORKDIR}/${MY_P}"
87
88 python_compile_all() {
89 use doc && emake -C docs html
90 }
91
92 python_test() {
93 nosetests || die "Tests failed under ${EPYTHON}"
94 }
95
96 python_install_all() {
97 use doc && local HTML_DOCS=( docs/_build/html/. )
98 distutils-r1_python_install_all
99 }