Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/Flask-KVSession: metadata.xml ChangeLog Flask-KVSession-0.6.1.ebuild
Date: Thu, 27 Nov 2014 14:38:13
Message-Id: 20141127143809.8DC1EB057@oystercatcher.gentoo.org
1 aballier 14/11/27 14:38:09
2
3 Added: metadata.xml ChangeLog Flask-KVSession-0.6.1.ebuild
4 Log:
5 initial import, ebuild by me
6
7 Signed-off-by: aballier@g.o
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.1 dev-python/Flask-KVSession/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>python</herd>
22 <maintainer>
23 <email>aballier@g.o</email>
24 <name>Alexis Ballier</name>
25 <description>Python team can take the package if they wish.</description>
26 </maintainer>
27 </pkgmetadata>
28
29
30
31 1.1 dev-python/Flask-KVSession/ChangeLog
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/ChangeLog?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/ChangeLog?rev=1.1&content-type=text/plain
35
36 Index: ChangeLog
37 ===================================================================
38 # ChangeLog for dev-python/Flask-KVSession
39 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
40 # $Header: /var/cvsroot/gentoo-x86/dev-python/Flask-KVSession/ChangeLog,v 1.1 2014/11/27 14:38:09 aballier Exp $
41
42 *Flask-KVSession-0.6.1 (27 Nov 2014)
43
44 27 Nov 2014; Alexis Ballier <aballier@g.o>
45 +Flask-KVSession-0.6.1.ebuild, +metadata.xml:
46 initial import, ebuild by me
47
48
49
50
51 1.1 dev-python/Flask-KVSession/Flask-KVSession-0.6.1.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/Flask-KVSession-0.6.1.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/Flask-KVSession/Flask-KVSession-0.6.1.ebuild?rev=1.1&content-type=text/plain
55
56 Index: Flask-KVSession-0.6.1.ebuild
57 ===================================================================
58 # Copyright 1999-2014 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/dev-python/Flask-KVSession/Flask-KVSession-0.6.1.ebuild,v 1.1 2014/11/27 14:38:09 aballier Exp $
61
62 EAPI="5"
63 PYTHON_COMPAT=( python2_7 )
64
65 inherit distutils-r1
66
67 DESCRIPTION="Transparent server-side session support for flask"
68 HOMEPAGE="https://pypi.python.org/pypi/Flask-KVSession https://github.com/mbr/flask-kvsession"
69 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
70
71 LICENSE="MIT"
72 SLOT="0"
73 KEYWORDS="~amd64"
74 IUSE=""
75
76 RDEPEND="
77 >=dev-python/flask-0.8[${PYTHON_USEDEP}]
78 >=dev-python/simplekv-0.9.1[${PYTHON_USEDEP}]
79 dev-python/werkzeug[${PYTHON_USEDEP}]
80 >=dev-python/itsdangerous-0.20[${PYTHON_USEDEP}]
81 "
82 DEPEND="${RDEPEND}
83 dev-python/setuptools[${PYTHON_USEDEP}]
84 "