[Python-modules-commits] [google-api-python-client] 03/03: Initial release. (Closes: #719981)

Scott Kitterman kitterman at moszumanska.debian.org
Fri Nov 11 00:41:18 UTC 2016


This is an automated email from the git hooks/post-receive script.

kitterman pushed a commit to branch master
in repository google-api-python-client.

commit d88e7a2de0a12f16ff2727bfb9d06d392b732d26
Author: Scott Kitterman <scott at kitterman.com>
Date:   Thu Nov 10 19:40:20 2016 -0500

    Initial release. (Closes: #719981)
---
 debian/.git-dpm  |  3 +++
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 40 ++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/gbp.conf  |  2 ++
 debian/rules     |  9 +++++++++
 debian/watch     |  2 ++
 8 files changed, 108 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index 45ed5ef..df66f24 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@ dc44cddab7e25bfddaeafbb0c50246709157b34b
 google-api-python-client_1.5.5.orig.tar.gz
 1612b3a6d0e50e49e16d983715a9cc652488b02d
 45414
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..4c3621e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+google-api-python-client (1.5.5-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #719981)
+
+ -- Scott Kitterman <scott at kitterman.com>  Thu, 10 Nov 2016 19:08:23 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d927925
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: google-api-python-client
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Scott Kitterman <scott at kitterman.com>
+Build-Depends:
+ debhelper (>= 9~),
+ dh-python,
+ python-all,
+ python-pkg-resources,
+ python-setuptools,
+ python3-all,
+ python3-pkg-resources,
+ python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/google/google-api-python-client
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/google-api-python-client.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/google-api-python-client.git
+
+Package: python-googleapiclient
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Python library for accessing Google APIs (Python 2)
+ The Google API Client for Python is a client library for accessing the Plus,
+ Moderator, and many other Google discovery based APIs.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-googleapiclient
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Python library for accessing Google APIs (Python 3)
+ The Google API Client for Python is a client library for accessing the Plus, 
+ Moderator, and many other Google discovery based APIs.
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..71b59a3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,46 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Google API Client for Python
+Upstream-Contact:  Google Inc.
+Source: https://pypi.python.org/pypi/google-api-python-client/
+
+Files: *
+Copyright: Copyright 2014 Google Inc.
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ use this file except in compliance with the License.
+ .
+ On Debian GNU/Linux systems, the complete text of the Apache License v2 can be
+ found in `/usr/share/common-licenses/Apache-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.
+
+Files: googleapiclient/mimeparse.py
+Copyright: Copyright 2014 Joe Gregorio
+License: Expat
+
+Files: debian/*
+Copyright: 2016 Scott Kitterman <scott at kitterman.com>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..cec628c
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..9202e1c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=googleapiclient
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	# Tests not provided.
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2f4bef6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.debian.net/google-api-python-client/google-api-python-client-([0-9][0-9\.\-]*).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/google-api-python-client.git



More information about the Python-modules-commits mailing list