--- pydot-1.0.2.orig/debian/pyversions +++ pydot-1.0.2/debian/pyversions @@ -0,0 +1 @@ +2.4- --- pydot-1.0.2.orig/debian/pycompat +++ pydot-1.0.2/debian/pycompat @@ -0,0 +1 @@ +2 --- pydot-1.0.2.orig/debian/copyright +++ pydot-1.0.2/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Peter Collingbourne on +Wed, 8 Nov 2006 15:52:04 +0000. + +It was downloaded from http://dkbza.org/pydot.html + +Upstream Author: Ero Carrera + +Copyright (c) 2004-2007 Ero Carrera + +License: + +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. + + +The Debian packaging is (C) 2006-2008, Peter Collingbourne and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- pydot-1.0.2.orig/debian/compat +++ pydot-1.0.2/debian/compat @@ -0,0 +1 @@ +5 --- pydot-1.0.2.orig/debian/watch +++ pydot-1.0.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://code.google.com/p/pydot/downloads/list .*pydot-([\d\.]*)\.tar\.gz --- pydot-1.0.2.orig/debian/changelog +++ pydot-1.0.2/debian/changelog @@ -0,0 +1,45 @@ +pydot (1.0.2-1) unstable; urgency=low + + * New upstream release. + * debian/patches/01-setup-py-nodata.patch: patched setup.py to stop + data files being installed to /usr + * debian/pyversions, debian/control: package now works with only + Python 2.4+ + * debian/control: + - dependency on python-parsing changed to (>= 1.4.10) due to + nestedExpr symbol requirement + - added Conflicts on dot2tex (<< 2.8.0) due to incompatibility + - added DM-Upload-Allowed: yes + - moved python-support to Build-Depends as required for clean target + - changed Section to python + * debian/copyright: updated year + * debian/watch: escaped the dots + + -- Peter Collingbourne Mon, 26 May 2008 15:35:04 +0100 + +pydot (0.9.10-3) UNRELEASED; urgency=low + + * debian/control + - uniforming Vcs-Browser field + + -- Sandro Tosi Thu, 03 Jan 2008 11:53:11 +0100 + +pydot (0.9.10-2) unstable; urgency=low + + * debian/copyright: Rewrapped to 80 characters per line + * debian/watch: Updated with new download location (closes: #450120) + * debian/control: + - added Debian Python Modules Team to Uploaders + - added Homepage, Vcs-Browser, Vcs-Svn fields + - removed Provides field + - changed python-all-dev to python in Build-Depends + - moved packages from Build-Depends to Build-Depends-Indep + + -- Peter Collingbourne Mon, 12 Nov 2007 19:29:39 +0000 + +pydot (0.9.10-1) unstable; urgency=low + + * Initial release (Closes: #397663) + + -- Peter Collingbourne Wed, 8 Nov 2006 15:52:04 +0000 + --- pydot-1.0.2.orig/debian/rules +++ pydot-1.0.2/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM = pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk --- pydot-1.0.2.orig/debian/docs +++ pydot-1.0.2/debian/docs @@ -0,0 +1 @@ +README --- pydot-1.0.2.orig/debian/control +++ pydot-1.0.2/debian/control @@ -0,0 +1,21 @@ +Source: pydot +Section: python +Priority: optional +Maintainer: Peter Collingbourne +Uploaders: Debian Python Modules Team +Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python (>= 2.4~), python-support (>= 0.5.3) +Build-Depends-Indep: python-pyparsing (>= 1.4.10) +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.debian.org/python-modules/packages/pydot/trunk +Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pydot/trunk/?op=log +DM-Upload-Allowed: yes +Homepage: http://dkbza.org/pydot.html + +Package: python-pydot +Architecture: all +Depends: ${python:Depends}, python-pyparsing (>= 1.4.10), graphviz +Conflicts: dot2tex (<< 2.8.0) +XB-Python-Version: ${python:Versions} +Description: Python interface to Graphviz's dot + This package provides you with a full Python interface for creating, + handling, modifying and processing graphs in Graphviz's dot language. --- pydot-1.0.2.orig/debian/patches/01-setup-py-nodata.patch +++ pydot-1.0.2/debian/patches/01-setup-py-nodata.patch @@ -0,0 +1,10 @@ +diff -Nur pydot-1.0.2/setup.py pydot-1.0.2.new/setup.py +--- pydot-1.0.2/setup.py 2008-02-14 20:48:02.000000000 +0000 ++++ pydot-1.0.2.new/setup.py 2008-02-22 03:08:11.000000000 +0000 +@@ -27,5 +27,4 @@ + 'Topic :: Software Development :: Libraries :: Python Modules'], + long_description = "\n".join(pydot.__doc__.split('\n')), + py_modules = ['pydot', 'dot_parser'], +- install_requires = ['pyparsing', 'setuptools'], +- data_files = [('.', ['ChangeLog', 'LICENSE', 'README'])] ) ++ install_requires = ['pyparsing', 'setuptools'] )