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.9.5.ebuild ChangeLog
Date: Sat, 03 May 2014 08:38:30
Message-Id: 20140503083827.AE4442004E@flycatcher.gentoo.org
1 patrick 14/05/03 08:38:27
2
3 Modified: ChangeLog
4 Added: flask-wtf-0.9.5.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.10 dev-python/flask-wtf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 21 Jan 2014 04:05:26 -0000 1.9
24 +++ ChangeLog 3 May 2014 08:38:27 -0000 1.10
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.9 2014/01/21 04:05:26 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-wtf/ChangeLog,v 1.10 2014/05/03 08:38:27 patrick Exp $
30 +
31 +*flask-wtf-0.9.5 (03 May 2014)
32 +
33 + 03 May 2014; Patrick Lauer <patrick@g.o> +flask-wtf-0.9.5.ebuild:
34 + Bump
35
36 21 Jan 2014; Patrick Lauer <patrick@g.o> -flask-wtf-0.8.3.ebuild,
37 -flask-wtf-0.8.4.ebuild, -flask-wtf-0.9.0.ebuild, -flask-wtf-0.9.1.ebuild,
38
39
40
41 1.1 dev-python/flask-wtf/flask-wtf-0.9.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/flask-wtf-0.9.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-wtf/flask-wtf-0.9.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-wtf-0.9.5.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.9.5.ebuild,v 1.1 2014/05/03 08:38:27 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7} )
54
55 inherit distutils-r1
56
57 MY_PN="Flask-WTF"
58 MY_P="${MY_PN}-${PV}"
59
60 DESCRIPTION="Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration."
61 HOMEPAGE="http://pythonhosted.org/Flask-WTF/ https://pypi.python.org/pypi/Flask-WTF"
62 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="test"
68
69 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
70 >=dev-python/wtforms-1.0[${PYTHON_USEDEP}]"
71 DEPEND="${RDEPEND}
72 dev-python/setuptools[${PYTHON_USEDEP}]
73 test? (
74 dev-python/nose[${PYTHON_USEDEP}]
75 dev-python/flask-testing[${PYTHON_USEDEP}]
76 dev-python/flask-uploads[${PYTHON_USEDEP}]
77 dev-python/speaklater[${PYTHON_USEDEP}]
78 dev-python/flask-babel[${PYTHON_USEDEP}]
79 )"
80
81 S="${WORKDIR}/${MY_P}"
82
83 python_test() {
84 nosetests || die "Testing failed with ${EPYTHON}"
85 }