dev-python/pyjwt/pyjwt-9999.ebuild
author Da Risk <da_risk@geekorum.com>
Fri, 21 Aug 2015 20:15:09 +0200
changeset 180 961650d8df87
parent 151 1abc0aae9e43
permissions -rw-r--r--
dev-util/android-studio: add 1.3.0.2 and 1.4 preview 3 (Portage version: 2.2.20.1/hg/Linux x86_64, unsigned Manifest commit)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 git-r3
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
EGIT_REPO_URI="https://github.com/mandus/pyjwt.git"
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
MY_PN="PyJWT"
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
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
    14
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
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
    16
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
    17
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
if [ $PV != 9999 ] ; then
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
	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
    20
	S="${WORKDIR}/${MY_P}"
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    21
fi
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
LICENSE="MIT"
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
SLOT="0"
151
1abc0aae9e43 dev-python/pyjwt: Remove old version as it is now in gentoo
Da Risk <da_risk@geekorum.com>
parents: 112
diff changeset
    25
KEYWORDS=""
112
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
IUSE=""
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    28
RDEPEND=""
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    29
#TODO add pycrypto dep
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
DEPEND="${RDEPEND}
78ed8648e21d Add dev-python/pyjwt, a python implementation of JSON Web Token
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    31
	dev-python/setuptools[${PYTHON_USEDEP}]"