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-script: flask-script-0.6.7.ebuild ChangeLog
Date: Mon, 31 Mar 2014 08:20:41
Message-Id: 20140331082032.36D8E2005C@flycatcher.gentoo.org
1 patrick 14/03/31 08:20:32
2
3 Modified: ChangeLog
4 Added: flask-script-0.6.7.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.14 dev-python/flask-script/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 21 Jan 2014 04:07:58 -0000 1.13
24 +++ ChangeLog 31 Mar 2014 08:20:32 -0000 1.14
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.13 2014/01/21 04:07:58 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.14 2014/03/31 08:20:32 patrick Exp $
30 +
31 +*flask-script-0.6.7 (31 Mar 2014)
32 +
33 + 31 Mar 2014; Patrick Lauer <patrick@g.o> +flask-script-0.6.7.ebuild:
34 + Bump
35
36 21 Jan 2014; Patrick Lauer <patrick@g.o> -flask-script-0.3.1.ebuild,
37 -flask-script-0.3.3.ebuild, -flask-script-0.5.1.ebuild,
38
39
40
41 1.1 dev-python/flask-script/flask-script-0.6.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-0.6.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-0.6.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-script-0.6.7.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-0.6.7.ebuild,v 1.1 2014/03/31 08:20:32 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7,3_3} )
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 }