From 0b90bc2fb8ef4e5748a65fc2e7126ffbea2c6382 Mon Sep 17 00:00:00 2001 From: Florian Tham Date: Wed, 16 Sep 2015 09:15:49 +0200 Subject: [PATCH] dev-python/google-api-python-client v1.4.2 --- dev-python/google-api-python-client/Manifest | 2 + .../google-api-python-client-1.4.2.ebuild | 37 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 dev-python/google-api-python-client/Manifest create mode 100644 dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest new file mode 100644 index 0000000..60a4933 --- /dev/null +++ b/dev-python/google-api-python-client/Manifest @@ -0,0 +1,2 @@ +DIST google-api-python-client-1.4.2.tar.gz 2289731 SHA256 dfb7feab9733ae99952545927b5d87dda24cea308b2040fba2c505e7f0c57696 SHA512 ab5ce56142d96ed9b38d00294133e188dfeaf70aac78054f093f03fce7c4aee5b7b99f18ee27190aaef14b7fbe2bc8d0a4e2526ff6f166e41eb0b4b050e7c6b5 WHIRLPOOL 006e24d1a4e5d2bfabcbf2503fa163d6b0a3a28a839396014bf0a91a463454f02140f38dd179a141010a03e268711c2d22c9aa3158b594e5b465d9032997e7b9 +EBUILD google-api-python-client-1.4.2.ebuild 963 SHA256 39b91fad8519de8727090f0f09d55ab8d0ca8139551b986883a59e454dc9fd89 SHA512 f16f7865759378df8a93d80584cd6fb8b520fcfa71c7c4b8ab7ce47581120404752f38c68aac5a4e3ad25c6df8d2a100ab465180034e9ac87e442667e0a2a1db WHIRLPOOL 46c311dac4a108311ce5ad4222042c32010735fcb2a4bef867cc7e956e8117add1a1b8395ab1ed4385f18024f27f316068b7614521d7170162622ed8e495e55f diff --git a/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild b/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild new file mode 100644 index 0000000..59459db --- /dev/null +++ b/dev-python/google-api-python-client/google-api-python-client-1.4.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 pypy python3_3 python3_4 ) + +inherit distutils-r1 + +DESCRIPTION="Google API Client for Python" +HOMEPAGE="https://code.google.com/p/google-api-python-client/ https://github.com/google/google-api-python-client" +SRC_URI="https://github.com/google/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm x86" +IUSE="" + +DEPEND=" + dev-python/python-gflags[${PYTHON_USEDEP}] + >=dev-python/httplib2-0.8[${PYTHON_USEDEP}] + dev-python/oauth2client[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/uritemplate[${PYTHON_USEDEP}] + " +RDEPEND="${DEPEND}" + +python_prepare_all(){ + export SKIP_GOOGLEAPICLIENT_COMPAT_CHECK=true + distutils-r1_python_prepare_all +} + +python_test() { + nosetests --verbosity=3 || die +}