diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-11-13 10:08:56 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-11-13 10:08:56 +0000 |
commit | 02a089933ae0640be55571b25c8f5cfde08a5771 (patch) | |
tree | 12fb60a9fde1d26b392f01c6bb00af96baea29ac /dev-python/oauthlib | |
parent | Bump (diff) | |
download | gentoo-2-02a089933ae0640be55571b25c8f5cfde08a5771.tar.gz gentoo-2-02a089933ae0640be55571b25c8f5cfde08a5771.tar.bz2 gentoo-2-02a089933ae0640be55571b25c8f5cfde08a5771.zip |
Bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/oauthlib')
-rw-r--r-- | dev-python/oauthlib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/oauthlib/oauthlib-0.3.3.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-python/oauthlib/ChangeLog b/dev-python/oauthlib/ChangeLog index d719e4898257..7780872f52f0 100644 --- a/dev-python/oauthlib/ChangeLog +++ b/dev-python/oauthlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/oauthlib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.11 2012/11/06 10:55:03 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.12 2012/11/13 10:08:56 patrick Exp $ + +*oauthlib-0.3.3 (13 Nov 2012) + + 13 Nov 2012; Patrick Lauer <patrick@gentoo.org> +oauthlib-0.3.3.ebuild: + Bump 06 Nov 2012; Agostino Sarubbo <ago@gentoo.org> oauthlib-0.3.0.ebuild: Stable for amd64, wrt bug #441282 diff --git a/dev-python/oauthlib/oauthlib-0.3.3.ebuild b/dev-python/oauthlib/oauthlib-0.3.3.ebuild new file mode 100644 index 000000000000..431e755edbca --- /dev/null +++ b/dev-python/oauthlib/oauthlib-0.3.3.ebuild @@ -0,0 +1,39 @@ +# 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.3.3.ebuild,v 1.1 2012/11/13 10:08:56 patrick Exp $ + +EAPI="4" + +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.5 3.*" +DISTUTILS_SRC_TEST="nosetests" +# Tests depend on dict order, see https://github.com/idangazit/oauthlib/issues/40 +PYTHON_TESTS_RESTRICTED_ABIS="*-pypy-*" + +inherit distutils + +DESCRIPTION="A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +HOMEPAGE="https://github.com/idan/oauthlib + http://pypi.python.org/pypi/oauthlib" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +RDEPEND="dev-python/pycrypto" +DEPEND="${RDEPEND} + dev-python/setuptools + test? ( dev-python/unittest2 )" + +src_test() { + touch tests/__init__.py + distutils_src_test +} + +src_install() { + rm -f tests/__init__.py + distutils_src_install +} |