[Python-apps-commits] r4940 - in packages/trac/trunk/debian (3 files)

debacle at users.alioth.debian.org debacle at users.alioth.debian.org
Thu Mar 11 22:35:06 UTC 2010


    Date: Thursday, March 11, 2010 @ 22:35:01
  Author: debacle
Revision: 4940

Prepare 0.11.7-1.

Modified:
  packages/trac/trunk/debian/changelog
  packages/trac/trunk/debian/patches/00list
Deleted:
  packages/trac/trunk/debian/patches/60_roadmap_dbx_cursor_fix.dpatch

Modified: packages/trac/trunk/debian/changelog
===================================================================
--- packages/trac/trunk/debian/changelog	2010-03-10 21:56:10 UTC (rev 4939)
+++ packages/trac/trunk/debian/changelog	2010-03-11 22:35:01 UTC (rev 4940)
@@ -1,6 +1,8 @@
-trac (0.11.6-4) UNRELEASED; urgency=low
+trac (0.11.7-1) unstable; urgency=low
 
+  * New upstream release (Closes: #573260).
   * Added more Trac plugins as suggestions.
+  * Removed obsolete patches.
 
  -- W. Martin Borgert <debacle at debian.org>  Wed, 17 Feb 2010 08:38:41 +0100
 

Modified: packages/trac/trunk/debian/patches/00list
===================================================================
--- packages/trac/trunk/debian/patches/00list	2010-03-10 21:56:10 UTC (rev 4939)
+++ packages/trac/trunk/debian/patches/00list	2010-03-11 22:35:01 UTC (rev 4940)
@@ -3,6 +3,5 @@
 30_default_charset_utf8.dpatch
 40_timeline_author_filter.dpatch
 50_sqlitetopg_script.dpatch
-60_roadmap_dbx_cursor_fix.dpatch
 70_cache_control_typo.dpatch
 80_correct_plugin_names.dpatch

Deleted: packages/trac/trunk/debian/patches/60_roadmap_dbx_cursor_fix.dpatch
===================================================================
--- packages/trac/trunk/debian/patches/60_roadmap_dbx_cursor_fix.dpatch	2010-03-10 21:56:10 UTC (rev 4939)
+++ packages/trac/trunk/debian/patches/60_roadmap_dbx_cursor_fix.dpatch	2010-03-11 22:35:01 UTC (rev 4940)
@@ -1,22 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 60_roadmap_dbx_cursor_fix.dpatch by  <debacle at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: fix a potential sqlite cursor problem
-
- at DPATCH@
-
-diff --git a/trac/ticket/roadmap.py b/trac/ticket/roadmap.py
-index d2684f1..57eb6a5 100644
---- a/trac/ticket/roadmap.py
-+++ b/trac/ticket/roadmap.py
-@@ -195,7 +195,8 @@ class DefaultTicketGroupStatsProvider(Component):
-         for s in all_statuses:
-             status_cnt[s] = 0
-         if total_cnt:
--            cursor = self.env.get_db_cnx().cursor()
-+            db = self.env.get_db_cnx()
-+            cursor = db.cursor()
-             str_ids = [str(x) for x in sorted(ticket_ids)]
-             cursor.execute("SELECT status, count(status) FROM ticket "
-                            "WHERE id IN (%s) GROUP BY status" %




More information about the Python-apps-commits mailing list