[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/, dev-python/oauth2client/files/, profiles/

2023-03-18 Thread David Seifert
commit: 96f18d1fb9e250cbfa3e2eb0d3129e5ee4d3b2d9
Author: David Seifert  gentoo  org>
AuthorDate: Sat Mar 18 16:42:42 2023 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Mar 18 16:42:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f18d1f

dev-python/oauth2client: treeclean

Closes: https://bugs.gentoo.org/733064
Signed-off-by: David Seifert  gentoo.org>

 dev-python/oauth2client/Manifest   |  2 -
 .../files/oauth2client-4.1.3-py38.patch| 35 -
 dev-python/oauth2client/metadata.xml   | 13 
 .../oauth2client/oauth2client-4.1.3-r2.ebuild  | 52 -
 .../oauth2client/oauth2client-4.1.3-r3.ebuild  | 85 --
 profiles/package.mask  |  1 -
 6 files changed, 188 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
deleted file mode 100644
index d913489a234e..
--- a/dev-python/oauth2client/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST oauth2client-4.1.3-fixes-20230207.patch 21827 BLAKE2B 
c04886be0efad92fff75f0d78c5597bbc386939001f1fc5d094f96899bcc25bbd80c4e620cdf401a45c7ed48a8c83515adc98a190cecbbd345f55b78ca4a0257
 SHA512 
4d648aff20e56628c6fa916627851d7bb50f927c1cb1a056e115130e0aec128e7e2a5571b4a35a167bbcf01762669c22008cffd5530e0006846250d32b3f8093
-DIST oauth2client-4.1.3.tar.gz 185589 BLAKE2B 
6cd61448e0d55cef7f2ba640c8cbb50ac83e76d0993391eb0acb3e156f937fcdee80576c9d45d505235a9f266495069664ccbfafd649a4e2d7a0990517ee8cb6
 SHA512 
80f49e09a6dd6767307a2c278544926fbf20b4f55e4cf83563ac7a7c1043622bd3c8c7fcf6de62896b623ca8c7947b309a5e6bf2b7cb0fccff3ff7634386b287

diff --git a/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch 
b/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch
deleted file mode 100644
index d0898c02036a..
--- a/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff --git a/oauth2client/contrib/xsrfutil.py 
b/oauth2client/contrib/xsrfutil.py
-index 7c3ec03..20f35c9 100644
 a/oauth2client/contrib/xsrfutil.py
-+++ b/oauth2client/contrib/xsrfutil.py
-@@ -44,7 +44,7 @@ def generate_token(key, user_id, action_id='', when=None):
- Returns:
- A string XSRF protection token.
- """
--digester = hmac.new(_helpers._to_bytes(key, encoding='utf-8'))
-+digester = hmac.new(_helpers._to_bytes(key, encoding='utf-8'), 
digestmod='MD5')
- digester.update(_helpers._to_bytes(str(user_id), encoding='utf-8'))
- digester.update(DELIMITER)
- digester.update(_helpers._to_bytes(action_id, encoding='utf-8'))
-diff --git a/tests/contrib/test_xsrfutil.py b/tests/contrib/test_xsrfutil.py
-index 3115827..deae568 100644
 a/tests/contrib/test_xsrfutil.py
-+++ b/tests/contrib/test_xsrfutil.py
-@@ -54,7 +54,7 @@ class Test_generate_token(unittest.TestCase):
- TEST_USER_ID_1,
- action_id=TEST_ACTION_ID_1,
- when=TEST_TIME)
--hmac.new.assert_called_once_with(TEST_KEY)
-+hmac.new.assert_called_once_with(TEST_KEY, digestmod='MD5')
- digester.digest.assert_called_once_with()
- 
- expected_digest_calls = [
-@@ -87,7 +87,7 @@ class Test_generate_token(unittest.TestCase):
- TEST_USER_ID_1,
- action_id=TEST_ACTION_ID_1)
- 
--hmac.new.assert_called_once_with(TEST_KEY)
-+hmac.new.assert_called_once_with(TEST_KEY, digestmod='MD5')
- time.time.assert_called_once_with()
- digester.digest.assert_called_once_with()
- 

diff --git a/dev-python/oauth2client/metadata.xml 
b/dev-python/oauth2client/metadata.xml
deleted file mode 100644
index 465b9dc1a08f..
--- a/dev-python/oauth2client/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   
-   
-   googleapis/oauth2client
-   oauth2client
-   
-

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
deleted file mode 100644
index f17e9279839b..
--- a/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/googleapis/oauth2client;
-SRC_URI="https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}"/${P/_p/-post}
-

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2023-02-07 Thread Robin H. Johnson
commit: 8cd0fa745bf3ae6325ee3a812e73de201e74c429
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Feb  8 01:11:06 2023 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Feb  8 05:57:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd0fa74

dev-python/oauth2client: updates

- Patching to support Py3.8..Py3.11
- Exclude broken upstream contrib django & flask
- Convert nose -> pytest

Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://bugs.gentoo.org/718972

 dev-python/oauth2client/Manifest   |  1 +
 .../oauth2client/oauth2client-4.1.3-r3.ebuild  | 85 ++
 2 files changed, 86 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 4ad1dc297cab..d913489a234e 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1 +1,2 @@
+DIST oauth2client-4.1.3-fixes-20230207.patch 21827 BLAKE2B 
c04886be0efad92fff75f0d78c5597bbc386939001f1fc5d094f96899bcc25bbd80c4e620cdf401a45c7ed48a8c83515adc98a190cecbbd345f55b78ca4a0257
 SHA512 
4d648aff20e56628c6fa916627851d7bb50f927c1cb1a056e115130e0aec128e7e2a5571b4a35a167bbcf01762669c22008cffd5530e0006846250d32b3f8093
 DIST oauth2client-4.1.3.tar.gz 185589 BLAKE2B 
6cd61448e0d55cef7f2ba640c8cbb50ac83e76d0993391eb0acb3e156f937fcdee80576c9d45d505235a9f266495069664ccbfafd649a4e2d7a0990517ee8cb6
 SHA512 
80f49e09a6dd6767307a2c278544926fbf20b4f55e4cf83563ac7a7c1043622bd3c8c7fcf6de62896b623ca8c7947b309a5e6bf2b7cb0fccff3ff7634386b287

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r3.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r3.ebuild
new file mode 100644
index ..fd404d1b6b8e
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r3.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/googleapis/oauth2client;
+SRC_URI="
+   
https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz -> 
${P}.tar.gz
+   
https://dev.gentoo.org/~robbat2/distfiles/oauth2client-4.1.3-fixes-20230207.patch
+   "
+S="${WORKDIR}"/${P/_p/-post}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+# This package supports 3 different crypto options, but tests ALL of them
+CRYPTO_A=">=dev-python/pycryptodome-2.6[${PYTHON_USEDEP}]"
+CRYPTO_B="dev-python/pyopenssl[${PYTHON_USEDEP}]"
+CRYPTO_C="(
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   )"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   || ( ${CRYPTO_A} ${CRYPTO_B} ${CRYPTO_C} )
+   dev-python/keyring[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+
+# Not well-tested upstream, and broken:
+# django dev-python/django[${PYTHON_USEDEP}]
+# flask dev-python/flask[${PYTHON_USEDEP}]
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   dev-python/fasteners[${PYTHON_USEDEP}]
+   ${CRYPTO_A}
+   ${CRYPTO_B}
+   ${CRYPTO_C}
+   )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${DISTDIR}/oauth2client-4.1.3-fixes-20230207.patch"
+)
+
+src_prepare() {
+   default
+   # These contrib modules are broken upstream:
+   REMOVE=(
+   # django
+   "${S}"/oauth2client/contrib/django_util/
+   "${S}"/samples/django/
+   "${S}"/tests/contrib/django_util/
+   "${S}"/docs/source/oauth2client.contrib.django*
+   # flask
+   "${S}"/docs/source/oauth2client.contrib.flask_util.rst
+   "${S}"/oauth2client/contrib/flask_util.py
+   "${S}"/tests/contrib/test_flask_util.py
+   )
+   rm -rf "${REMOVE[@]}"
+}
+
+python_test() {
+   TEST_ARGS=(
+   # appengine - requires appengine
+   # django_util - requires django, contrib module broken upstream
+   # flash - requires flask, contrib module broken upstream
+   --ignore-glob='*appengine*'
+   )
+   epytest "${TEST_ARGS[@]}" || die "tests fail with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2022-03-31 Thread Michał Górny
commit: f9fd264fe014c2f994e1e1cb6d38dfefa5406130
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 31 19:17:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 31 19:17:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9fd264f

dev-python/oauth2client: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 .../oauth2client/oauth2client-4.1.3-r1.ebuild  | 61 --
 1 file changed, 61 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
deleted file mode 100644
index 21462801d204..
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/googleapis/oauth2client;
-SRC_URI="https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}"/${P/_p/-post}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/flask[${PYTHON_USEDEP}]
-   dev-python/sqlalchemy[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests nose
-
-PATCHES=(
-   "${FILESDIR}/oauth2client-4.1.3-py38.patch"
-)
-
-python_prepare() {
-   # keyring is not fuly supported by pypy yet, because dbus-python can't 
support pypy
-   # oauth2client -> keyring -> secretstorage -> dbus-python
-   # https://github.com/mitya57/secretstorage/issues/10
-   case $PYTHON in
-   pypy|*pypy|*pypy3|pypy3) \
-   find "${BUILD_DIR}/.." -name '*keyring*py' -delete ;;
-   esac
-}
-
-python_test() {
-   nosetests -v \
-   -e appengine \
-   -e django_util \
-   -e test_multiprocess_file_storage \
-   -e test_bad_positional || die "tests fail with ${EPYTHON}"
-   # appengine - requires appengine
-   # django_util - requires django
-   # test_multiprocess_file_storage - requires fasteners
-   # test_bad_positional - expects TypeError, gets ValueError
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2022-03-31 Thread Jakov Smolić
commit: 9ceb4d65d962be76ad3e94dcc68f2d66e33c4774
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 31 17:35:37 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 31 17:35:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ceb4d65

dev-python/oauth2client: Stabilize 4.1.3-r2 ALLARCHES, #836498

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
index 29d0198dbeb8..134a99098d66 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${P/_p/-post}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2022-02-24 Thread Michał Górny
commit: 311a4625c0cdce9239a6b7242ced8cd5647f6e67
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 24 08:47:18 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 24 08:52:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=311a4625

dev-python/oauth2client: Bump to EAPI 8 / PEP517

Signed-off-by: Michał Górny  gentoo.org>

 .../oauth2client/oauth2client-4.1.3-r2.ebuild  | 52 ++
 1 file changed, 52 insertions(+)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
new file mode 100644
index ..29d0198dbeb8
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/googleapis/oauth2client;
+SRC_URI="https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}"/${P/_p/-post}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/flask[${PYTHON_USEDEP}]
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests nose
+
+PATCHES=(
+   "${FILESDIR}/oauth2client-4.1.3-py38.patch"
+)
+
+python_test() {
+   nosetests -v \
+   -e appengine \
+   -e django_util \
+   -e test_multiprocess_file_storage \
+   -e test_bad_positional || die "tests fail with ${EPYTHON}"
+   # appengine - requires appengine
+   # django_util - requires django
+   # test_multiprocess_file_storage - requires fasteners
+   # test_bad_positional - expects TypeError, gets ValueError
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2022-02-24 Thread Michał Górny
commit: e11bb1db918774fd0ce3c0a8dfaafa6234293089
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 24 08:46:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 24 08:52:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11bb1db

dev-python/oauth2client: Tested on py3.10

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 22622615cc0e..21462801d204 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-07-15 Thread Michał Górny
commit: 7bc586534f6bd2d51c4be8372f9f00785cf8fcaf
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 15 11:35:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 15 11:45:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc58653

dev-python/oauth2client: Add missing test dep on nose

Closes: https://bugs.gentoo.org/732348
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 04d4bdfa13b..20ee5e10c6f 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -14,9 +14,6 @@ S="${WORKDIR}"/${P/_p/-post}
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
 
 RDEPEND="
>=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
@@ -27,14 +24,15 @@ RDEPEND="
dev-python/keyring[${PYTHON_USEDEP}]
!<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
 "
-BDEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( ${RDEPEND}
+BDEPEND="
+   test? (
dev-python/flask[${PYTHON_USEDEP}]
dev-python/sqlalchemy[${PYTHON_USEDEP}]
)
 "
 
+distutils_enable_tests nose
+
 PATCHES=(
"${FILESDIR}/oauth2client-4.1.3-py38.patch"
 )



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-07-15 Thread Michał Górny
commit: fa6e8ed4861a438ed0e4451e4ab9715ada141946
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 15 11:39:00 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 15 11:45:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6e8ed4

dev-python/oauth2client: Port to py3.9

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 20ee5e10c6f..d9457f52e90 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-07-09 Thread Michał Górny
commit: 4979ef3cb84c8dea9c7160de8df7ad2454847977
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 10:06:30 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 10:08:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4979ef3c

dev-python/oauth2client: Stabilize 4.1.3-r1 ALLARCHES, #731456

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 3563b832a5a..31c14911dce 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${P/_p/-post}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-07-09 Thread Michał Górny
commit: bf7325982704bb01e51cdb83b77952db7430b52d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 10:05:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 10:08:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf732598

dev-python/oauth2client: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/oauth2client/metadata.xml 
b/dev-python/oauth2client/metadata.xml
index 9083df5a2ff..84013d57af4 100644
--- a/dev-python/oauth2client/metadata.xml
+++ b/dev-python/oauth2client/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 googleapis/oauth2client
   



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-07-09 Thread Michał Górny
commit: 4e79399379aacae1a70ffd41aefb916922aab959
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 10:07:52 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 10:08:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e793993

dev-python/oauth2client: Add test dep on flask

Closes: https://bugs.gentoo.org/731724
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 31c14911dce..04d4bdfa13b 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -30,6 +30,7 @@ RDEPEND="
 BDEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( ${RDEPEND}
+   dev-python/flask[${PYTHON_USEDEP}]
dev-python/sqlalchemy[${PYTHON_USEDEP}]
)
 "



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-06-14 Thread Aaron Bauman
commit: 5f02940a0f6ecb00faa77070dca061a31ba1bb33
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Jun 13 08:39:48 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jun 15 02:33:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f02940a

dev-python/oauth2client: update HOMEPAGE

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-python/oauth2client/metadata.xml | 2 +-
 dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild | 4 ++--
 dev-python/oauth2client/oauth2client-4.1.3.ebuild| 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/oauth2client/metadata.xml 
b/dev-python/oauth2client/metadata.xml
index 76abccb2a81..9083df5a2ff 100644
--- a/dev-python/oauth2client/metadata.xml
+++ b/dev-python/oauth2client/metadata.xml
@@ -6,6 +6,6 @@
 Python
   
   
-google/oauth2client
+googleapis/oauth2client
   
 

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
index 36afd8a2e56..3563b832a5a 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6,7,8} )
 inherit distutils-r1
 
 DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+HOMEPAGE="https://github.com/googleapis/oauth2client;
+SRC_URI="https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz
 -> ${P}.tar.gz"
 S="${WORKDIR}"/${P/_p/-post}
 
 LICENSE="Apache-2.0"

diff --git a/dev-python/oauth2client/oauth2client-4.1.3.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
index d9282e2ee91..5901030b4f9 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6,7} )
 inherit distutils-r1
 
 DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+HOMEPAGE="https://github.com/googleapis/oauth2client;
+SRC_URI="https://github.com/googleapis/oauth2client/archive/v${PV/_p/-post}.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/files/, dev-python/oauth2client/

2020-05-06 Thread Patrick McLean
commit: c5b2eb834ba0438d8333ef158be3bc19bffcd757
Author: Patrick McLean  sony  com>
AuthorDate: Thu May  7 01:33:32 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu May  7 01:33:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b2eb83

dev-python/oauth2client-4.1.3-r1: revbump, EAPI=7, add py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrick McLean  gentoo.org>

 .../files/oauth2client-4.1.3-py38.patch| 35 +
 .../oauth2client/oauth2client-4.1.3-r1.ebuild  | 61 ++
 2 files changed, 96 insertions(+)

diff --git a/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch 
b/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch
new file mode 100644
index 000..d0898c02036
--- /dev/null
+++ b/dev-python/oauth2client/files/oauth2client-4.1.3-py38.patch
@@ -0,0 +1,35 @@
+diff --git a/oauth2client/contrib/xsrfutil.py 
b/oauth2client/contrib/xsrfutil.py
+index 7c3ec03..20f35c9 100644
+--- a/oauth2client/contrib/xsrfutil.py
 b/oauth2client/contrib/xsrfutil.py
+@@ -44,7 +44,7 @@ def generate_token(key, user_id, action_id='', when=None):
+ Returns:
+ A string XSRF protection token.
+ """
+-digester = hmac.new(_helpers._to_bytes(key, encoding='utf-8'))
++digester = hmac.new(_helpers._to_bytes(key, encoding='utf-8'), 
digestmod='MD5')
+ digester.update(_helpers._to_bytes(str(user_id), encoding='utf-8'))
+ digester.update(DELIMITER)
+ digester.update(_helpers._to_bytes(action_id, encoding='utf-8'))
+diff --git a/tests/contrib/test_xsrfutil.py b/tests/contrib/test_xsrfutil.py
+index 3115827..deae568 100644
+--- a/tests/contrib/test_xsrfutil.py
 b/tests/contrib/test_xsrfutil.py
+@@ -54,7 +54,7 @@ class Test_generate_token(unittest.TestCase):
+ TEST_USER_ID_1,
+ action_id=TEST_ACTION_ID_1,
+ when=TEST_TIME)
+-hmac.new.assert_called_once_with(TEST_KEY)
++hmac.new.assert_called_once_with(TEST_KEY, digestmod='MD5')
+ digester.digest.assert_called_once_with()
+ 
+ expected_digest_calls = [
+@@ -87,7 +87,7 @@ class Test_generate_token(unittest.TestCase):
+ TEST_USER_ID_1,
+ action_id=TEST_ACTION_ID_1)
+ 
+-hmac.new.assert_called_once_with(TEST_KEY)
++hmac.new.assert_called_once_with(TEST_KEY, digestmod='MD5')
+ time.time.assert_called_once_with()
+ digester.digest.assert_called_once_with()
+ 

