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.3.ebuild ChangeLog
Date: Tue, 26 Nov 2013 05:40:40
Message-Id: 20131126054032.304EB2004B@flycatcher.gentoo.org
1 patrick 13/11/26 05:40:32
2
3 Modified: ChangeLog
4 Added: flask-script-0.6.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.11 dev-python/flask-script/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 19 Aug 2013 13:41:08 -0000 1.10
24 +++ ChangeLog 26 Nov 2013 05:40:32 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-script
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.10 2013/08/19 13:41:08 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-script/ChangeLog,v 1.11 2013/11/26 05:40:32 patrick Exp $
30 +
31 +*flask-script-0.6.3 (26 Nov 2013)
32 +
33 + 26 Nov 2013; Patrick Lauer <patrick@g.o> +flask-script-0.6.3.ebuild:
34 + Bump
35
36 *flask-script-0.6.2 (19 Aug 2013)
37
38
39
40
41 1.1 dev-python/flask-script/flask-script-0.6.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-0.6.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-script/flask-script-0.6.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: flask-script-0.6.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.3.ebuild,v 1.1 2013/11/26 05:40: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 }