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-script: flask-script-2.0.3.ebuild ChangeLog
Date: Tue, 06 May 2014 10:24:05
Message-Id: 20140506102400.A6B502004C@flycatcher.gentoo.org
1 idella4 14/05/06 10:24:00
2
3 Modified: ChangeLog
4 Added: flask-script-2.0.3.ebuild
5 Log:
6 bump; drop py2.6 add pypy support
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.15 dev-python/flask-script/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 31 Mar 2014 08:20:32 -0000 1.14
24 +++ ChangeLog 6 May 2014 10:24:00 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-script
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.14 2014/03/31 08:20:32 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.15 2014/05/06 10:24:00 idella4 Exp $
30 +
31 +*flask-script-2.0.3 (06 May 2014)
32 +
33 + 06 May 2014; Ian Delaney <idella4@g.o> +flask-script-2.0.3.ebuild:
34 + bump; drop py2.6 add pypy support
35
36 *flask-script-0.6.7 (31 Mar 2014)
37
38
39
40
41 1.1 dev-python/flask-script/flask-script-2.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-2.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-2.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-script-2.0.3.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-script/flask-script-2.0.3.ebuild,v 1.1 2014/05/06 10:24:00 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3} pypy )
54
55 inherit distutils-r1
56
57 MY_PN="Flask-Script"
58 MY_P="${MY_PN}-${PV}"
59
60 DESCRIPTION="Flask support for writing external scripts."
61 HOMEPAGE="http://packages.python.org/Flask-Script/ http://pypi.python.org/pypi/Flask-Script"
62 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc test"
68
69 RDEPEND=">=dev-python/flask-0.10.1-r1[${PYTHON_USEDEP}]
70 virtual/python-argparse[${PYTHON_USEDEP}]"
71 DEPEND="${RDEPEND}
72 dev-python/setuptools[${PYTHON_USEDEP}]
73 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
74 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
75
76 S="${WORKDIR}/${MY_P}"
77
78 python_compile_all() {
79 if use doc; then
80 einfo "Generation of documentation by" ${PYTHON}
81 PYTHONPATH=".." emake -C docs html || die "Generation of documentation failed"
82 fi
83 }
84
85 python_test() {
86 py.test tests.py || die "Tests failed under ${EPYTHON}"
87 }
88
89 python_install_all() {
90 use doc && local HTML_DOCS=( docs/_build/html/. )
91 distutils-r1_python_install_all
92 }