diff --git a/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
new file mode 100644
index 000..36afd8a2e56
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.1.3-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+S="${WORKDIR}"/${P/_p/-post}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+BDEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   dev-python/sqlalchemy[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/oauth2client-4.1.3-py38.patch"
+)
+
+python_prepare() {
+   # keyring is not fuly supported by pypy yet, because dbus-python can't 
support pypy
+   # oauth2client -> keyring -> secretstorage -> dbus-python
+   # https://github.com/mitya57/secretstorage/issues/10
+   case $PYTHON in
+   pypy|*pypy|*pypy3|pypy3) \
+   find "${BUILD_DIR}/.." -name '*keyring*py' -delete ;;
+   esac
+}
+
+python_test() {
+   nosetests -v \
+   -e appengine \
+   -e django_util \
+   -e test_multiprocess_file_storage \
+   -e test_bad_positional || die "tests fail with ${EPYTHON}"
+   # appengine - requires appengine
+   # django_util - 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-03-28 Thread Michał Górny
commit: d5d8ce4350f4084b1dd0d56b839e541764296509
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 11:14:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 11:14:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5d8ce43

dev-python/oauth2client: Remove redundant versions

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/Manifest  |  3 --
 dev-python/oauth2client/oauth2client-2.0.1.ebuild | 45 
 dev-python/oauth2client/oauth2client-2.2.0.ebuild | 45 
 dev-python/oauth2client/oauth2client-4.1.2.ebuild | 52 ---
 4 files changed, 145 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 74bde410e8e..4ad1dc297ca 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,4 +1 @@
-DIST oauth2client-2.0.1.tar.gz 153127 BLAKE2B 
f7e7ccbe42effedfb94abe4f78e2ea02867aa75ca7ff794d6db6cdb2e039d4a7d55df79df3a7f8777be215fc4aafb1dda08a23b81eaa66d64c9b2580045c158f
 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
-DIST oauth2client-2.2.0.tar.gz 167484 BLAKE2B 
60c7fc941548874f436df094a94e97312983f88af8ca472c998cb7121662363793423d420fa3e7e83032b82a3fd22a76f9331a60e3099785ef82d3fb5a781356
 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
-DIST oauth2client-4.1.2.tar.gz 184731 BLAKE2B 
09ae16a94b1f6b3eedb02ac10d660d8fda78faa82da5fed75b2a40308049c7d78951d593352f2e02c7bd9255e75b50c20996d12f451c20e1dcf2c32f54008b07
 SHA512 
908f0e32f0ef76c3eb86ee34118d4100bc08fa34aa89c561793bf8c55078f07611935ee6aecb6d2ae2f7e96a18ac3bc25af0321fe564f26042ff2bb5eab30b18
 DIST oauth2client-4.1.3.tar.gz 185589 BLAKE2B 
6cd61448e0d55cef7f2ba640c8cbb50ac83e76d0993391eb0acb3e156f937fcdee80576c9d45d505235a9f266495069664ccbfafd649a4e2d7a0990517ee8cb6
 SHA512 
80f49e09a6dd6767307a2c278544926fbf20b4f55e4cf83563ac7a7c1043622bd3c8c7fcf6de62896b623ca8c7947b309a5e6bf2b7cb0fccff3ff7634386b287

diff --git a/dev-python/oauth2client/oauth2client-2.0.1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
deleted file mode 100644
index d9abd69e6a8..000
--- a/dev-python/oauth2client/oauth2client-2.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_6)
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-S="${WORKDIR}"/${P/_p/-post}
-
-# Needs network
-RESTRICT=test
-
-python_prepare_all() {
-   sed \
-   -e 
"s:find_packages():find_packages(exclude=['tests','tests.*']):" \
-   -i setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   nosetests || die
-}

