diff options
author | 2013-05-22 07:02:56 +0000 | |
---|---|---|
committer | 2013-05-22 07:02:56 +0000 | |
commit | 023d2f7f3f062b6ad6dbce305390adf831a3c2aa (patch) | |
tree | aa07fa29ac6d3fc15720f2aff5e28a05f52695c9 /dev-python/oauthlib | |
parent | Bump (diff) | |
download | gentoo-2-023d2f7f3f062b6ad6dbce305390adf831a3c2aa.tar.gz gentoo-2-023d2f7f3f062b6ad6dbce305390adf831a3c2aa.tar.bz2 gentoo-2-023d2f7f3f062b6ad6dbce305390adf831a3c2aa.zip |
Bump
(Portage version: 2.2.0_alpha176/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.4.1.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/oauthlib/ChangeLog b/dev-python/oauthlib/ChangeLog index 49f0a2634004..9fa60137cd09 100644 --- a/dev-python/oauthlib/ChangeLog +++ b/dev-python/oauthlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/oauthlib # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.24 2013/03/28 06:31:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.25 2013/05/22 07:02:56 patrick Exp $ + +*oauthlib-0.4.1 (22 May 2013) + + 22 May 2013; Patrick Lauer <patrick@gentoo.org> +oauthlib-0.4.1.ebuild: + Bump *oauthlib-0.4.0 (28 Mar 2013) diff --git a/dev-python/oauthlib/oauthlib-0.4.1.ebuild b/dev-python/oauthlib/oauthlib-0.4.1.ebuild new file mode 100644 index 000000000000..f8bfc2a4f3da --- /dev/null +++ b/dev-python/oauthlib/oauthlib-0.4.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.4.1.ebuild,v 1.1 2013/05/22 07:02:56 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) + +inherit distutils-r1 + +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" + +# >=pycrypto-2.6-r1 for python3 support +# unittest2 for python2 compat +RDEPEND=">=dev-python/pycrypto-2.6-r1" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + virtual/python-unittest2[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests || die +} |