[Python-modules-commits] r3985 - in packages/pygooglechart/trunk (8 files)
morph-guest at users.alioth.debian.org
morph-guest at users.alioth.debian.org
Mon Dec 17 21:41:04 UTC 2007
Date: Monday, December 17, 2007 @ 21:41:03
Author: morph-guest
Revision: 3985
[svn-inject] Applying Debian modifications to trunk
Added:
packages/pygooglechart/trunk/debian/
packages/pygooglechart/trunk/debian/README.Debian
packages/pygooglechart/trunk/debian/changelog
packages/pygooglechart/trunk/debian/compat
packages/pygooglechart/trunk/debian/control
packages/pygooglechart/trunk/debian/copyright
packages/pygooglechart/trunk/debian/rules
packages/pygooglechart/trunk/debian/watch
Property changes on: packages/pygooglechart/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/pygooglechart/trunk/debian/README.Debian
===================================================================
--- packages/pygooglechart/trunk/debian/README.Debian (rev 0)
+++ packages/pygooglechart/trunk/debian/README.Debian 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,11 @@
+I'd like to place here some links to let users find additional details
+about Google Chart API:
+
+ Google Chart API - Developer's Guide
+ http://code.google.com/apis/chart/
+
+ Google Chart API - FAQ
+ http://code.google.com/support/bin/topic.py?topic=13605
+
+ Google Chart API - Developer Forum
+ http://groups.google.com/group/google-chart-api
Added: packages/pygooglechart/trunk/debian/changelog
===================================================================
--- packages/pygooglechart/trunk/debian/changelog (rev 0)
+++ packages/pygooglechart/trunk/debian/changelog 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,5 @@
+pygooglechart (0.1.2-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #455912)
+
+ -- Sandro Tosi <matrixhasu at gmail.com> Mon, 17 Dec 2007 22:00:00 +0100
Added: packages/pygooglechart/trunk/debian/compat
===================================================================
--- packages/pygooglechart/trunk/debian/compat (rev 0)
+++ packages/pygooglechart/trunk/debian/compat 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1 @@
+5
Added: packages/pygooglechart/trunk/debian/control
===================================================================
--- packages/pygooglechart/trunk/debian/control (rev 0)
+++ packages/pygooglechart/trunk/debian/control 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,26 @@
+Source: pygooglechart
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sandro Tosi <matrixhasu at gmail.com>
+Build-Depends: debhelper (>= 5), python
+Build-Depends-Indep: python-support (>= 0.4)
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pygooglechart/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pygooglechart/trunk/?op=log
+XS-Python-Version: all
+
+Package: python-pygooglechart
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Complete wrapper for the Google Chart API
+ Google Chart API is an extremely simple tool that lets you easily
+ create a chart from some data. You embed the data and formatting
+ parameters in an HTTP request, and Google returns a PNG image of the
+ chart.
+ .
+ This package contains a Python wrapper for those API.
+ .
+ For a complete API documentation please refer to Google page:
+ http://code.google.com/apis/chart/ .
Added: packages/pygooglechart/trunk/debian/copyright
===================================================================
--- packages/pygooglechart/trunk/debian/copyright (rev 0)
+++ packages/pygooglechart/trunk/debian/copyright 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,30 @@
+This package was debianized by Sandro Tosi <matrixhasu at gmail.com> on
+Thu, 13 Dec 2007 23:55:35 +0100.
+
+It was downloaded from http://pygooglechart.slowchop.com/
+
+Upstream Author:
+
+ Gerald Kaszuba <gerald at geraldkaszuba.com>
+
+Copyright:
+
+ Copyright 2007 Gerald Kaszuba
+
+License:
+
+ This program is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of the
+ License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+n a Debian system the complete text of the GNU General Public License
+can be found in the file `/usr/share/common-licenses/GPL-3'.
+
+The Debian packaging is (C) 2007, Sandro Tosi <matrixhasu at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/pygooglechart/trunk/debian/rules
===================================================================
--- packages/pygooglechart/trunk/debian/rules (rev 0)
+++ packages/pygooglechart/trunk/debian/rules 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,57 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ for python in $(PYVERS); do \
+ $$python setup.py build; \
+ done
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ [ ! -d build ] || rm -rf build
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ for python in $(PYVERS); do \
+ $$python setup.py clean; \
+ done
+
+ rm *.pyc
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
+ # Add here commands to install the package into debian/pygooglechart.
+ python setup.py install --root=$(CURDIR)/debian/python-pygooglechart
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_pysupport
+ dh_installexamples examples/*
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/pygooglechart/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/pygooglechart/trunk/debian/watch
===================================================================
--- packages/pygooglechart/trunk/debian/watch (rev 0)
+++ packages/pygooglechart/trunk/debian/watch 2007-12-17 21:41:03 UTC (rev 3985)
@@ -0,0 +1,3 @@
+version=3
+
+http://pygooglechart.slowchop.com/files/download/pygooglechart-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list