]> git.donarmstrong.com Git - debhelper.git/commitdiff
r464: * Now uses html2text rather than lynx for converting html changelogs.
authorjoey <joey>
Tue, 8 May 2001 01:26:39 +0000 (01:26 +0000)
committerjoey <joey>
Tue, 8 May 2001 01:26:39 +0000 (01:26 +0000)
     The program generates better results, and won't annoy the people who
     were oddly annoyed at having to install lynx. Instead, it will annoy a
     whole other set of people, I'm sure. Closes: #93747

debian/changelog
debian/control
dh_installchangelogs

index efc73e2218636f1706f3893f4f3102b56d080a6d..93b1999937591b0ed9687d1443400ddea6657413 100644 (file)
@@ -1,3 +1,12 @@
+debhelper (3.0.19) unstable; urgency=low
+
+  * Now uses html2text rather than lynx for converting html changelogs.
+    The program generates better results, and won't annoy the people who
+    were oddly annoyed at having to install lynx. Instead, it will annoy a
+    whole other set of people, I'm sure. Closes: #93747
+
+ -- Joey Hess <joeyh@debian.org>  Mon,  7 May 2001 21:23:46 -0400
+
 debhelper (3.0.18) unstable; urgency=low
 
   * dh_perl: updates from bod:
index 9dca1704e059a3271c26c8998abf2d9a463ac940..6be4f678be3f759eae398058734b570f5ededbe4 100644 (file)
@@ -3,15 +3,16 @@ Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
 Build-Depends-Indep: perl-5.6, fileutils (>= 4.0-2.1), file (>= 3.23-1), debconf-utils
-Standards-Version: 3.5.3.0
+Standards-Version: 3.5.4.0
 
 Package: debhelper
 Architecture: all
-Depends: ${perl:Depends}, fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.7.0), lynx, debconf-utils, binutils
+Depends: ${perl:Depends}, fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.7.0), html2text, debconf-utils, binutils
 Suggests: dh-make
 Description: helper programs for debian/rules
  A collection of programs that can be used in a debian/rules file to
- automate common tasks related to building binary debian packages. Programs
- are included to install various files into your package, compress files, fix
- file permissions, integrate your package with the debian menu system,
- suidmanager, doc-base, etc.
+ automate common tasks related to building debian packages. Programs
+ are included to install various files into your package, compress 
+ files, fix file permissions, integrate your package with the debian 
+ menu system, suidmanager, doc-base, etc. Most debian packages use
+ debhelper as part of their build process.
index 76dd1c1930c75bb9f9f894d7c795e11000a31921..b0c6c50e62c4a1949d12b4ed40c09479def9d15b 100755 (executable)
@@ -30,7 +30,7 @@ not a native debian package, then this upstream changelog will be installed
 as usr/share/doc/package/changelog in the package build directory. If the
 changelog is a html file (determined by file extension), it will be
 installed as usr/share/doc/package/changelog.html instead, and will be
-converted to plain text with lynx to generate
+converted to plain text with html2text to generate
 usr/share/doc/package/changelog.
 
 =head1 OPTIONS
@@ -100,7 +100,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                        # HTML changelog
                        doit("install","-o",0,"-g",0,"-p","-m644",
                                $upstream,"$tmp/usr/share/doc/$package/changelog.html");
-                       complex_doit("lynx -dump $upstream > $tmp/usr/share/doc/$package/changelog");
+                       doit("html2text","-nobs","-o","$tmp/usr/share/doc/$package/changelog",$upstream);
                        $link_to='changelog.html';
                }
                else {