[Python-apps-commits] r4357 - in packages/trac/trunk/debian (6 files)

debacle at users.alioth.debian.org debacle at users.alioth.debian.org
Thu Dec 24 13:02:40 UTC 2009


    Date: Thursday, December 24, 2009 @ 13:02:27
  Author: debacle
Revision: 4357

New version, fixing two bugs.
(Sorry, reverted accidently a change by Jakub Wilk.)

Added:
  packages/trac/trunk/debian/postinst
  packages/trac/trunk/debian/prerm
Modified:
  packages/trac/trunk/debian/changelog
  packages/trac/trunk/debian/control
  packages/trac/trunk/debian/copyright
Deleted:
  packages/trac/trunk/debian/trac.links

Modified: packages/trac/trunk/debian/changelog
===================================================================
--- packages/trac/trunk/debian/changelog	2009-12-24 11:18:23 UTC (rev 4356)
+++ packages/trac/trunk/debian/changelog	2009-12-24 13:02:27 UTC (rev 4357)
@@ -1,15 +1,12 @@
-trac (0.11.6-2) UNRELEASED; urgency=low
+trac (0.11.6-2) unstable; urgency=low
 
-  [ W. Martin Borgert ]
+  * Create jQuery symlink at install time, as the file might not
+    exist at that moment. (Closes: #562145). Thanks, Clint Adams.
   * Fix a typo in tracd HTTP header, thanks to Sebastien Couret
-    <10function at neuf.com> for fixing.
-  * ...
+    for fixing. (Closes: #561406).
 
-  [ Jakub Wilk ]
-  * Replace deprecated > operator with >=.
+ -- W. Martin Borgert <debacle at debian.org>  Thu, 24 Dec 2009 08:43:08 +0000
 
- -- W. Martin Borgert <debacle at debian.org>  
-
 trac (0.11.6-1) unstable; urgency=low
 
   * New upstream release (Closes: #558976).

Modified: packages/trac/trunk/debian/control
===================================================================
--- packages/trac/trunk/debian/control	2009-12-24 11:18:23 UTC (rev 4356)
+++ packages/trac/trunk/debian/control	2009-12-24 13:02:27 UTC (rev 4357)
@@ -1,7 +1,7 @@
 Source: trac
 Section: web
 Priority: optional
-Build-Depends-Indep: python-setuptools (>= 0.5)
+Build-Depends-Indep: python-setuptools (> 0.5)
 Build-Depends: python-genshi (>= 0.5), python-central, python-all-dev (>= 2.5.4), debhelper (>= 7), dpatch 
 Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
 Uploaders: Otavio Salvador <otavio at debian.org>, Jesus Climent <jesus.climent at hispalinux.es>, Luis Matos <gass at otiliamatos.ath.cx>, W. Martin Borgert <debacle at debian.org>

Modified: packages/trac/trunk/debian/copyright
===================================================================
--- packages/trac/trunk/debian/copyright	2009-12-24 11:18:23 UTC (rev 4356)
+++ packages/trac/trunk/debian/copyright	2009-12-24 13:02:27 UTC (rev 4357)
@@ -31,8 +31,22 @@
 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
+
+
+The file jquery.js (only in the source package) is 
+Copyright (c) 2005-2008 by John Resig, Brandon Aaron & Jörn Zaefferer.
+For more details on developers please see :
+    http://docs.jquery.com/Contributors
+This program is free software; you can redistribute it and/or modify
+it under the terms of either:
+    a) the GNU General Public License as published by the Free Software
+       Foundation; version 2.
+    b) the MIT license.
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'

Added: packages/trac/trunk/debian/postinst
===================================================================
--- packages/trac/trunk/debian/postinst	                        (rev 0)
+++ packages/trac/trunk/debian/postinst	2009-12-24 13:02:27 UTC (rev 4357)
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+set -e
+
+# create link, even if original file does not exist (yet)
+ln -sf /usr/share/javascript/jquery/jquery.js \
+    /usr/share/pyshared/trac/htdocs/js/jquery.js 
+
+#DEBHELPER#
+
+exit 0

Added: packages/trac/trunk/debian/prerm
===================================================================
--- packages/trac/trunk/debian/prerm	                        (rev 0)
+++ packages/trac/trunk/debian/prerm	2009-12-24 13:02:27 UTC (rev 4357)
@@ -0,0 +1,5 @@
+#!/bin/sh -e
+
+rm -f /usr/share/pyshared/trac/htdocs/js/jquery.js 
+
+#DEBHELPER#

Deleted: packages/trac/trunk/debian/trac.links
===================================================================
--- packages/trac/trunk/debian/trac.links	2009-12-24 11:18:23 UTC (rev 4356)
+++ packages/trac/trunk/debian/trac.links	2009-12-24 13:02:27 UTC (rev 4357)
@@ -1,2 +0,0 @@
-/usr/share/javascript/jquery/jquery.js /usr/share/pyshared/trac/htdocs/js/jquery.js 
- 




More information about the Python-apps-commits mailing list