equal
deleted
inserted
replaced
|
1 # Copyright 1999-2013 Gentoo Foundation |
|
2 # Distributed under the terms of the GNU General Public License v2 |
|
3 # $Header: $ |
|
4 |
|
5 EAPI=5 |
|
6 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) |
|
7 |
|
8 inherit distutils-r1 |
|
9 |
|
10 MY_PN="PyJWT" |
|
11 MY_P="${MY_PN}-${PV}" |
|
12 |
|
13 DESCRIPTION="A Python implementation of JSON Web Token" |
|
14 HOMEPAGE="http://pypi.python.org/pypi/PyJWT" |
|
15 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" |
|
16 |
|
17 LICENSE="MIT" |
|
18 SLOT="0" |
|
19 KEYWORDS="~amd64 ~x86" |
|
20 IUSE="" |
|
21 |
|
22 RDEPEND="" |
|
23 DEPEND="${RDEPEND} |
|
24 dev-python/setuptools[${PYTHON_USEDEP}]" |
|
25 |
|
26 S="${WORKDIR}/${MY_P}" |