doxypy (0.4.2-1) debian-dir only changes

Summary

 debian/README.Debian |   10 ++++++++++
 debian/changelog     |    5 +++++
 debian/compat        |    1 +
 debian/control       |   22 ++++++++++++++++++++++
 debian/copyright     |   27 +++++++++++++++++++++++++++
 debian/doxypy.1      |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/manpages      |    1 +
 debian/rules         |   13 +++++++++++++
 debian/watch         |    3 +++
 9 files changed, 133 insertions(+)

    
download this patch

Patch contents

--- doxypy-0.4.2.orig/debian/manpages
+++ doxypy-0.4.2/debian/manpages
@@ -0,0 +1 @@
+debian/doxypy.1
--- doxypy-0.4.2.orig/debian/compat
+++ doxypy-0.4.2/debian/compat
@@ -0,0 +1 @@
+7
--- doxypy-0.4.2.orig/debian/README.Debian
+++ doxypy-0.4.2/debian/README.Debian
@@ -0,0 +1,10 @@
+doxypy for Debian
+-----------------
+
+ In order to make Doxygen preprocess files through doxypy, simply
+ add the following lines to your Doxyfile:
+ 
+     FILTER_SOURCE_FILES = YES
+     INPUT_FILTER = "/usr/bin/doxypy"
+
+ -- David Paleino <dapal@debian.org>  Sun, 17 Jan 2010 11:53:19 +0100
--- doxypy-0.4.2.orig/debian/control
+++ doxypy-0.4.2/debian/control
@@ -0,0 +1,22 @@
+Source: doxypy
+Section: utils
+Priority: optional
+Maintainer: David Paleino <dapal@debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+ python-support (>= 0.90.0~)
+Standards-Version: 3.8.3
+Homepage: http://code.foosel.org/doxypy
+Vcs-Git: git://git.debian.org/git/collab-maint/doxypy.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/doxypy.git
+
+Package: doxypy
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Recommends: doxygen
+Description: Python input filter for Doxygen
+ doxypy is an input filter for Doxygen. It reformats Python comments
+ to conform to Doxygen documentation blocks. This makes it possible
+ to use the Doxygen/Javadoc syntax inside of docstrings when writing
+ code documentation and automatically generate API documentation out
+ of it instead of being forced to use non-Python documentation blocks
+ or to document code redundantly.
--- doxypy-0.4.2.orig/debian/copyright
+++ doxypy-0.4.2/debian/copyright
@@ -0,0 +1,27 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+
+Files: debian/*
+Copyright: © 2010, David Paleino <dapal@debian.org>
+License: GPL-2+
+
+FIles: *
+Copyright: © 2009, Philippe 'demod' Neumann <doxypy@demod.org>
+ © 2009, Gina 'foosel' Häußge <gina@foosel.net>
+License: GPL-2+
+
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+X-Comment: on Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- doxypy-0.4.2.orig/debian/rules
+++ doxypy-0.4.2/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+override_dh_auto_install:
+	dh_auto_install
+	mv $(CURDIR)/debian/doxypy/usr/bin/doxypy.py $(CURDIR)/debian/doxypy/usr/bin/doxypy
+	rm -rf $(CURDIR)/debian/doxypy/usr/lib/
+
+%:
+	dh  $@
--- doxypy-0.4.2.orig/debian/watch
+++ doxypy-0.4.2/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://code.foosel.org/doxypy \
+	http://code.foosel.org/files/doxypy-(\d+.*)\.tar\.gz
--- doxypy-0.4.2.orig/debian/changelog
+++ doxypy-0.4.2/debian/changelog
@@ -0,0 +1,5 @@
+doxypy (0.4.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #565601)
+
+ -- David Paleino <dapal@debian.org>  Sun, 17 Jan 2010 15:18:29 +0100
--- doxypy-0.4.2.orig/debian/doxypy.1
+++ doxypy-0.4.2/debian/doxypy.1
@@ -0,0 +1,51 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.TH DOXYPY 1 "January 17, 2010"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+doxypy \- Python input filter for Doxygen
+.SH SYNOPSIS
+.B doxypy
+.RI [ options ] " files" ...
+.SH DESCRIPTION
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
+.\" respectively.
+\fBdoxypy\fP is an input filter for Doxygen. It reformats Python comments
+to conform to Doxygen documentation blocks. This makes it possible
+to use the Doxygen/Javadoc syntax inside of docstrings when writing
+code documentation and automatically generate API documentation out
+of it instead of being forced to use non-Python documentation blocks
+or to document code redundantly.
+.SH OPTIONS
+.TP
+.B \-h, \-\-help
+Show summary of options.
+.TP
+.B \-\-version
+Show version of program.
+.TP
+.B \-\-autobrief
+Use the docstring summary line as \\brief description.
+.TP
+.B \-\-debug
+Enable debug output on stderr.
+.SH SEE ALSO
+.BR doxygen (1)
+.SH AUTHOR
+.B Philippe 'demod' Neumann <doxypy@demod.org>
+.br
+.B Gina 'foosel' Häußge <gina@foosel.net>
+.PP
+This manual page was written by \fBDavid Paleino <dapal@debian.org>\fR,
+for the Debian project (and may be used by others).