diff --git a/dev-python/oauth2client/oauth2client-2.2.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
deleted file mode 100644
index 1e40b242be1..000
--- a/dev-python/oauth2client/oauth2client-2.2.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_6)
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-S="${WORKDIR}"/${P/_p/-post}
-
-# Needs network
-RESTRICT=test
-
-python_prepare_all() {
-   sed -i \
-   -e 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2020-02-05 Thread Michał Górny
commit: 886ae4300cdc36938d15b74bcc0d5b79c3b1d3fa
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 15:42:37 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 15:47:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=886ae430

dev-python/oauth2client: Remove py2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/oauth2client/oauth2client-2.0.1.ebuild | 2 +-
 dev-python/oauth2client/oauth2client-2.2.0.ebuild | 2 +-
 dev-python/oauth2client/oauth2client-4.1.2.ebuild | 2 +-
 dev-python/oauth2client/oauth2client-4.1.3.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-2.0.1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
index 9e4fe5bf637..d9abd69e6a8 100644
--- a/dev-python/oauth2client/oauth2client-2.0.1.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_6)
+PYTHON_COMPAT=( python3_6)
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-2.2.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
index 750cc3869f8..1e40b242be1 100644
--- a/dev-python/oauth2client/oauth2client-2.2.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_6)
+PYTHON_COMPAT=( python3_6)
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-4.1.2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
index 5a6e3debe7d..8a4381e866d 100644
--- a/dev-python/oauth2client/oauth2client-4.1.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-4.1.3.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
index 22cdb28cf89..9142e679b20 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2019-05-11 Thread Matthew Thode
commit: 262b4c1f157938fe7ee490902fa9c593280510ef
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat May 11 19:07:56 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat May 11 19:25:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=262b4c1f

