author | Da Risk <da_risk@geekorum.com> |
Sun, 02 Feb 2014 18:38:09 +0100 | |
changeset 122 | b6a7199d21ea |
parent 112 | 78ed8648e21d |
permissions | -rw-r--r-- |
112
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
1 |
# Copyright 1999-2013 Gentoo Foundation |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
2 |
# Distributed under the terms of the GNU General Public License v2 |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
3 |
# $Header: $ |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
4 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
5 |
EAPI=5 |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
6 |
PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
7 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
8 |
inherit distutils-r1 |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
9 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
10 |
MY_PN="PyJWT" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
11 |
MY_P="${MY_PN}-${PV}" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
12 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
13 |
DESCRIPTION="A Python implementation of JSON Web Token" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
14 |
HOMEPAGE="http://pypi.python.org/pypi/PyJWT" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
15 |
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
16 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
17 |
LICENSE="MIT" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
18 |
SLOT="0" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
19 |
KEYWORDS="~amd64 ~x86" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
20 |
IUSE="" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
21 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
22 |
RDEPEND="" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
23 |
DEPEND="${RDEPEND} |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
24 |
dev-python/setuptools[${PYTHON_USEDEP}]" |
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
25 |
|
78ed8648e21d
Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
26 |
S="${WORKDIR}/${MY_P}" |