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-openid: flask-openid-1.1.ebuild ChangeLog
Date: Wed, 31 Oct 2012 07:10:21
Message-Id: 20121031071005.2793521600@flycatcher.gentoo.org
1 patrick 12/10/31 07:10:05
2
3 Modified: ChangeLog
4 Added: flask-openid-1.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.3 dev-python/flask-openid/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 8 Oct 2011 17:46:15 -0000 1.2
24 +++ ChangeLog 31 Oct 2012 07:10:05 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/flask-openid
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v 1.2 2011/10/08 17:46:15 floppym Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v 1.3 2012/10/31 07:10:05 patrick Exp $
31 +
32 +*flask-openid-1.1 (31 Oct 2012)
33 +
34 + 31 Oct 2012; Patrick Lauer <patrick@g.o> +flask-openid-1.1.ebuild:
35 + Bump
36
37 08 Oct 2011; Mike Gilbert <floppym@g.o> flask-openid-1.0.1.ebuild:
38 Restrict py2.4 due to bug 382765.
39 @@ -10,4 +15,3 @@
40 24 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
41 +flask-openid-1.0.1.ebuild, +metadata.xml:
42 Initial addition (bug #328743).
43 -
44
45
46
47 1.1 dev-python/flask-openid/flask-openid-1.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: flask-openid-1.1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/flask-openid-1.1.ebuild,v 1.1 2012/10/31 07:10:04 patrick Exp $
57
58 EAPI="3"
59 PYTHON_DEPEND="2:2.5"
60 SUPPORT_PYTHON_ABIS="1"
61 RESTRICT_PYTHON_ABIS="2.4 3.*"
62
63 inherit distutils
64
65 MY_PN="Flask-OpenID"
66 MY_P="${MY_PN}-${PV}"
67
68 DESCRIPTION="OpenID support for Flask"
69 HOMEPAGE="http://pypi.python.org/pypi/Flask-OpenID"
70 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
71
72 LICENSE="BSD"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE="doc examples"
76
77 RDEPEND=">=dev-python/flask-0.3
78 >=dev-python/python-openid-2.0"
79 DEPEND="${RDEPEND}
80 dev-python/setuptools"
81
82 S="${WORKDIR}/${MY_P}"
83
84 PYTHON_MODNAME="flaskext/openid.py"
85
86 src_compile() {
87 distutils_src_compile
88
89 if use doc; then
90 einfo "Generation of documentation"
91 cd docs
92 PYTHONPATH=".." emake html || die "Generation of documentation failed"
93 fi
94 }
95
96 src_install() {
97 distutils_src_install
98
99 if use doc; then
100 dohtml -r docs/_build/html/* || die "Installation of documentation failed"
101 fi
102
103 if use examples; then
104 insinto /usr/share/doc/${PF}
105 doins -r example || die "Installation of examples failed"
106 fi
107 }