dev-python/oauth2client: 4.1.3 allarches stablized

Stablized for Openstack Stein

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
index db39ef71878..daff95917d6 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz -
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2019-04-10 Thread Matthew Thode
commit: 41098a599c53d672dc1b7f0a016252dad6370809
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Apr 10 22:33:44 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Apr 10 22:43:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41098a59

dev-python/oauth2client: add py37 support

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/oauth2client/oauth2client-4.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.3.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
index 86f44564fc7..fa592dcd00d 100644
--- a/dev-python/oauth2client/oauth2client-4.1.3.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2018-01-05 Thread Michał Górny
commit: d6febaa670fabf1e7b9efb2a77804673a5ae6c91
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan  5 12:44:47 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan  5 13:26:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6febaa6

dev-python/oauth2client: Clean old up

 dev-python/oauth2client/Manifest  |  2 -
 dev-python/oauth2client/oauth2client-1.5.2.ebuild | 36 --
 dev-python/oauth2client/oauth2client-4.0.0.ebuild | 45 ---
 3 files changed, 83 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 9d523ec196f..a275df3d0b5 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,5 +1,3 @@
-DIST oauth2client-1.5.2.tar.gz 131665 BLAKE2B 
dacc72b8cc22a99ec8bad234f13e6f19d8af93142fa3adb5e4b171e9b187bd86a656c3fcac01ffd37cb5b7ca90a00d9aa0b3c5f39256cb085bbe484f84461041
 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 DIST oauth2client-2.0.1.tar.gz 153127 BLAKE2B 
f7e7ccbe42effedfb94abe4f78e2ea02867aa75ca7ff794d6db6cdb2e039d4a7d55df79df3a7f8777be215fc4aafb1dda08a23b81eaa66d64c9b2580045c158f
 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 DIST oauth2client-2.2.0.tar.gz 167484 BLAKE2B 
60c7fc941548874f436df094a94e97312983f88af8ca472c998cb7121662363793423d420fa3e7e83032b82a3fd22a76f9331a60e3099785ef82d3fb5a781356
 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
-DIST oauth2client-4.0.0.tar.gz 183288 BLAKE2B 
3330cbe01228b1b57a668744ce4310ee23a55c858fd05d0424fe43c16bb7e211e0d9e2c3d8c148db276bd61fcf25db12437dce6093dfa89375caaf2c848ca528
 SHA512 
b59805702c7acb306801a04a92b7f700c0f58d5937b4b27a497018d313922512b5ec3f1711bacf13bc7e01c4f006eda5344a9055f981ba34e116c34c56c5dfec
 DIST oauth2client-4.1.2.tar.gz 184731 BLAKE2B 
09ae16a94b1f6b3eedb02ac10d660d8fda78faa82da5fed75b2a40308049c7d78951d593352f2e02c7bd9255e75b50c20996d12f451c20e1dcf2c32f54008b07
 SHA512 
908f0e32f0ef76c3eb86ee34118d4100bc08fa34aa89c561793bf8c55078f07611935ee6aecb6d2ae2f7e96a18ac3bc25af0321fe564f26042ff2bb5eab30b18

diff --git a/dev-python/oauth2client/oauth2client-1.5.2.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
deleted file mode 100644
index a67b0ceca52..000
--- a/dev-python/oauth2client/oauth2client-1.5.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-# Needs network
-RESTRICT=test
-
-python_test() {
-   nosetests || die
-}

