blob: 063eb70432bd56a931df9de384635673175be07e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.1.3.ebuild,v 1.2 2012/05/09 02:08:21 floppym Exp $
EAPI="4"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5 3.*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
HOMEPAGE="https://github.com/idangazit/oauthlib
http://pypi.python.org/pypi/oauthlib"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="dev-python/rsa"
DEPEND="${RDEPEND}
dev-python/setuptools
test? ( dev-python/unittest2 )"
src_prepare() {
touch tests/__init__.py
distutils_src_prepare
}
src_install() {
distutils_src_install
cleanup() {
rm -rv "${ED}$(python_get_sitedir -b)/tests"
}
python_execute_function -q cleanup
}
|