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-testing: flask-testing-0.4.1.ebuild ChangeLog
Date: Mon, 31 Mar 2014 06:44:46
Message-Id: 20140331064441.B20052005C@flycatcher.gentoo.org
1 patrick 14/03/31 06:44:41
2
3 Modified: ChangeLog
4 Added: flask-testing-0.4.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.5 dev-python/flask-testing/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-testing/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-testing/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-testing/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-testing/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 12 Sep 2013 20:59:29 -0000 1.4
24 +++ ChangeLog 31 Mar 2014 06:44:41 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-testing
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-testing/ChangeLog,v 1.4 2013/09/12 20:59:29 mgorny Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-testing/ChangeLog,v 1.5 2014/03/31 06:44:41 patrick Exp $
31 +
32 +*flask-testing-0.4.1 (31 Mar 2014)
33 +
34 + 31 Mar 2014; Patrick Lauer <patrick@g.o> +flask-testing-0.4.1.ebuild:
35 + Bump
36
37 12 Sep 2013; Michał Górny <mgorny@g.o> flask-testing-0.4.ebuild:
38 Remove dep on virtual/python-json. JSON is now built-in in all supported
39
40
41
42 1.1 dev-python/flask-testing/flask-testing-0.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-testing/flask-testing-0.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-testing/flask-testing-0.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: flask-testing-0.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-testing/flask-testing-0.4.1.ebuild,v 1.1 2014/03/31 06:44:41 patrick Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Unit testing for Flask"
59 HOMEPAGE="http://pythonhosted.org/Flask-Testing/
60 https://pypi.python.org/pypi/Flask-Testing/"
61 MY_PN="Flask-Testing"
62 MY_P="${MY_PN}-${PV}"
63 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="test"
69
70 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
71 dev-python/twill[${PYTHON_USEDEP}]"
72 DEPEND="${RDEPEND}
73 dev-python/setuptools[${PYTHON_USEDEP}]
74 test? (
75 dev-python/blinker[${PYTHON_USEDEP}]
76 dev-python/nose[${PYTHON_USEDEP}]
77 )"
78
79 S="${WORKDIR}/${MY_P}"
80
81 python_test() {
82 nosetests || die "Testing failed with ${EPYTHON}"
83 }