[Python-apps-commits] r8083 - in packages/trac-jsgantt/trunk (10 files)

debacle at users.alioth.debian.org debacle at users.alioth.debian.org
Sun Jan 15 17:21:04 UTC 2012


    Date: Sunday, January 15, 2012 @ 17:21:03
  Author: debacle
Revision: 8083

New package trac-jsgantt.

Added:
  packages/trac-jsgantt/trunk/debian/README.Debian
  packages/trac-jsgantt/trunk/debian/changelog
  packages/trac-jsgantt/trunk/debian/compat
  packages/trac-jsgantt/trunk/debian/control
  packages/trac-jsgantt/trunk/debian/copyright
  packages/trac-jsgantt/trunk/debian/rules
  packages/trac-jsgantt/trunk/debian/source/
  packages/trac-jsgantt/trunk/debian/source/format
  packages/trac-jsgantt/trunk/debian/watch
Modified:
  packages/trac-jsgantt/trunk/debian/	(properties)


Property changes on: packages/trac-jsgantt/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/trac-jsgantt/trunk/debian/README.Debian
===================================================================
--- packages/trac-jsgantt/trunk/debian/README.Debian	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/README.Debian	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,34 @@
+Use the macro in the Trac wiki or in a ticket, e.g.:
+
+[[TracJSGanttChart(milestone=wheezy,dateDisplay=yyyy-mm-dd)]]
+
+Your /etc/trac/trac.ini or $PROJECT/conf/trac.ini should contain
+something like:
+
+[TracPM]
+# To work with trac-mastertickets for dependencies
+## Ticket field to use as the data source for predecessor list
+fields.pred = blockedby
+## Ticket field to use as the data source for successor list
+fields.succ = blocking
+#
+# To work with trac-subtickets for parent/child relationships
+## Ticket field to use as the data source for the parent parent_format', '%s', Format of ticket IDs in parent field (default: None).
+fields.parent = parents
+#
+# Custom fields for start and due dates
+## Ticket field to use as the data source for start date (default: None)
+fields.start = userstart
+## Ticket field to use as the data source for finish date (default: None)
+fields.finish = userfinish
+#
+# Format for ''start'' and ''finish'' date strings (default: '%Y-%m-%d')
+date_format = %Y-%m-%d
+#
+# Ticket type for milestone-like tickets (default: 'milestone')
+milestone_type = milestone
+#
+default_estimate = 4.0
+estimate_pad = 0.0
+fields.percent =
+hours_per_estimate = 1

Added: packages/trac-jsgantt/trunk/debian/changelog
===================================================================
--- packages/trac-jsgantt/trunk/debian/changelog	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/changelog	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,5 @@
+trac-jsgantt (0.9+r11145-1) unstable; urgency=low
+
+  * First Debian package (Closes: #655429).
+
+ -- W. Martin Borgert <debacle at debian.org>  Sun, 15 Jan 2012 16:04:34 +0000

Added: packages/trac-jsgantt/trunk/debian/compat
===================================================================
--- packages/trac-jsgantt/trunk/debian/compat	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/compat	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1 @@
+7

Added: packages/trac-jsgantt/trunk/debian/control
===================================================================
--- packages/trac-jsgantt/trunk/debian/control	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/control	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,24 @@
+Source: trac-jsgantt
+Section: web
+Priority: optional
+Build-Depends: python-all (>= 2.6.6-3~), python-setuptools, debhelper (>= 7.0.50~)
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Uploaders: W. Martin Borgert <debacle at debian.org>
+Standards-Version: 3.9.2
+Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/trac-jsgantt/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/trac-jsgantt/trunk/
+Homepage: http://trac-hacks.org/wiki/TracJsGanttPlugin
+
+Package: trac-jsgantt
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, trac
+Recommends: trac-mastertickets, trac-subtickets
+Description: displays Trac tickets as a Gantt chart in a wiki page
+ A plugin which allows Trac ticket data to be displayed in a
+ jsGantt chart in a wiki page. Tasks and milestones are links to
+ the corresponding ticket or milestone.
+ .
+ Configurable field names allow integration with other plugins
+ such as trac-mastertickets (for dependencies), trac-subtickets
+ (for parent/child relationships), and TimingAndEstimation
+ (for estimated and total hours).

Added: packages/trac-jsgantt/trunk/debian/copyright
===================================================================
--- packages/trac-jsgantt/trunk/debian/copyright	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/copyright	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,42 @@
+This package was debianized by:
+
+    W. Martin Borgert <debacle at debian.org> on Sun, 15 Jan 2012 16:08:42 +0000
+
+It was downloaded from:
+
+    http://trac-hacks.org/wiki/TracJsGanttPlugin
+
+Upstream Author:
+
+    Chris Nelson <Chris.Nelson at SIXNET.com>
+
+Copyright:
+
+    © 2007-2012 Chris Nelson <Chris.Nelson at SIXNET.com>
+    © 2008-2009, Shlomy Gantz, BlueBrick Inc.
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+    3. Neither the name of the University nor the names of its contributors
+       may be used to endorse or promote products derived from this software
+       without specific prior written permission.
+
+    THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+    ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 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.

Added: packages/trac-jsgantt/trunk/debian/rules
===================================================================
--- packages/trac-jsgantt/trunk/debian/rules	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/rules	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --sourcedir=0.11 --with python2 --buildsystem=python_distutils


Property changes on: packages/trac-jsgantt/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/trac-jsgantt/trunk/debian/source/format
===================================================================
--- packages/trac-jsgantt/trunk/debian/source/format	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/source/format	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/trac-jsgantt/trunk/debian/watch
===================================================================
--- packages/trac-jsgantt/trunk/debian/watch	                        (rev 0)
+++ packages/trac-jsgantt/trunk/debian/watch	2012-01-15 17:21:03 UTC (rev 8083)
@@ -0,0 +1,6 @@
+version=3
+
+opts=downloadurlmangle=s/$/\/tracjsganttplugin\/0\.9\?old_path=\/&format=zip/,uversionmangle=s/^/0.9+r/ \
+ http://trac-hacks.org/log/tracjsganttplugin \
+ /changeset/(\d+) \
+ debian uupdate




More information about the Python-apps-commits mailing list