diff --git a/dev-python/oauth2client/oauth2client-4.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-4.0.0.ebuild
deleted file mode 100644
index 9c0d1405c17..000
--- a/dev-python/oauth2client/oauth2client-4.0.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-S="${WORKDIR}"/${P/_p/-post}
-
-# Needs network
-RESTRICT=test
-
-python_prepare_all() {
-   sed -i \
-   -e 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-09-29 Thread Matt Thode
commit: 166673dd991e8d6dc37547c5720718a36892a155
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Sep 30 00:08:39 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Sep 30 00:30:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166673dd

dev-python/oauth2client: adding arm keyword under allarches for openstack pike

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-python/oauth2client/oauth2client-4.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.1.2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
index c975c088f52..5f0c4739176 100644
--- a/dev-python/oauth2client/oauth2client-4.1.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz -
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~arm amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-08-15 Thread Robin H. Johnson
commit: 42d27f0e8f26018c3c6962580bd4edfe50f557d8
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Aug 15 23:27:46 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Aug 15 23:35:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d27f0e

dev-python/oauth2client: bump, based on patch in bug 626390.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-4.1.2.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 7219f557cc7..62411fb57ee 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -2,3 +2,4 @@ DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
 DIST oauth2client-2.2.0.tar.gz 167484 SHA256 
07b44748059d6390ce2247195b2ae2117773617614f76ec9375e56fd43295f06 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
 WHIRLPOOL 
6cb1b3a6dbc4d3e0fca8d72417810873f11428afb4d4f52b08f7028c984bd330acf043ca10c339453c6f4e38c1f179c2e9126a9f6cb419323a53cbc769ebbe8f
 DIST oauth2client-4.0.0.tar.gz 183288 SHA256 
7230f52f7f1d4566a3f9c3aeb5ffe2ed80302843ce5605853bee1f08098ede46 SHA512 
b59805702c7acb306801a04a92b7f700c0f58d5937b4b27a497018d313922512b5ec3f1711bacf13bc7e01c4f006eda5344a9055f981ba34e116c34c56c5dfec
 WHIRLPOOL 
409ff71754038acb3a67841edfb7dd33865c0db9e55717ea2255eab506d298603034cc5347c6219f8978b5a2ec068a5ccf4e1f0ba53533e9810794016e4822b1
+DIST oauth2client-4.1.2.tar.gz 184731 SHA256 
77737f8f831a1306b022deb2cf6f3c9dbe4b338b8b9afcf84e7be5bef4d7e833 SHA512 
908f0e32f0ef76c3eb86ee34118d4100bc08fa34aa89c561793bf8c55078f07611935ee6aecb6d2ae2f7e96a18ac3bc25af0321fe564f26042ff2bb5eab30b18
 WHIRLPOOL 
ad4a6c6ac7a5e1831a3c2829d6ca445290e34b03134b94def27a45df0ddea0488087aefa6cd5d9fb4bd3e4843eda75eafbe03e587071eaf25e76d55116a67da0

diff --git a/dev-python/oauth2client/oauth2client-4.1.2.ebuild 
b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
new file mode 100644
index 000..fb86986d371
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+REQUIRED_USE="|| ( $(python_gen_useflags 'python*') )"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/keyring[${PYTHON_USEDEP}]' 'python*')
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${P/_p/-post}
+
+python_prepare() {
+   # keyring is not fuly supported by pypy yet, because dbus-python can't 
support pypy
+   # oauth2client -> keyring -> secretstorage -> dbus-python
+   # https://github.com/mitya57/secretstorage/issues/10
+   case $PYTHON in
+   pypy|*pypy|*pypy3|pypy3) \
+   find "${BUILD_DIR}/.." -name '*keyring*py' -delete ;;
+   esac
+}
+
+python_test() {
+   nosetests -e appengine -e django_util -e test_multiprocess_file_storage 
-e test_bad_positional || die
+   # appengine - requires appengine
+   # django_util - requires django
+   # test_multiprocess_file_storage - requires fasteners
+   # test_bad_positional - expects TypeError, gets ValueError
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-06-19 Thread Alexis Ballier
commit: 3f38cdbcd59ea83a33ff6b5422cda06600657641
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Jun 19 18:03:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Jun 19 18:12:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f38cdbc

dev-python/oauth2client: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/oauth2client/oauth2client-4.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-4.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-4.0.0.ebuild
index 9e22559bd8a..9c0d1405c17 100644
--- a/dev-python/oauth2client/oauth2client-4.0.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-4.0.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz -
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-05-03 Thread Zac Medico
commit: f6cf1aa7296853b6b2a14708aabf2c36d89d6e1b
Author: Zac Medico  gentoo  org>
AuthorDate: Thu May  4 00:25:56 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu May  4 01:21:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6cf1aa7

dev-python/oauth2client: version bump to 4.0.0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-4.0.0.ebuild | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index fa235b6df33..7219f557cc7 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,3 +1,4 @@
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
 DIST oauth2client-2.2.0.tar.gz 167484 SHA256 
07b44748059d6390ce2247195b2ae2117773617614f76ec9375e56fd43295f06 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
 WHIRLPOOL 
6cb1b3a6dbc4d3e0fca8d72417810873f11428afb4d4f52b08f7028c984bd330acf043ca10c339453c6f4e38c1f179c2e9126a9f6cb419323a53cbc769ebbe8f
+DIST oauth2client-4.0.0.tar.gz 183288 SHA256 
7230f52f7f1d4566a3f9c3aeb5ffe2ed80302843ce5605853bee1f08098ede46 SHA512 
b59805702c7acb306801a04a92b7f700c0f58d5937b4b27a497018d313922512b5ec3f1711bacf13bc7e01c4f006eda5344a9055f981ba34e116c34c56c5dfec
 WHIRLPOOL 
409ff71754038acb3a67841edfb7dd33865c0db9e55717ea2255eab506d298603034cc5347c6219f8978b5a2ec068a5ccf4e1f0ba53533e9810794016e4822b1

diff --git a/dev-python/oauth2client/oauth2client-4.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-4.0.0.ebuild
new file mode 100644
index 000..9e22559bd8a
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-4.0.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${P/_p/-post}
+
+# Needs network
+RESTRICT=test
+
+python_prepare_all() {
+   sed -i \
+   -e 
"s:find_packages():find_packages(exclude=['tests','tests.*']):" \
+   setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-03-17 Thread Zac Medico
commit: 7b850ec631c8311b2b96b5bc14a58d1cb0a4c8c8
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 17 19:49:39 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 17 19:59:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b850ec6

dev-python/oauth2client: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/oauth2client/oauth2client-2.0.1.ebuild | 2 +-
 dev-python/oauth2client/oauth2client-2.0.2.ebuild | 4 ++--
 dev-python/oauth2client/oauth2client-2.1.0.ebuild | 4 ++--
 dev-python/oauth2client/oauth2client-2.2.0.ebuild | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-2.0.1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
index b04365c1590..275a95588e9 100644
--- a/dev-python/oauth2client/oauth2client-2.0.1.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy)
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-2.0.2.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.2.ebuild
index ccf53013947..d8a566df77f 100644
--- a/dev-python/oauth2client/oauth2client-2.0.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy)
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-2.1.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.1.0.ebuild
index 0e168f50473..95a85729085 100644
--- a/dev-python/oauth2client/oauth2client-2.1.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.1.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy)
 
 inherit distutils-r1
 

diff --git a/dev-python/oauth2client/oauth2client-2.2.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
index 0e168f50473..95a85729085 100644
--- a/dev-python/oauth2client/oauth2client-2.2.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy)
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy)
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2017-02-20 Thread Markus Meier
commit: 9882ecaae1d18420106bc0c8d02c8dc18f8eeef0
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Feb 20 18:14:48 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Feb 20 18:14:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9882ecaa

dev-python/oauth2client: arm stable, bug #606074

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-python/oauth2client/oauth2client-2.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/oauth2client/oauth2client-2.0.1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
index 30e9b70671..f8cb479a06 100644
--- a/dev-python/oauth2client/oauth2client-2.0.1.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz -
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-11-26 Thread Patrice Clement
commit: 444deb7ca5f4a969a8ac4f4813d0753cce0d4670
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 26 22:14:36 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Nov 26 22:14:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444deb7c

dev-python/oauth2client: clean up old.

Package-Manager: portage-2.3.0

 dev-python/oauth2client/Manifest   |  4 ---
 dev-python/oauth2client/oauth2client-1.4.11.ebuild | 37 --
 dev-python/oauth2client/oauth2client-1.4.12.ebuild | 37 --
 dev-python/oauth2client/oauth2client-1.4.6.ebuild  | 37 --
 dev-python/oauth2client/oauth2client-1.5.1.ebuild  | 37 --
 5 files changed, 152 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index fcc8cae..d8fdaf2 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,7 +1,3 @@
-DIST oauth2client-1.4.11.tar.gz 107844 SHA256 
c7f4af0ae4ef7717fc596709e5c5d6ee5775f1fa2b2d69ccfaf0c7c42f2e6756 SHA512 
bf06e5a1bb903f940d1e384a9213e13e9e815460a5d79ad24942fbf619d70b39392bc764b0867faea4557bfe031e8a6734639401d6d4ac6297517d840b5191d3
 WHIRLPOOL 
fad31559f000ce7a3154e9fa458bc9731c7e4ef7a392e74e6888e6ee5b649a31284adb1b487fa57406a8ff30b37c9a1a840f0b1fb66bc2a9573cabea2375f2bc
-DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7de4bc1a292c044c2863592ded936f69 SHA512 
1bb43816ed0094484f103849143e065fc5566e1a8fc682da2f1d8816b2ff5b60c3ca14c6fc8ab35470c3565e2705b33c1427008dbe148ffad8564ad9bd9b0cda
 WHIRLPOOL 
30ad20ee7cdd0f7f8d0b176a6a7a961a681467322b33c8659c88522aeb78a9bc050c352cb86474df9df75690fcc2bb2f4ecb2824687fc16880b38f2c8c664aeb
-DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
-DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
 DIST oauth2client-2.0.2.tar.gz 164190 SHA256 
f1e7f1453714a3861ca0827959e507160ba065503f17d49f5a84c5eb47b86514 SHA512 
ef8c81fe7f0d254c71a15115be58787bbf771b824e988b56ba9561c58b4726b03b4fce1b8c8f50c971236c558b0205fff11b949f7b70fcf749f3eb210c8dab0b
 WHIRLPOOL 
