[Python-modules-commits] r3993 - in packages/pygooglechart/trunk/debian (3 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Tue Dec 18 22:59:11 UTC 2007


    Date: Tuesday, December 18, 2007 @ 22:59:11
  Author: piotr
Revision: 3993

* build depend on python-all instead of python
* debian/rules file changed a little bit

Modified:
  packages/pygooglechart/trunk/debian/changelog
  packages/pygooglechart/trunk/debian/control
  packages/pygooglechart/trunk/debian/rules

Modified: packages/pygooglechart/trunk/debian/changelog
===================================================================
--- packages/pygooglechart/trunk/debian/changelog	2007-12-18 10:10:37 UTC (rev 3992)
+++ packages/pygooglechart/trunk/debian/changelog	2007-12-18 22:59:11 UTC (rev 3993)
@@ -1,5 +1,5 @@
-pygooglechart (0.1.2-1) UNRELEASED; urgency=low
+pygooglechart (0.1.2-1) unstable; urgency=low
 
   * Initial release (Closes: #455912)
 
- -- Sandro Tosi <matrixhasu at gmail.com>  Mon, 17 Dec 2007 22:00:00 +0100
+ -- Sandro Tosi <matrixhasu at gmail.com>  Tue, 18 Dec 2007 23:44:46 +0100

Modified: packages/pygooglechart/trunk/debian/control
===================================================================
--- packages/pygooglechart/trunk/debian/control	2007-12-18 10:10:37 UTC (rev 3992)
+++ packages/pygooglechart/trunk/debian/control	2007-12-18 22:59:11 UTC (rev 3993)
@@ -3,7 +3,7 @@
 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.0.38), python
+Build-Depends: debhelper (>= 5.0.38), python-all (>= 2.3.5-7)
 Build-Depends-Indep: python-support (>= 0.6.4)
 Standards-Version: 3.7.3
 Homepage: http://pygooglechart.slowchop.com/
@@ -16,12 +16,11 @@
 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.
+ 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:
+ For a complete API documentation please refer to Google page:
  http://code.google.com/apis/chart/ .

Modified: packages/pygooglechart/trunk/debian/rules
===================================================================
--- packages/pygooglechart/trunk/debian/rules	2007-12-18 10:10:37 UTC (rev 3992)
+++ packages/pygooglechart/trunk/debian/rules	2007-12-18 22:59:11 UTC (rev 3993)
@@ -5,46 +5,43 @@
 
 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
+	
+	find . -name '*.py[co]' -delete
+	
+	dh_clean
 
-	rm *.pyc
+build:
 
-	dh_clean 
-
-install: build
+install:
 	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
+	for python in $(PYVERS); do \
+		$$python setup.py install --root=$(CURDIR)/debian/python-pygooglechart; \
+	done
 
+binary-arch:
 
 # Build architecture-independent files here.
-binary-indep: build install
+binary-indep: install
 	dh_testdir
 	dh_testroot
 	dh_installchangelogs 
 	dh_pysupport
 	dh_installexamples	examples/*
+	dh_installdocs
 	dh_compress
 	dh_fixperms
 	dh_installdeb




More information about the Python-modules-commits mailing list