texi2html (1.82-1) debian-dir only changes

Summary

 debian/README.source                  |    8 +
 debian/changelog                      |  171 ++++++++++++++++++++++++++++++++++
 debian/compat                         |    1 
 debian/control                        |   23 ++++
 debian/copyright                      |   50 +++++++++
 debian/docs                           |    3 
 debian/patches/01_remove_doc_dir.diff |   14 ++
 debian/patches/series                 |    1 
 debian/rules                          |   69 +++++++++++++
 debian/texi2html.doc-base             |   10 +
 debian/watch                          |    2 
 11 files changed, 352 insertions(+)

    
download this patch

Patch contents

--- texi2html-1.82.orig/debian/docs
+++ texi2html-1.82/debian/docs
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO
--- texi2html-1.82.orig/debian/control
+++ texi2html-1.82/debian/control
@@ -0,0 +1,23 @@
+Source: texi2html
+Section: text
+Priority: optional
+Maintainer: Francesco Cecconi <francesco.cecconi@gmail.com>
+Build-Depends: debhelper (>= 7), quilt (>= 0.46-7~)
+Build-Depends-Indep: autotools-dev, texinfo
+Standards-Version: 3.8.3
+Homepage: http://www.nongnu.org/texi2html/
+
+Package: texi2html
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Suggests: latex2html
+Description: Convert Texinfo files to HTML
+ texi2html is a Perl script that converts Texinfo files to HTML.
+ .
+ The program takes Texinfo files (not info ones) and produces a set of
+ HTML files.  The quality of the output is close to the printed output
+ and is much better than an info->HTML gateway.
+ .
+ Compared to the output of `makeinfo --html', texi2html's output is
+ more customizable and (subjectively) produces better output by default.
+ 
--- texi2html-1.82.orig/debian/rules
+++ texi2html-1.82/debian/rules
@@ -0,0 +1,69 @@
+#!/usr/bin/make -f
+
+config.status: configure
+	dh_testdir
+	ln -sf /usr/share/misc/config.sub config.sub
+	ln -sf /usr/share/misc/config.guess config.guess
+	dh_quilt_patch
+	./configure \
+		--prefix=/usr \
+		--mandir=\$${prefix}/share/man \
+		--infodir=\$${prefix}/share/info \
+		--sysconfdir=/etc
+	touch $@
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+	$(MAKE)
+	touch $@ 
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_quilt_unpatch
+	if [ -e Makefile ]; then $(MAKE) -i distclean; fi
+	dh_clean  build-stamp config.status config.sub config.guess \
+	                  translations.pl translations.pl.old i18n/*.old
+
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep 
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/texi2html
+	install -d $(CURDIR)/debian/texi2html/usr/share/doc/texi2html
+	mv -v   $(CURDIR)/debian/texi2html/usr/share/texinfo/html \
+		$(CURDIR)/debian/texi2html/usr/share/doc/texi2html/
+	rm $(CURDIR)/debian/texi2html/usr/share/texi2html/images/COPYING
+	rm $(CURDIR)/debian/texi2html/usr/share/texi2html/images/README
+	rm $(CURDIR)/debian/texi2html/usr/share/texi2html/images/GPL
+	rm $(CURDIR)/debian/texi2html/usr/share/texi2html/images/COPYING.Attribution-ShareAlike
+	rm -rf $(CURDIR)/debian/texi2html/usr/share/texinfo/
+
+
+binary-arch: build install
+
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installmenu
+	dh_installinfo doc/texi2html.info
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- texi2html-1.82.orig/debian/watch
+++ texi2html-1.82/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://savannah.nongnu.org/download/texi2html/texi2html-(.*)\.tar\.gz
--- texi2html-1.82.orig/debian/README.source
+++ texi2html-1.82/debian/README.source
@@ -0,0 +1,8 @@
+| This package uses quilt to manage all modifications to the upstream
+| source.  Changes are stored in the source package as diffs in
+| debian/patches and applied during the build.  Please see:
+| 
+|     /usr/share/doc/quilt/README.source
+| 
+| for more information on how to apply the patches, modify patches, or
+| remove a patch.
--- texi2html-1.82.orig/debian/changelog
+++ texi2html-1.82/debian/changelog
@@ -0,0 +1,171 @@
+texi2html (1.82-1) unstable; urgency=low
+
+  * New upstream release (Closes: #534127)
+  * Closes: #451654: include a doc-base registration file
+  * updated Standard Version to 3.8.3
+  * [debian/control]: new Homepage field
+  * [debian/control]: update debhelper to version 7
+  * [debian/compat]: updated to level 7
+  * [debian/rules]: Updated
+  * [debian/copyright]: Updated 
+  * [debian/patches]: debian/patches/01_remove_doc_dir.diff
+    added, patch fixes dir.gz 
+
+ -- Francesco Cecconi <francesco.cecconi@gmail.com>  Wed, 21 Oct 2009 10:05:15 +0200
+
+texi2html (1.78-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Francesco Cecconi <francesco.cecconi@gmail.com>  Thu, 19 Jul 2007 02:03:21 +0200
+
+texi2html (1.76-4) unstable; urgency=low
+
+  * New maintainer (Closes: #360947)
+  * [debian/rules] Updated 
+  * [debian/copyright] Updated
+
+ -- Francesco Cecconi <francesco.cecconi@gmail.com>  Sun,  9 Apr 2006 01:47:59 +0200
+
+texi2html (1.76-3) unstable; urgency=low
+
+  * New maintainer, many thanks to Nigel Jones for his great work
+    (Closes: #327441)
+  * Not using cdbs anymore, as I personally don't like it
+  * debian/changelog: remove cruft at the end
+  * debian/control:
+    + add Homepage to long description
+    + move debhelper from Build-Depends-Indep to Build-Depends
+    + add B-D-I on autotools-dev
+    + drop Replaces: tetex-bin (<< 1.0.7), even oldstable has a newer
+      version these days
+  * debian/copyright:
+    + list new upstream homepage
+    + list past and present maintainer(s)
+    + include AUTHORS file, dropping it from the deb
+    + fix typo
+  * debian/texi2html.docs:
+    + renamed to debian/docs
+    + include TODO
+  * debian/rules: complete redo, taking care so some cruft doesn't enter
+    the diff.gz
+  * debian/watch: added
+
+ -- Florian Ernst <florian@debian.org>  Thu, 22 Sep 2005 00:32:58 +0200
+
+texi2html (1.76-2) unstable; urgency=low
+
+  * Closes: #318536: Chokes on gnugo.texi
+  * Closes: #317863: Loops forever processing bbdb.texinfo
+  * Closes: #321586: Includes non-free images - Fixed by dual GPL/CC agreement
+  * New maintainer. (Closes: #314843: ITA: texi2html -- Convert Texinfo
+    files to HTML)
+  * Closes: #326048: gnugo: FTBFS: Undefined
+    subroutine &amp;main::normalize_space called at /usr/bin/texi2html
+    line 13756. (Caused by texi2html)
+
+ -- Nigel Jones <nigelj@gmail.com>  Sun,  4 Sep 2005 22:37:39 +1200
+
+texi2html (1.76-1) unstable; urgency=low
+
+  * QA Group upload
+  * debian/control:
+    - Maintainer set to QA Group
+    - Standards-Version set to 3.6.2
+  * New upstream (Closes: #242637)
+  * Acknowledge NMUs (Closes: #238881, #219991, #93348, #220609)
+  * debian/rules: upstream path to html has changed 
+
+ -- Luk Claes <luk@debian.org>  Wed,  6 Jul 2005 21:25:20 +0200
+
+texi2html (1.66-1.2) unstable; urgency=low
+
+  * NMU
+  * _Really_ suggest latex2html.
+
+ -- Andreas Metzler <ametzler@debian.org>  Fri, 19 Mar 2004 15:20:43 +0100
+
+texi2html (1.66-1.1) unstable; urgency=low
+
+  * NMU (Permitted by maintainer.)
+  * If recompiled on sid with /usr/sbin in $PATH the package would
+    contain /usr/share/info/dir.gz (Closes: #219991)
+  * Suggest latex2html because texi2html can make use of it.
+    (Closes: #220609)
+  * Needs at least debhelper 4 to build. Fix Build-Depends.
+
+ -- Andreas Metzler <ametzler@debian.org>  Fri, 19 Mar 2004 14:50:38 +0100
+
+texi2html (1.66-1) unstable; urgency=low
+
+  * New upstream version.
+  * New maintainer.  (Closes: #201381)
+  * debian/copyright: Changed upstream location.  The original upstream
+    maintainer, Oliver Bachmann, has gone missing.  Derek Price has
+    taken over the package upstream.
+  * debian/rules: Use cdbs.  (Closes: #95543)
+  * debian/control: Added build dependency on cdbs.
+
+ -- Ivo Timmermans <ivo@debian.org>  Sat, 19 Jul 2003 14:29:22 +0200
+
+texi2html (1.64-cvs20010402-2) unstable; urgency=low
+
+  * Fix -glossary bug (closes: #93348).
+  * Documentation tidyups, based on Michael Ernst's patch against 1.64.
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Thu, 19 Apr 2001 23:54:09 +1000
+
+texi2html (1.64-cvs20010402-0.1) unstable; urgency=low
+
+  * New upstream version (closes: #68555).
+  * Build-Depends: texinfo (closes: #87669).
+  * Bump Standards-Version to 3.5.2 (no changes).
+  * Only warn rather than aborting if upstream version number greater
+    than debian version number.  (Upstream configure.in already says
+    1.65, but AFAICT 1.65 isn't released yet.)
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Tue,  3 Apr 2001 00:56:45 +1000
+
+texi2html (1.64-0.1) unstable; urgency=low
+
+  * New upstream version (closes #65897, #66662).
+  * Add version info to `Replaces: tetex-bin'.
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Thu,  6 Jul 2000 22:44:51 +1000
+
+texi2html (1.62.1-1) unstable; urgency=low
+
+  * Initial release to Debian.
+  * Sponsored upload for Peter Moulder <pjm@bofh.asn.au>.
+    + changed version number to -1 :)
+    + removed p* scripts, dh_* will generate them properly from scratch,
+      if needed
+    + moved binary-arch contents under binary-indep because it's an
+      Arch: all package.
+    + updated for policy 3.1.1 (Build-Depends: debhelper).
+
+ -- Josip Rodin <jrodin@jagor.srce.hr>  Wed, 26 Apr 2000 15:59:12 +0200
+
+texi2html (1.62.1-0.1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Thu, 13 Apr 2000 13:15:48 +1000
+
+texi2html (1.61.1-0.1) unstable; urgency=low
+
+  * New upstream version.  (Documentation changes.)
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Sat,  8 Apr 2000 14:07:44 +1000
+
+texi2html (1.61-0.1) unstable; urgency=low
+
+  * New upstream version.  Includes extra documentation.
+
+ -- Peter Moulder <pjm@bofh.asn.au>  Sat,  1 Apr 2000 19:12:40 +1000
+
+texi2html (1.59.2-0.1) unstable; urgency=low
+
+  * Initial packaging of the 1.60 series of texi2html.
+
+ -- Peter Moulder <reiter@netspace.net.au>  Mon, 27 Dec 1999 12:57:58 +1100
--- texi2html-1.82.orig/debian/texi2html.doc-base
+++ texi2html-1.82/debian/texi2html.doc-base
@@ -0,0 +1,10 @@
+Document: texi2html
+Title: texi2html Manual
+Author: Karl Heinz Marbaise, Derek Price, Patrice Dumas
+Abstract: This manual describes what texi2html is
+ and how it can be used.
+Section: Text
+
+Format: HTML
+Index: /usr/share/doc/texi2html/html/texi2html.html
+Files: /usr/share/doc/texi2html/html/*.html
--- texi2html-1.82.orig/debian/compat
+++ texi2html-1.82/debian/compat
@@ -0,0 +1 @@
+7
--- texi2html-1.82.orig/debian/copyright
+++ texi2html-1.82/debian/copyright
@@ -0,0 +1,50 @@
+This package was debianized by Peter Moulder <pjm@bofh.asn.au> on
+Mon, 27 Dec 1999 12:57:58 +1100 and maintained by him until 19 Jul 2003.
+Ivo Timmermans <ivo@debian.org>, Andreas Metzler <ametzler@debian.org>
+and Luk Claes <luk@debian.org> have helped when necessary.
+Nigel Jones <nigelj@gmail.com> has fixed some serious issues but
+unfortunately had to drop maintainership prematurely, Florian Ernst <florian@debian.org> 
+maintained it until 9 Apr 2006.
+
+The sources have been downloaded from:
+        
+  homepage is at <http://www.nongnu.org/texi2html/>.
+
+This package is currently maintained by:
+
+  Francesco Cecconi <francesco.cecconi@gmail.com>.
+
+Upstream Authors:
+
+  Texi2html was originally written by is Lionel Cons, CERN IT/DIS/OSE,
+  <Lionel.Cons@cern.ch>.  Over time, many other people around the net
+  contributed to this program.  After that it was maintained for a while
+  by Olaf Bachmann, <obachman@mathematik.uni-kl.de>.
+  Texi2html is now maintained by Derek Price <dprice@cvshome.org>.
+
+  The AUTHORS file lists:
+  Lionel Cons, Karl Berry, Olaf Bachmann, Karl-Heinz Marbaise (texi2html
+  manual) and many others.
+
+  Images in the images directory come from the Singular project:
+  http://www.singular.uni-kl.de/
+
+  parse_8bit_makeinfo_maps.pl: 
+  Patrice Dumas pertusus at free.fr
+
+
+Copyright:
+
+  Copyright (c) 1999, 2000 Free Software Foundation, Inc.
+  There is NO warranty.  You may redistribute this software
+  under the terms of the GNU General Public License, which
+  on Debian systems can be found in /usr/share/common-licenses/GPL.
+
+  The images provided by texi2html are from the singular project, and are
+  dual licensed under the GPL and Creative Commons Attribution-ShareAlike
+  (found at http://creativecommons.org/licenses/by-sa/1.0/).
+
+  The file parse_8bit_makeinfo_maps.pl is in the public domain.
+  
+  (Note that the latter license is not supported by the Debian under the
+  Debian Free Software Guidelines).
--- texi2html-1.82.orig/debian/patches/series
+++ texi2html-1.82/debian/patches/series
@@ -0,0 +1 @@
+01_remove_doc_dir.diff
--- texi2html-1.82.orig/debian/patches/01_remove_doc_dir.diff
+++ texi2html-1.82/debian/patches/01_remove_doc_dir.diff
@@ -0,0 +1,14 @@
+## DP: prevent dir.gz creation 
+
+--- texi2html-1.82.orig/doc/Makefile.in	2009-10-11 14:23:41.000000000 +0200
++++ texi2html-1.82/doc/Makefile.in	2009-10-12 20:52:17.000000000 +0200
+@@ -575,8 +575,7 @@
+ 	  done; \
+ 	done
+ 	@$(POST_INSTALL)
+-	@if (install-info --version && \
+-	     install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
++	@if false; then \
+ 	  list='$(INFO_DEPS)'; \
+ 	  for file in $$list; do \
+ 	    relfile=`echo "$$file" | sed 's|^.*/||'`; \