[Python-modules-commits] r10177 - in packages/pyexcelerator/trunk/debian (5 files)

kcoyner at users.alioth.debian.org kcoyner at users.alioth.debian.org
Thu Oct 22 10:02:46 UTC 2009


    Date: Thursday, October 22, 2009 @ 10:02:35
  Author: kcoyner
Revision: 10177

[svn-inject] Applying Debian modifications to trunk

Modified:
  packages/pyexcelerator/trunk/debian/changelog
  packages/pyexcelerator/trunk/debian/compat
  packages/pyexcelerator/trunk/debian/control
  packages/pyexcelerator/trunk/debian/docs
  packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch

Modified: packages/pyexcelerator/trunk/debian/changelog
===================================================================
--- packages/pyexcelerator/trunk/debian/changelog	2009-10-22 09:42:35 UTC (rev 10176)
+++ packages/pyexcelerator/trunk/debian/changelog	2009-10-22 10:02:35 UTC (rev 10177)
@@ -1,16 +1,3 @@
-pyexcelerator (0.6.4.1-1) unstable; urgency=low
-
-  * New upstream version independent of the xlwt project. Closes: #500185.
-  * debian/control:
-    + Bumped Standards Version to 3.8.3. No changes.
-    + Bumped debhelper version to 7.4~.
-  * Bumped debian/compat from 5 to 7.
-  * Updated 01-write_datetime.dpatch in debian/patches since upstream changed
-    the file.
-  * Added debian/README.source to debian/docs.
-
- -- Kevin Coyner <kcoyner at debian.org>  Mon, 19 Oct 2009 08:58:31 -0400
-
 pyexcelerator (0.6.3a-4) unstable; urgency=medium
 
   [ Piotr Ożarowski, Sandro Tosi ]

Modified: packages/pyexcelerator/trunk/debian/compat
===================================================================
--- packages/pyexcelerator/trunk/debian/compat	2009-10-22 09:42:35 UTC (rev 10176)
+++ packages/pyexcelerator/trunk/debian/compat	2009-10-22 10:02:35 UTC (rev 10177)
@@ -1 +1 @@
-7
+5

Modified: packages/pyexcelerator/trunk/debian/control
===================================================================
--- packages/pyexcelerator/trunk/debian/control	2009-10-22 09:42:35 UTC (rev 10176)
+++ packages/pyexcelerator/trunk/debian/control	2009-10-22 10:02:35 UTC (rev 10177)
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Kevin Coyner <kcoyner at debian.org>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: cdbs (>=0.4.43), debhelper (>= 7.4~), python-dev, python-central (>= 0.5), dpatch
+Build-Depends: cdbs (>=0.4.43), debhelper (>= 5.0.37.2), python-dev, python-central (>= 0.5), dpatch
 XS-Python-Version: >= 2.4
-Standards-Version: 3.8.3
+Standards-Version: 3.8.0
 Homepage: http://sourceforge.net/projects/pyexcelerator
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyexcelerator/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pyexcelerator/trunk/

Modified: packages/pyexcelerator/trunk/debian/docs
===================================================================
--- packages/pyexcelerator/trunk/debian/docs	2009-10-22 09:42:35 UTC (rev 10176)
+++ packages/pyexcelerator/trunk/debian/docs	2009-10-22 10:02:35 UTC (rev 10177)
@@ -1,5 +1,4 @@
 debian/README.Debian-source
-debian/README.source
 README.txt
 THANKS.txt
 examples/

Modified: packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch
===================================================================
--- packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch	2009-10-22 09:42:35 UTC (rev 10176)
+++ packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch	2009-10-22 10:02:35 UTC (rev 10177)
@@ -1,22 +1,23 @@
 #! /bin/sh /usr/share/dpatch/dpatch-run
 ## 01-write_datetime.dpatch by Kevin Coyner <kcoyner at debian.org>
 ##
+## All lines beginning with `## DP:' are a description of the patch.
 ## DP: Fixed inability to write datetime.date to a cell.
 
 @DPATCH@
-diff -urNad pyexcelerator-0.6.4.1~/pyExcelerator/Row.py pyexcelerator-0.6.4.1/pyExcelerator/Row.py
---- pyexcelerator-0.6.4.1~/pyExcelerator/Row.py	2007-02-14 02:00:44.000000000 -0500
-+++ pyexcelerator-0.6.4.1/pyExcelerator/Row.py	2009-10-19 08:34:46.000000000 -0400
-@@ -240,7 +240,7 @@
+diff -urNad pyexcelerator-0.6.3a~/pyExcelerator/Row.py pyexcelerator-0.6.3a/pyExcelerator/Row.py
+--- pyexcelerator-0.6.3a~/pyExcelerator/Row.py	2005-08-11 12:53:48.000000000 -0400
++++ pyexcelerator-0.6.3a/pyExcelerator/Row.py	2008-03-04 10:39:11.000000000 -0500
+@@ -216,7 +216,7 @@
                  self.__cells.extend([ Cell.BlankCell(self, col, self.__parent_wb.add_style(style)) ])
-         elif isinstance(label, (int, long, float)):
+         elif isinstance(label, (int, float)):
              self.__cells.extend([ Cell.NumberCell(self, col, self.__parent_wb.add_style(style), label) ])            
 -        elif isinstance(label, (dt.datetime, dt.time)):
 +        elif isinstance(label, (dt.datetime, dt.date, dt.time)):
              self.__cells.extend([ Cell.NumberCell(self, col, self.__parent_wb.add_style(style), self.__excel_date_dt(label)) ])
          else:
              self.__cells.extend([ Cell.FormulaCell(self, col, self.__parent_wb.add_style(style), label) ])
-@@ -252,4 +252,4 @@
+@@ -228,4 +228,4 @@
          self.__cells.extend([ Cell.MulBlankCell(self, c1, c2, self.__parent_wb.add_style(style)) ])
  
          




More information about the Python-modules-commits mailing list