Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/py-gsutil py-gsutil: updated to 4.52



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8dab80a3047f
branches:  trunk
changeset: 435767:8dab80a3047f
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Jul 14 17:52:22 2020 +0000

description:
py-gsutil: updated to 4.52

Release 4.52
Bug Fixes
- Fix tests using wrong AWS credentials if AWS CLI is installed.
- Fix `AttributeError: module 'gslib' has no attribute 'USER_AGENT'`.
- Fix encoding error in `user_agent_helper`.
- Fix stdout ordering issue in hash command.
- Fix multithread race condition for cp/mv command when multiple operations are attempting to create the same directory.
- Fix OSError on interrupted rsync -d.

diffstat:

 net/py-gsutil/Makefile |    6 +-
 net/py-gsutil/PLIST    |  367 ++++++++++++++++++++++++++++++++++++++++++++++++-
 net/py-gsutil/distinfo |   10 +-
 3 files changed, 375 insertions(+), 8 deletions(-)

diffs (truncated from 446 to 300 lines):

diff -r e19d58842dc6 -r 8dab80a3047f net/py-gsutil/Makefile
--- a/net/py-gsutil/Makefile    Tue Jul 14 17:43:46 2020 +0000
+++ b/net/py-gsutil/Makefile    Tue Jul 14 17:52:22 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2020/07/07 16:49:19 bsiegert Exp $
+# $NetBSD: Makefile,v 1.11 2020/07/14 17:52:22 adam Exp $
 
-DISTNAME=      gsutil-4.51
+DISTNAME=      gsutil-4.52
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    net python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=g/gsutil/}
@@ -14,6 +14,8 @@
 REPLACE_PYTHON+=       gslib/vendored/boto/boto/services/bs.py
 REPLACE_PYTHON+=       gslib/vendored/boto/tests/fps/test.py
 REPLACE_PYTHON+=       gslib/vendored/boto/tests/test.py
+REPLACE_PYTHON+=       gslib/vendored/oauth2client/samples/django/django_user/manage.py
+REPLACE_PYTHON+=       gslib/vendored/oauth2client/samples/django/google_user/manage.py
 
 DEPENDS+=      ${PYPKGPREFIX}-OpenSSL>=0.13:../../security/py-OpenSSL
 DEPENDS+=      ${PYPKGPREFIX}-SocksiPy-branch>=1.01:../../net/py-socksipy-branch
diff -r e19d58842dc6 -r 8dab80a3047f net/py-gsutil/PLIST
--- a/net/py-gsutil/PLIST       Tue Jul 14 17:43:46 2020 +0000
+++ b/net/py-gsutil/PLIST       Tue Jul 14 17:52:22 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2020/02/16 21:08:14 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2020/07/14 17:52:22 adam Exp $
 bin/gsutil-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -515,6 +515,9 @@
 ${PYSITELIB}/gslib/tests/test_update.py
 ${PYSITELIB}/gslib/tests/test_update.pyc
 ${PYSITELIB}/gslib/tests/test_update.pyo
+${PYSITELIB}/gslib/tests/test_user_agent_helper.py
+${PYSITELIB}/gslib/tests/test_user_agent_helper.pyc
+${PYSITELIB}/gslib/tests/test_user_agent_helper.pyo
 ${PYSITELIB}/gslib/tests/test_util.py
 ${PYSITELIB}/gslib/tests/test_util.pyc
 ${PYSITELIB}/gslib/tests/test_util.pyo
@@ -605,6 +608,9 @@
 ${PYSITELIB}/gslib/utils/acl_helper.py
 ${PYSITELIB}/gslib/utils/acl_helper.pyc
 ${PYSITELIB}/gslib/utils/acl_helper.pyo
+${PYSITELIB}/gslib/utils/arg_helper.py
+${PYSITELIB}/gslib/utils/arg_helper.pyc
+${PYSITELIB}/gslib/utils/arg_helper.pyo
 ${PYSITELIB}/gslib/utils/boto_util.py
 ${PYSITELIB}/gslib/utils/boto_util.pyc
 ${PYSITELIB}/gslib/utils/boto_util.pyo
@@ -650,6 +656,9 @@
 ${PYSITELIB}/gslib/utils/rsync_util.py
 ${PYSITELIB}/gslib/utils/rsync_util.pyc
 ${PYSITELIB}/gslib/utils/rsync_util.pyo
+${PYSITELIB}/gslib/utils/signurl_helper.py
+${PYSITELIB}/gslib/utils/signurl_helper.pyc
+${PYSITELIB}/gslib/utils/signurl_helper.pyo
 ${PYSITELIB}/gslib/utils/system_util.py
 ${PYSITELIB}/gslib/utils/system_util.pyc
 ${PYSITELIB}/gslib/utils/system_util.pyo
@@ -665,6 +674,9 @@
 ${PYSITELIB}/gslib/utils/update_util.py
 ${PYSITELIB}/gslib/utils/update_util.pyc
 ${PYSITELIB}/gslib/utils/update_util.pyo
+${PYSITELIB}/gslib/utils/user_agent_helper.py
+${PYSITELIB}/gslib/utils/user_agent_helper.pyc
+${PYSITELIB}/gslib/utils/user_agent_helper.pyo
 ${PYSITELIB}/gslib/utils/version_check.py
 ${PYSITELIB}/gslib/utils/version_check.pyc
 ${PYSITELIB}/gslib/utils/version_check.pyo
@@ -2856,6 +2868,359 @@
 ${PYSITELIB}/gslib/vendored/boto/tests/unit/vpc/test_vpngateway.pyc
 ${PYSITELIB}/gslib/vendored/boto/tests/unit/vpc/test_vpngateway.pyo
 ${PYSITELIB}/gslib/vendored/boto/tox.ini
