From: joey Date: Tue, 17 Aug 1999 04:58:49 +0000 (+0000) Subject: r118: Initial Import X-Git-Tag: debian_version_0_1~118 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=be64835b776e14dedc2ed4861af112d487a3bd79;p=debhelper.git r118: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 314ea71..05d3981 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +debhelper (1.1.12) unstable; urgency=low + + * dh_installdocs: forgot to pass package name to isnative(). Any native + debian package that had a debian/TODO would have it installed with the + wrong name, and debhelper would warn of undefined values for some + packages. Fixed. + + -- Joey Hess Thu, 27 Aug 1998 12:35:42 -0700 + debhelper (1.1.11) unstable; urgency=low * dh_installchangelogs: added -k flag, that will make it install a symlink diff --git a/dh_installdocs b/dh_installdocs index 3229cd1..34fe97d 100755 --- a/dh_installdocs +++ b/dh_installdocs @@ -40,7 +40,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { $todo=pkgfile($PACKAGE,'TODO'); if ($todo) { - if (isnative()) { + if (isnative($PACKAGE)) { doit("install","-m","644","-p",$todo,"$TMP/usr/doc/$PACKAGE/TODO"); } else { diff --git a/doc/TODO b/doc/TODO index 460abc6..9f184e3 100644 --- a/doc/TODO +++ b/doc/TODO @@ -32,6 +32,10 @@ Wishlist items: to do that originally, and even worse, it is often run after dh_installdeb, so the fragements wouldn't go into the postinst. So maybe a new script is called for. +* Need a way to make dh_strip not strip any static libs. Also, it'd be nice + if there were options to dh_strip, dh_compress, etc, to allow inclusiuon of + directories and exclusion of files based on filname globbing. (Request from + Matthias Klose ) * docbase support (#25233). Waiting for docbase to stabalize and be used widly. * Support /etc/X11/window-managers, by making it easy for window managers to