debian/0000755000000000000000000000000012211052142007154 5ustar debian/compat0000644000000000000000000000000212211052142010352 0ustar 9 debian/control0000644000000000000000000000265212211052142010564 0ustar Source: python-oauth2client Section: python Priority: optional Maintainer: PKG Cloud Uploaders: Jimmy Kaplowitz , Thomas Goirand Build-Depends: debhelper (>= 9), openstack-pkg-tools, python-all (>= 2.6.6-3~), python-setuptools Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-oauth2client.git Vcs-Git: git://anonscm.debian.org/openstack/python-oauth2client.git Homepage: http://code.google.com/p/google-api-python-client/ Package: python-oauth2client Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python-uritemplate, ${misc:Depends}, ${python:Depends} Recommends: ${python:Recommends} Description: OAuth 2.0 client library The oauth2client is a client library for OAuth 2.0. . OAuth is an open standard for authorization. OAuth provides a method for clients to access server resources on behalf of a resource owner (such as a different client or an end-user). It also provides a process for end-users to authorize third-party access to their server resources without sharing their credentials (typically, a username and password pair), using user-agent redirections. . OAuth is a service that is complementary to, and therefore distinct from, OpenID. OAuth is also distinct from OATH, which is a reference architecture for authentication (i.e. not a standard). debian/source/0000755000000000000000000000000012211052142010454 5ustar debian/source/format0000644000000000000000000000001412211052142011662 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000021112211052142010565 0ustar [DEFAULT] upstream-branch = upstream-sid debian-branch = debian-sid pristine-tar = True [git-buildpackage] export-dir = ../build-area/ debian/watch0000644000000000000000000000013212211052142010201 0ustar version=3 http://pypi.python.org/packages/source/o/oauth2client oauth2client-(.*).tar.gz debian/changelog0000644000000000000000000000052112211052142011024 0ustar python-oauth2client (1.2-2) unstable; urgency=low * Removes embedded uritemplate folder from binary. -- Thomas Goirand Mon, 02 Sep 2013 09:00:22 +0000 python-oauth2client (1.2-1) unstable; urgency=low * Initial release. (Closes: #719971) -- Thomas Goirand Sat, 17 Aug 2013 11:12:18 +0200 debian/copyright0000644000000000000000000000174712211052142011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: oauth2client Source: http://code.google.com/p/google-api-python-client/ Files: debian/* Copyright: (c) 2013, Thomas Goirand License: Apache-2 Files: * Copyright: (c) 2013, Joe Gregorio License: Apache-2 License: Apache-2 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license can be found in /usr/share/common-licenses/Apache-2.0. debian/rules0000755000000000000000000000064412211052142010240 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) UPSTREAM_GIT = git://github.com//oauth2client.git include /usr/share/openstack-pkg-tools/pkgos.make %: dh $@ --with python2 override_dh_auto_install: dh_auto_install set -e && for pyvers in $(PYTHONS); do \ rm -r $(CURDIR)/debian/python-oauth2client//usr/lib/python$$pyvers/dist-packages/uritemplate/; \ done