5958b658e8af39ee7789b268b1d091489bbd1aa08bf5ede58c49492e05092e25a9907b594238e54526dabfa5acfcfe024f9926bbb9ec52cb975766b4e34847c9

diff --git a/dev-python/oauth2client/oauth2client-1.4.11.ebuild 
b/dev-python/oauth2client/oauth2client-1.4.11.ebuild
deleted file mode 100644
index 4b8372c..
--- a/dev-python/oauth2client/oauth2client-1.4.11.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 pypy)
-
-inherit distutils-r1
-
-DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
-HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
-   ~dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   ~dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
-   ~dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-# Needs network
-RESTRICT=test
-
-python_test() {
-   nosetests || die
-}

diff 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-06-14 Thread Mike Frysinger
commit: a67236e9d5d58cc06485a729d330cd667374fff5
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Jun 15 00:06:57 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Jun 15 03:56:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67236e9

dev-python/oauth2client: version bump to 2.1.0 & 2.2.0

 dev-python/oauth2client/Manifest  |  2 +
 dev-python/oauth2client/oauth2client-2.1.0.ebuild | 45 +++
 dev-python/oauth2client/oauth2client-2.2.0.ebuild | 45 +++
 3 files changed, 92 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index bfe551d..fcc8cae 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -5,3 +5,5 @@ DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eae
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
 DIST oauth2client-2.0.2.tar.gz 164190 SHA256 
f1e7f1453714a3861ca0827959e507160ba065503f17d49f5a84c5eb47b86514 SHA512 
ef8c81fe7f0d254c71a15115be58787bbf771b824e988b56ba9561c58b4726b03b4fce1b8c8f50c971236c558b0205fff11b949f7b70fcf749f3eb210c8dab0b
 WHIRLPOOL 
5958b658e8af39ee7789b268b1d091489bbd1aa08bf5ede58c49492e05092e25a9907b594238e54526dabfa5acfcfe024f9926bbb9ec52cb975766b4e34847c9
+DIST oauth2client-2.1.0.tar.gz 166673 SHA256 
2c9f26468ea56c2e223b01224558f807d8645a2f1d5792b5b50f99e442827e19 SHA512 
9db47b332c8a79f080b339fc7145fd8c5864c179032cbd703e0f236cc87412e015d2590ee22d031257d0003b09b3165e27c22a52bb789686613426104eb42cc7
 WHIRLPOOL 
87f36695cd0d37292f7544a258f6f38693a01351b1076e58dea2e9336a2691dd44d99663d94c124565407ec3727bf5cd86c031915bc170e79bb3d7805b271337
+DIST oauth2client-2.2.0.tar.gz 167484 SHA256 
07b44748059d6390ce2247195b2ae2117773617614f76ec9375e56fd43295f06 SHA512 
1e23c3f655e955dbf0cdb2b78613768ca4c6eb4336b555e3553da212fd762ba12329584f108d8145810228cf44da018675b38dd152b06e58be4eb18d4f8127c6
 WHIRLPOOL 
6cb1b3a6dbc4d3e0fca8d72417810873f11428afb4d4f52b08f7028c984bd330acf043ca10c339453c6f4e38c1f179c2e9126a9f6cb419323a53cbc769ebbe8f

diff --git a/dev-python/oauth2client/oauth2client-2.1.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.1.0.ebuild
new file mode 100644
index 000..f0ad413
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-2.1.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${P/_p/-post}
+
+# Needs network
+RESTRICT=test
+
+python_prepare_all() {
+   sed -i \
+   -e 
"s:find_packages():find_packages(exclude=['tests','tests.*']):" \
+   setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests || die
+}

diff --git a/dev-python/oauth2client/oauth2client-2.2.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
new file mode 100644
index 000..f0ad413
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-2.2.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> 

