Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/flask-security: flask-security-1.7.1.ebuild ChangeLog
Date: Tue, 28 Jan 2014 06:42:12
Message-Id: 20140128064208.751782004C@flycatcher.gentoo.org
1 idella4 14/01/28 06:42:08
2
3 Modified: ChangeLog
4 Added: flask-security-1.7.1.ebuild
5 Log:
6 bump; update deps
7
8 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.3 dev-python/flask-security/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-security/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-security/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-security/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 14 Jan 2014 03:48:29 -0000 1.2
24 +++ ChangeLog 28 Jan 2014 06:42:08 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-security
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v 1.2 2014/01/14 03:48:29 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-security/ChangeLog,v 1.3 2014/01/28 06:42:08 idella4 Exp $
30 +
31 +*flask-security-1.7.1 (28 Jan 2014)
32 +
33 + 28 Jan 2014; Ian Delaney <idella4@g.o> +flask-security-1.7.1.ebuild:
34 + bump; update deps
35
36 *flask-security-1.7.0 (14 Jan 2014)
37
38
39
40
41 1.1 dev-python/flask-security/flask-security-1.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-security/flask-security-1.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-security/flask-security-1.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-security-1.7.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-security/flask-security-1.7.1.ebuild,v 1.1 2014/01/28 06:42:08 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit distutils-r1
56
57 MY_PN="Flask-Security"
58 MY_P="${MY_PN}-${PV}"
59
60 DESCRIPTION="Simple security for Flask apps"
61 HOMEPAGE="http://pythonhosted.org/${MY_PN}/ https://pypi.python.org/pypi/${MY_PN}"
62 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="test"
68 # packages of this type require local running instances of databases
69 # which then require connect to localhost
70 RESTRICT="test"
71
72 RDEPEND=">=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
73 dev-python/itsdangerous[${PYTHON_USEDEP}]
74 >=dev-python/passlib-1.6.2[${PYTHON_USEDEP}]
75 >=dev-python/flask-login-0.2.9[${PYTHON_USEDEP}]
76 >=dev-python/flask-mail-0.9.0[${PYTHON_USEDEP}]
77 >=dev-python/flask-wtf-0.9.3f[${PYTHON_USEDEP}]
78 >=dev-python/flask-principal-0.4.0[${PYTHON_USEDEP}]"
79 DEPEND="${RDEPEND}
80 dev-python/setuptools[${PYTHON_USEDEP}]
81 test? (
82 dev-python/nose[${PYTHON_USEDEP}]
83 dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
84 dev-python/flask-mongoengine[${PYTHON_USEDEP}]
85 dev-python/flask-peewee[${PYTHON_USEDEP}]
86 dev-python/bcrypt[${PYTHON_USEDEP}]
87 dev-python/simplejson[${PYTHON_USEDEP}]
88 )"
89
90 S="${WORKDIR}/${MY_P}"
91
92 python_test() {
93 nosetests || die "Testing failed with ${EPYTHON}"
94 }