]> git.donarmstrong.com Git - debhelper.git/commitdiff
r118: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:58:49 +0000 (04:58 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:58:49 +0000 (04:58 +0000)
debian/changelog
dh_installdocs
doc/TODO

index 314ea71e5ca1b39d60c0ab0a428aebf5bcd8447d..05d3981093b260b6e7f97a190750ce6916eab324 100644 (file)
@@ -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 <joeyh@master.debian.org>  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
index 3229cd15bd3de7e4455584335e0191641bd4b86c..34fe97d18933585b7322d78ed818cd6259a2b02f 100755 (executable)
@@ -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 {
index 460abc63eb1a5484e9623ed9c5836b6083c44a6d..9f184e3d690e4c83c72578ffb73ee7a3dab71414 100644 (file)
--- 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 <doko@cs.tu-berlin.de>)
 * 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