]> git.donarmstrong.com Git - debhelper.git/commitdiff
Add deprecation warnings for -u to the documentation, since putting options after...
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 5 Nov 2009 01:47:13 +0000 (20:47 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 5 Nov 2009 01:47:13 +0000 (20:47 -0500)
debian/changelog
dh_builddeb
dh_gencontrol
dh_shlibdeps
doc/TODO

index 35647d88f419f6e35e303dc50eb3b4560407ac7d..1eca2a1f6235b9de9b8f8ac29d81ed40ee816853 100644 (file)
@@ -11,6 +11,9 @@ debhelper (7.4.4) UNRELEASED; urgency=low
     debhelper runs make, and the parent debian/rules was run in parallel
     mode (as dpkg-buildpackage -j currently does).
   * Thanks, Modestas Vainius for much of the work on parallel build support.
+  * Add deprecation warnings for -u to the documentation, since putting
+    options after -- is much more sane. (However, -u will not go away any
+    time soon.) Closes: #554509
 
  -- Joey Hess <joeyh@debian.org>  Wed, 28 Oct 2009 18:10:45 -0400
 
index 3547649ba481a90c52261a35b8dc0045312f9f47..3477f25765d2693107ab74d87bf4b9a79bf04e6e 100755 (executable)
@@ -32,13 +32,16 @@ other than the default of ".."
 Use this if you want to force the generated .deb file to have a particular
 file name. Does not work well if more than one .deb is generated!
 
-=item B<-u>I<params>
-
 =item B<--> I<params>
 
 Pass I<params> to L<dpkg-deb(1)> when it is used to build the
 package.
 
+=item B<-u>I<params>
+
+This is another way to pass I<params> to L<dpkg-deb(1)>.
+It is deprecated; use B<--> instead.
+
 =back
 
 =cut
index 726d0855df6b457924c025aa7a652546406bb701..93f0459411dc1bb448ad171ed4db095677904328 100755 (executable)
@@ -27,12 +27,15 @@ useful flags.
 
 =over 4
 
-=item B<-u>I<params>, B<--dpkg-gencontrol-params>=I<params>
-
 =item B<--> I<params>
 
 Pass "params" to L<dpkg-gencontrol(1)>.
 
+=item B<-u>I<params>, B<--dpkg-gencontrol-params>=I<params>
+
+This is another way to pass I<params> to L<dpkg-deb(1)>.
+It is deprecated; use B<--> instead.
+
 =back
 
 =cut
index e5f73cbabaa24925f9480e47d5f316de322ce2cd..91930d747f0ab0cb5ba00f5da73fbe69e811c62e 100755 (executable)
@@ -27,12 +27,6 @@ a list of ELF executables and shared libraries it has found.
 
 =over 4
 
-=item B<-u>I<params>, B<--dpkg-shlibdeps-params=>I<params>
-
-=item B<--> I<params>
-
-Pass "params" to L<dpkg-shlibdeps(1)>.
-
 =item B<-X>I<item>, B<--exclude=>I<item>
 
 Exclude files that contain "item" anywhere in their filename from being
@@ -40,6 +34,15 @@ passed to dpkg-shlibdeps. This will make their dependencies be ignored.
 This may be useful in some situations, but use it with caution. This option
 may be used more than once to exclude more than one thing.
 
+=item B<--> I<params>
+
+Pass "params" to L<dpkg-shlibdeps(1)>.
+
+=item B<-u>I<params>, B<--dpkg-shlibdeps-params=>I<params>
+
+This is another way to pass I<params> to L<dpkg-deb(1)>.
+It is deprecated; use B<--> instead.
+
 =item B<-l>I<directory>[:directory:directory:..]
 
 With recent versions of dpkg-shlibdeps, this option is generally not
index ec3799683f4799dd5d896c970990e19042083bb3..89469c968f2c3b8b0193b08ddf32c8448f5ae197 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -32,3 +32,4 @@ Deprecated:
   that pass unknown options to commands are fixed.
 * dh_desktop, dh_scrollkeeper. Remove eventually..
 * -s flag, not formally deprecated yet; remove eventually
+* -u flag; add a warning on use and remove eventually