+${PYSITELIB}/gslib/vendored/oauth2client/.coveragerc
+${PYSITELIB}/gslib/vendored/oauth2client/.github/ISSUE_TEMPLATE.md
+${PYSITELIB}/gslib/vendored/oauth2client/.github/PULL_REQUEST_TEMPLATE.md
+${PYSITELIB}/gslib/vendored/oauth2client/.travis.yml
+${PYSITELIB}/gslib/vendored/oauth2client/CHANGELOG.md
+${PYSITELIB}/gslib/vendored/oauth2client/CODE_OF_CONDUCT.md
+${PYSITELIB}/gslib/vendored/oauth2client/CONTRIBUTING.md
+${PYSITELIB}/gslib/vendored/oauth2client/CONTRIBUTORS.md
+${PYSITELIB}/gslib/vendored/oauth2client/LICENSE
+${PYSITELIB}/gslib/vendored/oauth2client/MANIFEST.in
+${PYSITELIB}/gslib/vendored/oauth2client/Makefile
+${PYSITELIB}/gslib/vendored/oauth2client/README.md
+${PYSITELIB}/gslib/vendored/oauth2client/docs/Makefile
+${PYSITELIB}/gslib/vendored/oauth2client/docs/_static/favicon.ico
+${PYSITELIB}/gslib/vendored/oauth2client/docs/_static/google_logo.png
+${PYSITELIB}/gslib/vendored/oauth2client/docs/conf.py
+${PYSITELIB}/gslib/vendored/oauth2client/docs/conf.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/docs/conf.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/docs/index.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/requirements.txt
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.client.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.clientsecrets.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.appengine.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.devshell.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.dictionary_storage.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.apps.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.decorators.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.models.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.signals.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.site.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.storage.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.django_util.views.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.flask_util.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.gce.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.keyring_storage.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.multiprocess_file_storage.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.sqlalchemy.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.contrib.xsrfutil.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.crypt.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.file.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.service_account.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.tools.rst
+${PYSITELIB}/gslib/vendored/oauth2client/docs/source/oauth2client.transport.rst
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_helpers.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_helpers.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_helpers.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_openssl_crypt.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_openssl_crypt.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_openssl_crypt.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pkce.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pkce.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pkce.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pure_python_crypt.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pure_python_crypt.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pure_python_crypt.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pycrypto_crypt.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pycrypto_crypt.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/_pycrypto_crypt.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/client.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/client.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/client.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/clientsecrets.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/clientsecrets.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/clientsecrets.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_appengine_ndb.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_appengine_ndb.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_appengine_ndb.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_metadata.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_metadata.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/_metadata.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/appengine.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/appengine.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/appengine.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/devshell.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/devshell.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/devshell.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/dictionary_storage.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/dictionary_storage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/dictionary_storage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/apps.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/apps.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/apps.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/decorators.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/decorators.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/decorators.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/models.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/models.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/models.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/signals.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/signals.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/signals.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/site.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/site.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/site.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/storage.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/storage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/storage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/views.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/views.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/django_util/views.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/flask_util.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/flask_util.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/flask_util.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/gce.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/gce.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/gce.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/keyring_storage.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/keyring_storage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/keyring_storage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/multiprocess_file_storage.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/multiprocess_file_storage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/multiprocess_file_storage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/sqlalchemy.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/sqlalchemy.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/sqlalchemy.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/xsrfutil.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/xsrfutil.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/contrib/xsrfutil.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/crypt.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/crypt.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/crypt.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/file.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/file.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/file.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/service_account.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/service_account.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/service_account.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/tools.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/tools.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/tools.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/transport.py
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/transport.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/oauth2client/transport.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/call_compute_service.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/call_compute_service.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/call_compute_service.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/README.md
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/manage.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/manage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/manage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/settings.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/settings.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/settings.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/urls.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/urls.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/urls.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/wsgi.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/wsgi.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/myoauth/wsgi.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/models.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/models.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/models.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/templates/registration/login.html
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/views.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/views.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/polls/views.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/django_user/requirements.txt
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/manage.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/manage.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/manage.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/settings.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/settings.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/settings.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/urls.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/urls.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/urls.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/wsgi.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/wsgi.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/myoauth/wsgi.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/views.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/views.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/polls/views.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/django/google_user/requirements.txt
+${PYSITELIB}/gslib/vendored/oauth2client/samples/googleappengine/app.yaml
+${PYSITELIB}/gslib/vendored/oauth2client/samples/googleappengine/call_compute_service_from_gae.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/googleappengine/call_compute_service_from_gae.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/googleappengine/call_compute_service_from_gae.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/samples/oauth2_for_devices.py
+${PYSITELIB}/gslib/vendored/oauth2client/samples/oauth2_for_devices.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/samples/oauth2_for_devices.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/build_docs.sh
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/install.sh
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/local_test_setup.sample
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run.sh
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_gce_system_tests.py
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_gce_system_tests.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_gce_system_tests.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_system_tests.py
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_system_tests.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_system_tests.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/scripts/run_system_tests.sh
+${PYSITELIB}/gslib/vendored/oauth2client/setup.cfg
+${PYSITELIB}/gslib/vendored/oauth2client/setup.py
+${PYSITELIB}/gslib/vendored/oauth2client/setup.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/setup.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/tests/__init__.py
+${PYSITELIB}/gslib/vendored/oauth2client/tests/__init__.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/tests/__init__.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/tests/conftest.py
+${PYSITELIB}/gslib/vendored/oauth2client/tests/conftest.pyc
+${PYSITELIB}/gslib/vendored/oauth2client/tests/conftest.pyo
+${PYSITELIB}/gslib/vendored/oauth2client/tests/contrib/__init__.py



Home | Main Index | Thread Index | Old Index