--- trac-graphviz-0.7.5.orig/debian/compat +++ trac-graphviz-0.7.5/debian/compat @@ -0,0 +1 @@ +7 --- trac-graphviz-0.7.5.orig/debian/copyright +++ trac-graphviz-0.7.5/debian/copyright @@ -0,0 +1,47 @@ +This package was debianized by Christoph Egger on +Sat, 31 Jan 2009 18:24:27 +0100. + +It was downloaded from http://trac-hacks.org/changeset/latest/graphvizplugin/0.11-0.7.5?old_path=/&filename=graphvizplugin/0.11-0.7.5&format=zip + +Upstream Author: + + Peter Kropf + +Copyright: + + Copyright © 2005,2006,2008 Peter Kropf + +License: + Copyright © 2005,2006,2008 Peter Kropf + All rights reserved. + + 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. The name of the author may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + + +The Debian packaging is © 2008, Christoph Egger and +is licensed under the BSD License as reproduced above. + --- trac-graphviz-0.7.5.orig/debian/changelog +++ trac-graphviz-0.7.5/debian/changelog @@ -0,0 +1,5 @@ +trac-graphviz (0.7.5-1) unstable; urgency=low + + * Initial release (Closes: #504552) + + -- Christoph Egger Wed, 16 Sep 2009 12:38:47 +0200 --- trac-graphviz-0.7.5.orig/debian/control +++ trac-graphviz-0.7.5/debian/control @@ -0,0 +1,22 @@ +Source: trac-graphviz +Section: python +Priority: optional +Maintainer: Christoph Egger +Build-Depends: debhelper (>= 7.0~), python-setuptools, python (>= 2.5.4-1~) +Build-Depends-Indep: python-support (>= 0.3) +Standards-Version: 3.8.3 +DM-Upload-Allowed: yes +Vcs-Git: git://git.debian.org/git/users/christoph-guest/trac-graphviz.git/ +Vcs-Browser: http://git.debian.org/?p=users/christoph-guest/trac-graphviz.git +Homepage: http://trac-hacks.org/wiki/GraphvizPlugin + +Package: trac-graphviz +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, trac (>= 0.11.1), python-pygraphviz +Recommends: librsvg2-bin +Enhances: trac +Description: Graphs printing plugin for Trac + This is a Plugin for the Trac project management application. It + allows drawing of diagrams in a extension to the wiki markup language + and renders them using the graphviz programs into a form that is + displayable in a webbrowser. --- trac-graphviz-0.7.5.orig/debian/clean +++ trac-graphviz-0.7.5/debian/clean @@ -0,0 +1,2 @@ +0.11/build/ +0.11/TracCustomRoadmap.egg-info/ --- trac-graphviz-0.7.5.orig/debian/rules +++ trac-graphviz-0.7.5/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/python/python.mk + +VERSION_DIR="0.11-0.7.5" + +build: build-stamp +build-stamp: + dh_testdir + + (cd $(VERSION_DIR) && python setup.py build) + + touch $@ + +clean: + dh_testdir + dh_testroot + + (cd $(VERSION_DIR) && python setup.py clean) + + rm -rf $(VERSION_DIR)/build $(VERSION_DIR)/graphviz.egg-info + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + (cd $(VERSION_DIR) && python setup.py install --root="$(CURDIR)/debian/trac-graphviz" --no-compile $(py_setup_install_args)) + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs $(VERSION_DIR)/ReleaseNotes.txt + dh_installdocs $(VERSION_DIR)/README.txt + dh_installexamples $(VERSION_DIR)/examples/* + dh_install + dh_pysupport + dh_installman + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install