[Python-modules-commits] r5317 - in packages/pydot/trunk/debian (8 files)

pcc-guest at users.alioth.debian.org pcc-guest at users.alioth.debian.org
Mon May 12 18:12:21 UTC 2008


    Date: Monday, May 12, 2008 @ 18:12:18
  Author: pcc-guest
Revision: 5317

  * New upstream release.
  * debian/patches/01-setup-py-nodata.patch: patched setup.py to stop
    data files being installed to /usr
  * debian/pyversions: 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

Added:
  packages/pydot/trunk/debian/patches/
  packages/pydot/trunk/debian/patches/01-setup-py-nodata.patch
  packages/pydot/trunk/debian/pyversions
Modified:
  packages/pydot/trunk/debian/changelog
  packages/pydot/trunk/debian/control
  packages/pydot/trunk/debian/copyright
  packages/pydot/trunk/debian/rules
  packages/pydot/trunk/debian/watch

Modified: packages/pydot/trunk/debian/changelog
===================================================================
--- packages/pydot/trunk/debian/changelog	2008-05-10 21:26:53 UTC (rev 5316)
+++ packages/pydot/trunk/debian/changelog	2008-05-12 18:12:18 UTC (rev 5317)
@@ -1,3 +1,21 @@
+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: 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 <pcc03 at doc.ic.ac.uk>  Mon, 12 May 2008 16:30:24 +0100
+
 pydot (0.9.10-3) UNRELEASED; urgency=low
 
   * debian/control

Modified: packages/pydot/trunk/debian/control
===================================================================
--- packages/pydot/trunk/debian/control	2008-05-10 21:26:53 UTC (rev 5316)
+++ packages/pydot/trunk/debian/control	2008-05-12 18:12:18 UTC (rev 5317)
@@ -1,18 +1,20 @@
 Source: pydot
-Section: graphics
+Section: python
 Priority: optional
 Maintainer: Peter Collingbourne <pcc03 at doc.ic.ac.uk>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python (>= 2.3.5-11)
-Build-Depends-Indep: python-pyparsing, python-support (>= 0.5.3)
-Standards-Version: 3.7.2
+Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python (>= 2.3.5-11), 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, graphviz
+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,

Modified: packages/pydot/trunk/debian/copyright
===================================================================
--- packages/pydot/trunk/debian/copyright	2008-05-10 21:26:53 UTC (rev 5316)
+++ packages/pydot/trunk/debian/copyright	2008-05-12 18:12:18 UTC (rev 5317)
@@ -5,7 +5,7 @@
 
 Upstream Author: Ero Carrera <ero at dkbza.org>
 
-Copyright (c) 2004 Ero Carrera
+Copyright (c) 2004-2007 Ero Carrera
 
 License:
 
@@ -28,5 +28,5 @@
 THE SOFTWARE.
 
 
-The Debian packaging is (C) 2006-2007, Peter Collingbourne <pcc03 at doc.ic.ac.uk> and
+The Debian packaging is (C) 2006-2008, Peter Collingbourne <pcc03 at doc.ic.ac.uk> and
 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/pydot/trunk/debian/patches/01-setup-py-nodata.patch
===================================================================
--- packages/pydot/trunk/debian/patches/01-setup-py-nodata.patch	                        (rev 0)
+++ packages/pydot/trunk/debian/patches/01-setup-py-nodata.patch	2008-05-12 18:12:18 UTC (rev 5317)
@@ -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'] )

Added: packages/pydot/trunk/debian/pyversions
===================================================================
--- packages/pydot/trunk/debian/pyversions	                        (rev 0)
+++ packages/pydot/trunk/debian/pyversions	2008-05-12 18:12:18 UTC (rev 5317)
@@ -0,0 +1 @@
+2.4-

Modified: packages/pydot/trunk/debian/rules
===================================================================
--- packages/pydot/trunk/debian/rules	2008-05-10 21:26:53 UTC (rev 5316)
+++ packages/pydot/trunk/debian/rules	2008-05-12 18:12:18 UTC (rev 5317)
@@ -4,3 +4,4 @@
 
 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

Modified: packages/pydot/trunk/debian/watch
===================================================================
--- packages/pydot/trunk/debian/watch	2008-05-10 21:26:53 UTC (rev 5316)
+++ packages/pydot/trunk/debian/watch	2008-05-12 18:12:18 UTC (rev 5317)
@@ -1,2 +1,2 @@
 version=3
-http://code.google.com/p/pydot/downloads/list .*pydot-([\d\.]*).tar.gz
+http://code.google.com/p/pydot/downloads/list .*pydot-([\d\.]*)\.tar\.gz




More information about the Python-modules-commits mailing list