[Python-modules-commits] r7350 - in packages/pyexcelerator/trunk/debian (6 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Sun Jan 18 18:48:07 UTC 2009
Date: Sunday, January 18, 2009 @ 18:48:06
Author: piotr
Revision: 7350
sync with unstable (add 0.6.3a-3 and 0.6.3a-3.1 versions)
Added:
packages/pyexcelerator/trunk/debian/patches/
packages/pyexcelerator/trunk/debian/patches/00list
packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch
Modified:
packages/pyexcelerator/trunk/debian/changelog
packages/pyexcelerator/trunk/debian/control
packages/pyexcelerator/trunk/debian/rules
Modified: packages/pyexcelerator/trunk/debian/changelog
===================================================================
--- packages/pyexcelerator/trunk/debian/changelog 2009-01-18 18:09:02 UTC (rev 7349)
+++ packages/pyexcelerator/trunk/debian/changelog 2009-01-18 18:48:06 UTC (rev 7350)
@@ -1,12 +1,8 @@
-pyexcelerator (0.6.3a-3) unstable; urgency=low
+pyexcelerator (0.6.3a-4) unstable; urgency=medium
- [ Piotr Ożarowski ]
- * Vcs-Svn, Vcs-Browser and Homepage fields added
+ [ Piotr Ożarowski, Sandro Tosi ]
+ * Vcs-Svn and Vcs-Browser fields added
- [ Sandro Tosi ]
- * debian/control
- - switch Vcs-Browser field to viewsvn
-
[ Jan Dittberner ]
* debian/copyright: add copyright and licensing information for
antlr.py (Closes: #510782)
@@ -16,8 +12,26 @@
* debian/rules: use antlr.py from python-anltr instead of the version
included in the upstream tarball to ease security support
- -- Jan Dittberner <jan at dittberner.info> Sun, 18 Jan 2009 19:07:54 +0100
+ -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Sun, 18 Jan 2009 19:07:54 +0100
+pyexcelerator (0.6.3a-3.1) unstable; urgency=low
+
+ * NMU. Rebuild to move files to /usr/share/pyshared. Closes: #490487.
+
+ -- Matthias Klose <doko at debian.org> Fri, 18 Jul 2008 15:49:19 +0000
+
+pyexcelerator (0.6.3a-3) unstable; urgency=low
+
+ * Fixed inability to write datetime.date to a cell. Patch provided by
+ Krzysztof Sulejczak. Closes: #468558.
+ * debian/control:
+ + Added dpatch as a Build-Depends.
+ + Moved Homepage reference out of extended description.
+ + Bumped Standards Version to 3.7.3. No changes.
+ * Added dpatch.mk line to debian/rules.
+
+ -- Kevin Coyner <kcoyner at debian.org> Tue, 04 Mar 2008 10:30:26 -0500
+
pyexcelerator (0.6.3a-2) unstable; urgency=low
* New e-mail address for maintainer. Changed in debian/* files.
Modified: packages/pyexcelerator/trunk/debian/control
===================================================================
--- packages/pyexcelerator/trunk/debian/control 2009-01-18 18:09:02 UTC (rev 7349)
+++ packages/pyexcelerator/trunk/debian/control 2009-01-18 18:48:06 UTC (rev 7350)
@@ -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)
+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.7.2
+Standards-Version: 3.7.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/
Added: packages/pyexcelerator/trunk/debian/patches/00list
===================================================================
--- packages/pyexcelerator/trunk/debian/patches/00list (rev 0)
+++ packages/pyexcelerator/trunk/debian/patches/00list 2009-01-18 18:48:06 UTC (rev 7350)
@@ -0,0 +1 @@
+01-write_datetime
Added: packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch
===================================================================
--- packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch (rev 0)
+++ packages/pyexcelerator/trunk/debian/patches/01-write_datetime.dpatch 2009-01-18 18:48:06 UTC (rev 7350)
@@ -0,0 +1,26 @@
+#! /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: No description.
+
+ at 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 @@
+ self.__cells.extend([ Cell.BlankCell(self, col, self.__parent_wb.add_style(style)) ])
+ 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) ])
+@@ -228,4 +228,4 @@
+ self.__cells.extend([ Cell.MulBlankCell(self, c1, c2, self.__parent_wb.add_style(style)) ])
+
+
+-
+\ No newline at end of file
++
Modified: packages/pyexcelerator/trunk/debian/rules
===================================================================
--- packages/pyexcelerator/trunk/debian/rules 2009-01-18 18:09:02 UTC (rev 7349)
+++ packages/pyexcelerator/trunk/debian/rules 2009-01-18 18:48:06 UTC (rev 7350)
@@ -4,6 +4,7 @@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/dpatch.mk
clean::
rm -f pyExcelerator/antlr.py
More information about the Python-modules-commits
mailing list