[Python-apps-commits] r4311 - in packages/trac/branches/lenny-backports/debian (4 files)
debacle at users.alioth.debian.org
debacle at users.alioth.debian.org
Thu Dec 17 14:34:48 UTC 2009
Date: Thursday, December 17, 2009 @ 14:34:32
Author: debacle
Revision: 4311
Backport of version 0.11.6.
Modified:
packages/trac/branches/lenny-backports/debian/README.Debian
packages/trac/branches/lenny-backports/debian/changelog
packages/trac/branches/lenny-backports/debian/copyright
packages/trac/branches/lenny-backports/debian/patches/00list
Modified: packages/trac/branches/lenny-backports/debian/README.Debian
===================================================================
--- packages/trac/branches/lenny-backports/debian/README.Debian 2009-12-17 14:18:42 UTC (rev 4310)
+++ packages/trac/branches/lenny-backports/debian/README.Debian 2009-12-17 14:34:32 UTC (rev 4311)
@@ -53,7 +53,7 @@
Apache is the most used webserver, so it's preferred for Trac.
It can be configured to be run as CGI application (CGI, WSGI, FCGI)
-or with mod-python.
+or with mod-python. WSGI is the recommended method.
Configuring as CGI, WSGI, FastCGI
---------------------------------
@@ -133,12 +133,20 @@
[1] https://coderanger.net/~coderanger/tracdoc/
-Notes for users upgrading from Trac 0.10.x to 0.11.x
-====================================================
+Notes for users upgrading Trac
+==============================
-SQLite
-------
+Running Trac via WSGI etc.
+--------------------------
+If you upgrade Trac and do not use the builtin HTTP daemon (tracd),
+you must restart your HTTPD manually. E.g. for Apache:
+
+# /etc/init.d/apache restart
+
+Upgrading from Trac 0.10.x to 0.11.x: SQLite
+--------------------------------------------
+
Wookey at toby-churchill.com came across the issue, that the
SQLite format between Trac 0.10.x (SQLite v2) and 0.11.x (SQLite
v3) has changed. If you happen to use SQLite, use the following
@@ -147,6 +155,21 @@
With the new file you should be able to run Trac as expected.
See http://bugs.debian.org/501338 for details.
+
+Debian specifics
+================
+
+We added some patches and files, that are useful to most users:
+
+1. A patch, that already is applied upstream to allow filtering the
+ timeline for specific users.
+ See http://trac.edgewall.org/ticket/1198
+2. A sample script to migrate an SQLite Trac database to PostgreSQL.
+ See http://trac-hacks.org/wiki/SqliteToPgScript
+3. A patch to use UTF-8 per default, as this is the default and
+ preferred encoding on Debian systems.
+
+
Enjoy!
/The Trac Team
@@ -157,5 +180,5 @@
Visit the Trac open source project at <http://trac.edgewall.com/>
Jonas Borgstrom <jonas at edgewall.com>, Sat, 22 May 2004 20:49:22 +0200
-Luis Matos <gass at otiliamatos.ath.cx> Mon, 21 Jul 2008 21:06:36 +0100
-
+Luis Matos <gass at otiliamatos.ath.cx>, Mon, 21 Jul 2008 21:06:36 +0100
+W. Martin Borgert <debacle at debian.org>, Sat, 2009-10-10, 11:39 +0000
Modified: packages/trac/branches/lenny-backports/debian/changelog
===================================================================
--- packages/trac/branches/lenny-backports/debian/changelog 2009-12-17 14:18:42 UTC (rev 4310)
+++ packages/trac/branches/lenny-backports/debian/changelog 2009-12-17 14:34:32 UTC (rev 4311)
@@ -1,10 +1,28 @@
-trac (0.11.5-4~bpo50+1) lenny-backports; urgency=low
+trac (0.11.6-1~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
* One line change in debian/rules to prevent Build-Depends on new python.
- -- W. Martin Borgert <debacle at debian.org> Sun, 11 Oct 2009 10:02:13 +0000
+ -- W. Martin Borgert <debacle at debian.org> Thu, 17 Dec 2009 14:10:40 +0000
+trac (0.11.6-1) unstable; urgency=low
+
+ * New upstream release (Closes: #558976).
+ * Fix version of build dependency (Closes: #551688), thanks, Kumar Appaiah.
+ * Fix a potential pysqlite cursor problem, thanks, Grzegorz Sobanski.
+ See debian/patches/60_roadmap_dbx_cursor_fix.dpatch
+
+ -- W. Martin Borgert <debacle at debian.org> Mon, 07 Dec 2009 17:19:33 +0000
+
+trac (0.11.5-5) unstable; urgency=low
+
+ * Include SqliteToPg script in contrib (Closes: #505680).
+ * Advice user to restart HTTPD after upgrade in README.Debian
+ (Closes: #519670).
+ * Add patch to support user filter for timeline (Closes: #550469).
+
+ -- W. Martin Borgert <debacle at debian.org> Sat, 10 Oct 2009 12:00:50 +0000
+
trac (0.11.5-4) unstable; urgency=low
* Revert the change: Depend on python-setuptools instead of
Modified: packages/trac/branches/lenny-backports/debian/copyright
===================================================================
--- packages/trac/branches/lenny-backports/debian/copyright 2009-12-17 14:18:42 UTC (rev 4310)
+++ packages/trac/branches/lenny-backports/debian/copyright 2009-12-17 14:34:32 UTC (rev 4311)
@@ -30,3 +30,9 @@
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+The SqliteToPg script is copyright by
+John Hampton <pacopablo at pacopablo.com>,
+licensed under the same conditions as Trac.
+It has been downloaded from
+http://trac-hacks.org/wiki/SqliteToPgScript
Modified: packages/trac/branches/lenny-backports/debian/patches/00list
===================================================================
--- packages/trac/branches/lenny-backports/debian/patches/00list 2009-12-17 14:18:42 UTC (rev 4310)
+++ packages/trac/branches/lenny-backports/debian/patches/00list 2009-12-17 14:34:32 UTC (rev 4311)
@@ -1,3 +1,6 @@
15_remove_jquery_file.dpatch
20_add_interpreter_line.dpatch
30_default_charset_utf8.dpatch
+40_timeline_author_filter.dpatch
+50_sqlitetopg_script.dpatch
+60_roadmap_dbx_cursor_fix.dpatch
More information about the Python-apps-commits
mailing list