--- python-gdata-1.0.orig/debian/control +++ python-gdata-1.0/debian/control @@ -0,0 +1,30 @@ +Source: python-gdata +Section: python +Priority: extra +Maintainer: Gustavo Franco +Uploaders: Debian Python Modules Team +Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5), python, python-support (>= 0.5.3) +XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-gdata/trunk/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/trunk/packages/python-gdata/trunk/ +Standards-Version: 3.7.2 + +Package: python-gdata +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Description: Google Data Python client library + The GData (Google data) APIs provide a simple protocol for reading + and writing data on the web. + . + Each of the following Google services provides a Google data API: + * Base + * Blogger + * Calendar + * Picasa Web Albums + * Spreadsheets + * Google Apps Provisioning + * Code Search + * Notebook + . + The Google data Python Client Library provides a library and source + code that make it easy to access data through Google data APIs. + --- python-gdata-1.0.orig/debian/dirs +++ python-gdata-1.0/debian/dirs @@ -0,0 +1 @@ +usr/share/python-support/python-gdata --- python-gdata-1.0.orig/debian/compat +++ python-gdata-1.0/debian/compat @@ -0,0 +1 @@ +5 --- python-gdata-1.0.orig/debian/watch +++ python-gdata-1.0/debian/watch @@ -0,0 +1,5 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://gdata-python-client.googlecode.com/files/gdata\.py\.(.*)\.zip + --- python-gdata-1.0.orig/debian/changelog +++ python-gdata-1.0/debian/changelog @@ -0,0 +1,6 @@ +python-gdata (1.0-1) unstable; urgency=low + + * Initial release. (Closes: #419343) + + -- Gustavo Franco Sat, 14 Apr 2007 01:47:36 -0300 + --- python-gdata-1.0.orig/debian/copyright +++ python-gdata-1.0/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Gustavo Franco on +Sat, 14 Apr 2007 01:47:36 -0300. + +It was downloaded from http://code.google.com/p/gdata-python-client + +Upstream Author: Google Inc. + +Copyright: Copyright (C) 2006 Google Inc. + +License: + + 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. + + +The Debian packaging is (C) 2007, Gustavo Franco and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- python-gdata-1.0.orig/debian/docs +++ python-gdata-1.0/debian/docs @@ -0,0 +1,2 @@ +RELEASE_NOTES.txt +samples --- python-gdata-1.0.orig/debian/rules +++ python-gdata-1.0/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM := pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +binary-install/python-gdata:: + dh_pysupport -p$(cdbs_curpkg) + cp *.py ./debian/python-gdata/usr/share/python-support/$(cdbs_curpkg) + +clean:: + find . -name \*.pyc -print0 | xargs -r0 rm +