[Python-modules-commits] r10176 - in packages/pyexcelerator/trunk/debian (5 files)
kcoyner at users.alioth.debian.org
kcoyner at users.alioth.debian.org
Thu Oct 22 09:42:36 UTC 2009
Date: Thursday, October 22, 2009 @ 09:42:35
Author: kcoyner
Revision: 10176
[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 01:25:34 UTC (rev 10175)
+++ packages/pyexcelerator/trunk/debian/changelog 2009-10-22 09:42:35 UTC (rev 10176)
@@ -1,3 +1,16 @@
+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 01:25:34 UTC (rev 10175)
+++ packages/pyexcelerator/trunk/debian/compat 2009-10-22 09:42:35 UTC (rev 10176)
@@ -1 +1 @@
-5
+7
Modified: packages/pyexcelerator/trunk/debian/control
===================================================================
--- packages/pyexcelerator/trunk/debian/control 2009-10-22 01:25:34 UTC (rev 10175)
+++ packages/pyexcelerator/trunk/debian/control 2009-10-22 09:42:35 UTC (rev 10176)
@@ -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 (>= 5.0.37.2), python-dev, python-central (>= 0.5), dpatch
+Build-Depends: cdbs (>=0.4.43), debhelper (>= 7.4~), python-dev, python-central (>= 0.5), dpatch
XS-Python-Version: >= 2.4
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
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 01:25:34 UTC (rev 10175)
+++ packages/pyexcelerator/trunk/debian/docs 2009-10-22 09:42:35 UTC (rev 10176)
@@ -1,4 +1,5 @@
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 01:25:34 UTC (rev 10175)
+++ packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch 2009-10-22 09:42:35 UTC (rev 10176)
@@ -1,23 +1,22 @@
#! /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.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 @@
+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 @@
self.__cells.extend([ Cell.BlankCell(self, col, self.__parent_wb.add_style(style)) ])
- elif isinstance(label, (int, float)):
+ elif isinstance(label, (int, long, 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) ])
-@@ -228,4 +228,4 @@
+@@ -252,4 +252,4 @@
self.__cells.extend([ Cell.MulBlankCell(self, c1, c2, self.__parent_wb.add_style(style)) ])
More information about the Python-modules-commits
mailing list