[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-04-20 Thread Mike Frysinger
commit: 86ba7078ca178d2a2a2cd6f84039fa85760d1108
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Apr 21 05:17:55 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Apr 21 05:19:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ba7078

dev-python/oauth2client: version bump to 2.0.2

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-2.0.2.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index e3d9928..bfe551d 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -4,3 +4,4 @@ DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8
 DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
 DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3
+DIST oauth2client-2.0.2.tar.gz 164190 SHA256 
f1e7f1453714a3861ca0827959e507160ba065503f17d49f5a84c5eb47b86514 SHA512 
ef8c81fe7f0d254c71a15115be58787bbf771b824e988b56ba9561c58b4726b03b4fce1b8c8f50c971236c558b0205fff11b949f7b70fcf749f3eb210c8dab0b
 WHIRLPOOL 
5958b658e8af39ee7789b268b1d091489bbd1aa08bf5ede58c49492e05092e25a9907b594238e54526dabfa5acfcfe024f9926bbb9ec52cb975766b4e34847c9

diff --git a/dev-python/oauth2client/oauth2client-2.0.2.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.2.ebuild
new file mode 100644
index 000..55bc6bc
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-2.0.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}"/${P/_p/-post}
+
+# Needs network
+RESTRICT=test
+
+python_prepare_all() {
+   sed \
+   -e 
"s:find_packages():find_packages(exclude=['tests','tests.*']):" \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-03-28 Thread Mike Frysinger
commit: eeffa42024ccd3fe8f8ffe0e114e27c221f01674
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 28 19:10:36 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 28 19:10:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeffa420

dev-python/oauth2client: version bump to 2.0.1

 dev-python/oauth2client/Manifest| 2 +-
 .../{oauth2client-2.0.0_p1.ebuild => oauth2client-2.0.1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 9bee567..e3d9928 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -3,4 +3,4 @@ DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7d
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
 DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
-DIST oauth2client-2.0.0_p1.tar.gz 149275 SHA256 
0a4a9777f5c68a28605bb8510da0b09446ec3a4cb4d6e53ec9c2e240b357eb24 SHA512 
e864c8e34757fa2e72b95d556c92549359be8e65fb709300c816090440ee6466ef6e638d67aaa5c0862d1d1e34caf5e4a9f565911cac05d186ef2c71b59aaf9c
 WHIRLPOOL 
499097e9f7de89a76f73dd6fe631647e7d4f76716d64558c3c05c5d03e33ed1ee0183c5b2202347e99bcfd388767c199a31bc990d441bfb55e5df89685bee0a3
+DIST oauth2client-2.0.1.tar.gz 153127 SHA256 
fa0357fca4ce431073ead236256347aafe3d368c16c5edaeba7f826b1b1d5fb6 SHA512 
66179a604418a8aee9ca9dbfc5ad18356d5130a588e85f4dab3330feef194af2114bc2eb18ec625acf791938e4d7f78ee55284f45a67a48c775676697ce2b183
 WHIRLPOOL 
bef0f7394cbeade328f74288bd602973a7828915ff616c7331d6c1910be02bc74a8e11062bd0602a2c4f1681d7d8c6558aecd695df3ef711f74ba81fad0b1ab3

diff --git a/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
similarity index 99%
rename from dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
rename to dev-python/oauth2client/oauth2client-2.0.1.ebuild
index 74871a0..55bc6bc 100644
--- a/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI="5"
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy)
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-23 Thread Justin Lecher
commit: c7c25c872eb7ffc7ee204c14fb05789a68866ed1
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Feb 23 07:45:57 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Feb 23 09:05:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c25c87

dev-python/oauth2client: Fix name of S

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=575408

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
index d4363a4..74871a0 100644
--- a/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
@@ -29,6 +29,8 @@ DEPEND="${RDEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )
 "
 
+S="${WORKDIR}"/${P/_p/-post}
+
 # Needs network
 RESTRICT=test
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-22 Thread Justin Lecher
commit: 970bcc2c88223b2154bb5d424860ccafd9968a54
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Feb 22 14:09:13 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Feb 22 14:09:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=970bcc2c

dev-python/oauth2client: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/Manifest| 2 +-
 .../{oauth2client-2.0.0.ebuild => oauth2client-2.0.0_p1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 6893905..9bee567 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -3,4 +3,4 @@ DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7d
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
 DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
-DIST oauth2client-2.0.0.tar.gz 148575 SHA256 
fc0ed9887399b640de58c5222f2d40be3c8b02359273be75105820ebf75082bd SHA512 
4839f9ea6384fa19ee55ee953ef4e38211afd7e409a77658e535534632dd182aabb857cebc1969bcba5d80c63fa79f965a2c0b1bb2832975c1ed8dd3cd6d3042
 WHIRLPOOL 
c418e89a9d5ef00928dae5e32aa90c664bff0b8b572ce09280ade26f764150ac42105041c3af494ad9a0ebaceb85c863be3b02c24b3216cb454e87e6e6744ac9
+DIST oauth2client-2.0.0_p1.tar.gz 149275 SHA256 
0a4a9777f5c68a28605bb8510da0b09446ec3a4cb4d6e53ec9c2e240b357eb24 SHA512 
e864c8e34757fa2e72b95d556c92549359be8e65fb709300c816090440ee6466ef6e638d67aaa5c0862d1d1e34caf5e4a9f565911cac05d186ef2c71b59aaf9c
 WHIRLPOOL 
499097e9f7de89a76f73dd6fe631647e7d4f76716d64558c3c05c5d03e33ed1ee0183c5b2202347e99bcfd388767c199a31bc990d441bfb55e5df89685bee0a3

diff --git a/dev-python/oauth2client/oauth2client-2.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
similarity index 91%
rename from dev-python/oauth2client/oauth2client-2.0.0.ebuild
rename to dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
index 1dc6d80..d4363a4 100644
--- a/dev-python/oauth2client/oauth2client-2.0.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.0_p1.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1
 
 DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
 HOMEPAGE="https://github.com/google/oauth2client;
-SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV/_p/-post}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-17 Thread Justin Lecher
commit: a05f40c8ad656ec9337a73cb3636153d8f5538df
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Feb 17 13:01:25 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Feb 17 13:01:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05f40c8

dev-python/oauth2client: Further refine tests installation blocker

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/oauth2client-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-2.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
index 23f9740..1dc6d80 100644
--- a/dev-python/oauth2client/oauth2client-2.0.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
@@ -34,7 +34,7 @@ RESTRICT=test
 
 python_prepare_all() {
sed \
-   -e "s:find_packages():find_packages(exclude=['tests']):" \
+   -e 
"s:find_packages():find_packages(exclude=['tests','tests.*']):" \
-i setup.py || die
distutils-r1_python_prepare_all
 }



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-17 Thread Justin Lecher
commit: 2d6be8c0be46c07256a267f89a00f66db0d95edd
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Feb 17 10:34:43 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Feb 17 10:34:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d6be8c0

dev-python/oauth2client: Exclude tests from installation

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/oauth2client-2.0.0.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/oauth2client/oauth2client-2.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
index db2bdb7..23f9740 100644
--- a/dev-python/oauth2client/oauth2client-2.0.0.ebuild
+++ b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
@@ -32,6 +32,13 @@ DEPEND="${RDEPEND}
 # Needs network
 RESTRICT=test
 
+python_prepare_all() {
+   sed \
+   -e "s:find_packages():find_packages(exclude=['tests']):" \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
 python_test() {
nosetests || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-17 Thread Justin Lecher
commit: 1ed0a7d9ac7c792a158c0a703eb9214835843712
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Feb 17 08:55:41 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Feb 17 08:57:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed0a7d9

dev-python/oauth2client: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-2.0.0.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 688ed37..6893905 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -3,3 +3,4 @@ DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7d
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
 DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
 DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc
+DIST oauth2client-2.0.0.tar.gz 148575 SHA256 
fc0ed9887399b640de58c5222f2d40be3c8b02359273be75105820ebf75082bd SHA512 
4839f9ea6384fa19ee55ee953ef4e38211afd7e409a77658e535534632dd182aabb857cebc1969bcba5d80c63fa79f965a2c0b1bb2832975c1ed8dd3cd6d3042
 WHIRLPOOL 
c418e89a9d5ef00928dae5e32aa90c664bff0b8b572ce09280ade26f764150ac42105041c3af494ad9a0ebaceb85c863be3b02c24b3216cb454e87e6e6744ac9

diff --git a/dev-python/oauth2client/oauth2client-2.0.0.ebuild 
b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
new file mode 100644
index 000..db2bdb7
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-2.0.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+# Needs network
+RESTRICT=test
+
+python_test() {
+   nosetests || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-02-16 Thread Mike Frysinger
commit: a8cd0d394853f0b4b3eb641ef639059f4fc661c1
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Feb 16 20:33:01 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Feb 16 20:41:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8cd0d39

dev-python/oauth2client: mark 1.5.2 arm stable #570990

 dev-python/oauth2client/oauth2client-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-1.5.2.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
index d70153f..180ef5f 100644
--- a/dev-python/oauth2client/oauth2client-1.5.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-01-20 Thread Andreas Schuerch
commit: b803b9e84aee4dcc4ab971d6ddeb00fa90a8973a
Author: Andreas Schuerch  gentoo  org>
AuthorDate: Wed Jan 20 15:24:25 2016 +
Commit: Andreas Schuerch  gentoo  org>
CommitDate: Wed Jan 20 15:24:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b803b9e8

dev-python/oauth2client: 1.5.2 stable on x86, see bug 570990

Package-Manager: portage-2.2.26

 dev-python/oauth2client/oauth2client-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-1.5.2.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
index dbb8384..d70153f 100644
--- a/dev-python/oauth2client/oauth2client-1.5.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2016-01-14 Thread Agostino Sarubbo
commit: 4d13e7ef7307605fd3aeae8faec4740b20ad43ca
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 14 11:55:34 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 14 11:55:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d13e7ef

dev-python/oauth2client: amd64 stable wrt bug #570990

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/oauth2client/oauth2client-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2client/oauth2client-1.5.2.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
index 88f2b9d..dbb8384 100644
--- a/dev-python/oauth2client/oauth2client-1.5.2.ebuild
+++ b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2015-11-24 Thread Justin Lecher
commit: 07b5a546cd91e97ddb5b783518b381e94e83675d
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Nov 24 10:18:16 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Nov 24 12:10:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b5a546

dev-python/oauth2client: Version Bump

Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-1.5.2.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index cc68da7..688ed37 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -2,3 +2,4 @@ DIST oauth2client-1.4.11.tar.gz 107844 SHA256 
c7f4af0ae4ef7717fc596709e5c5d6ee57
 DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7de4bc1a292c044c2863592ded936f69 SHA512 
1bb43816ed0094484f103849143e065fc5566e1a8fc682da2f1d8816b2ff5b60c3ca14c6fc8ab35470c3565e2705b33c1427008dbe148ffad8564ad9bd9b0cda
 WHIRLPOOL 
30ad20ee7cdd0f7f8d0b176a6a7a961a681467322b33c8659c88522aeb78a9bc050c352cb86474df9df75690fcc2bb2f4ecb2824687fc16880b38f2c8c664aeb
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
 DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec
+DIST oauth2client-1.5.2.tar.gz 131665 SHA256 
b8df20b122e4f49a5fe5bc3c825d16015f5012c171c6c81eb4048e4d8c2ffee3 SHA512 
15f10b52aa93fc10289658d5ff671a247e5c92c5ff2be424a04617fee1a3a82439b829b0f5dcb04e3e84802e02580e366e08356df7ec6e24563a530d2f6b1db5
 WHIRLPOOL 
00f3033359eceda12528ef4caffc0a9d7d6561919272fe98e09d2599114f07d9be42eb32a4038c155c621581f98ecc0eb516bcaa018d4376e30906dd4a0adfbc

diff --git a/dev-python/oauth2client/oauth2client-1.5.2.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.2.ebuild
new file mode 100644
index 000..88f2b9d
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-1.5.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 python3_{3,4,5} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+# Needs network
+RESTRICT=test
+
+python_test() {
+   nosetests || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2015-09-21 Thread Mike Frysinger
commit: 37dca647eead35ecbdfea4d7a42314689aa73559
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Sep 21 17:36:17 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Sep 21 17:36:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37dca647

dev-python/oauth2client: version bump to 1.5.1

 dev-python/oauth2client/Manifest  |  1 +
 dev-python/oauth2client/oauth2client-1.5.1.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index ad3dace..cc68da7 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,3 +1,4 @@
 DIST oauth2client-1.4.11.tar.gz 107844 SHA256 
c7f4af0ae4ef7717fc596709e5c5d6ee5775f1fa2b2d69ccfaf0c7c42f2e6756 SHA512 
bf06e5a1bb903f940d1e384a9213e13e9e815460a5d79ad24942fbf619d70b39392bc764b0867faea4557bfe031e8a6734639401d6d4ac6297517d840b5191d3
 WHIRLPOOL 
fad31559f000ce7a3154e9fa458bc9731c7e4ef7a392e74e6888e6ee5b649a31284adb1b487fa57406a8ff30b37c9a1a840f0b1fb66bc2a9573cabea2375f2bc
 DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7de4bc1a292c044c2863592ded936f69 SHA512 
1bb43816ed0094484f103849143e065fc5566e1a8fc682da2f1d8816b2ff5b60c3ca14c6fc8ab35470c3565e2705b33c1427008dbe148ffad8564ad9bd9b0cda
 WHIRLPOOL 
30ad20ee7cdd0f7f8d0b176a6a7a961a681467322b33c8659c88522aeb78a9bc050c352cb86474df9df75690fcc2bb2f4ecb2824687fc16880b38f2c8c664aeb
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b
+DIST oauth2client-1.5.1.tar.gz 130237 SHA256 
3e4ad7b3399cd9c4b8785acbbba2ca55eaefef17989f784352d2386776bf17c5 SHA512 
ad228264b93ec23bfb4bbc9614a980172e3c763adde12e0b050166ccd49eece1d2464a078884ed16cbaea60a7bf88784a22314382073e360f1ec591b19a2da2f
 WHIRLPOOL 
963b9518944dc081fdd3c32f1c6a12527a567f2c762355b109cee01b1cb1c1c35d85301bd2df6e47d2d11ac1e5b6c6a2bbc59098c10baa75ea2574567617f7ec

diff --git a/dev-python/oauth2client/oauth2client-1.5.1.ebuild 
b/dev-python/oauth2client/oauth2client-1.5.1.ebuild
new file mode 100644
index 000..415b14e
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-1.5.1.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 python3_{3,4} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION="Library for accessing resources protected by OAuth 2.0"
+HOMEPAGE="https://github.com/google/oauth2client;
+SRC_URI="https://github.com/google/oauth2client/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !<=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+# Needs network
+RESTRICT=test
+
+python_test() {
+   nosetests || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauth2client/

2015-08-30 Thread Mike Frysinger
commit: b542cc7880f97bc5f1b71f997ae82463695a22f9
Author: Mike Frysinger vapier AT gentoo DOT org
AuthorDate: Sun Aug 30 06:18:00 2015 +
Commit: Mike Frysinger vapier AT gentoo DOT org
CommitDate: Sun Aug 30 06:18:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b542cc78

dev-python/oauth2client: version bump to 1.4.12

 dev-python/oauth2client/Manifest   |  1 +
 dev-python/oauth2client/oauth2client-1.4.12.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-python/oauth2client/Manifest b/dev-python/oauth2client/Manifest
index 4b0332a..ad3dace 100644
--- a/dev-python/oauth2client/Manifest
+++ b/dev-python/oauth2client/Manifest
@@ -1,2 +1,3 @@
 DIST oauth2client-1.4.11.tar.gz 107844 SHA256 
c7f4af0ae4ef7717fc596709e5c5d6ee5775f1fa2b2d69ccfaf0c7c42f2e6756 SHA512 
bf06e5a1bb903f940d1e384a9213e13e9e815460a5d79ad24942fbf619d70b39392bc764b0867faea4557bfe031e8a6734639401d6d4ac6297517d840b5191d3
 WHIRLPOOL 
fad31559f000ce7a3154e9fa458bc9731c7e4ef7a392e74e6888e6ee5b649a31284adb1b487fa57406a8ff30b37c9a1a840f0b1fb66bc2a9573cabea2375f2bc
+DIST oauth2client-1.4.12.tar.gz 109339 SHA256 
f735b41a57fe46c0b170e919e81b9bbe7de4bc1a292c044c2863592ded936f69 SHA512 
1bb43816ed0094484f103849143e065fc5566e1a8fc682da2f1d8816b2ff5b60c3ca14c6fc8ab35470c3565e2705b33c1427008dbe148ffad8564ad9bd9b0cda
 WHIRLPOOL 
30ad20ee7cdd0f7f8d0b176a6a7a961a681467322b33c8659c88522aeb78a9bc050c352cb86474df9df75690fcc2bb2f4ecb2824687fc16880b38f2c8c664aeb
 DIST oauth2client-1.4.6.tar.gz 95325 SHA256 
d4376fc0f5543612c62cdee5ea68530bd9c8542891b3f4427d8bf9a1f5a134c8 SHA512 
e75e6c535ca4e427f3a869fa7e600bf7544752a100f623cbbeb117d872a2361a60d1524fc2639521393a58dc6f684d9e1452980d6a5ffb6f4dbed516911cc4ca
 WHIRLPOOL 
acb26ef17115138a8932313cbbb8c9a802e2296d20343ab746123ad0ef8a38ea8587c10c45863b56b7b4d5b052675434236a050ae64c6c05546a42fd3cdc4f6b

diff --git a/dev-python/oauth2client/oauth2client-1.4.12.ebuild 
b/dev-python/oauth2client/oauth2client-1.4.12.ebuild
new file mode 100644
index 000..415b14e
--- /dev/null
+++ b/dev-python/oauth2client/oauth2client-1.4.12.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 python3_{3,4} pypy)
+
+inherit distutils-r1
+
+DESCRIPTION=Library for accessing resources protected by OAuth 2.0
+HOMEPAGE=https://github.com/google/oauth2client;
+SRC_URI=https://github.com/google/oauth2client/archive/v${PV}.tar.gz - 
${P}.tar.gz
+
+LICENSE=Apache-2.0
+SLOT=0
+KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
+IUSE=test
+
+RDEPEND=
+   =dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   =dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   =dev-python/pyasn1-modules-0.0.5[${PYTHON_USEDEP}]
+   =dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   =dev-python/six-1.6.1[${PYTHON_USEDEP}]
+   !=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}]
+
+DEPEND=${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+
+
+# Needs network
+RESTRICT=test
+
+python_test() {
+   nosetests || die
+}