From: joey <joey>
Date: Mon, 28 Jul 2003 19:37:12 +0000 (+0000)
Subject: r1086:    * Several man pae typo fixes by Ruben Porras. Closes: #202819
X-Git-Tag: version_4.1.56
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8ec78d804cda2dde186e3a463b0ecc7e225ae8bd;p=debhelper.git

r1086:    * Several man pae typo fixes by Ruben Porras. Closes: #202819
   * Now in a subversion repository, some minor changes for that.
   * dh_link test should expect results in debian/debhelper, not debian/tmp.
---

diff --git a/debhelper.pod b/debhelper.pod
index 3fa2e2d..ad40d71 100644
--- a/debhelper.pod
+++ b/debhelper.pod
@@ -38,6 +38,10 @@ pages for additional documentation.
 
 =back
 
+If a program's name starts with "dh_", and the program is not on the above
+list, then it is not part of the debhelper package, but it should still
+work like the other programs described on this page.
+
 =head1 DEBHELPER CONFIG FILES
 
 Many debhelper commands make use of files in F<debian/> to control what they
diff --git a/debian/changelog b/debian/changelog
index 4c03e6d..3d0cec6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+debhelper (4.1.56) unstable; urgency=low
+
+  * Several man pae typo fixes by Ruben Porras. Closes: #202819
+  * Now in a subversion repository, some minor changes for that.
+  * dh_link test should expect results in debian/debhelper, not debian/tmp.
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 28 Jul 2003 15:36:45 -0400
+
 debhelper (4.1.55) unstable; urgency=low
 
   * dh_strip: do not strip files multiple times.
diff --git a/debian/rules b/debian/rules
index ffb2c9b..0c22f0e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -56,7 +56,7 @@ clean:
 test: test-stamp
 test-stamp:
 	./dh_clean
-	DH_VERSION=10 perl -MTest::Harness -e 'runtests grep { ! /CVS/ } @ARGV' t/*
+	DH_VERSION=10 perl -MTest::Harness -e 'runtests grep { ! /CVS/ && ! /\.svn/ } @ARGV' t/*
 	./dh_clean
 	touch test-stamp
 
diff --git a/dh_installcatalogs b/dh_installcatalogs
index fdaf0fa..eef8cde 100755
--- a/dh_installcatalogs
+++ b/dh_installcatalogs
@@ -17,7 +17,7 @@ B<dh_installcatalogs> [S<I<debhelper options>>] [B<-n>]
 
 =head1 DESCRIPTION
 
-dh_installcatalog is a debhelper program that installs and
+dh_installcatalogs is a debhelper program that installs and
 registers SGML catalogs. (Note: it will be extended for XML catalog
 registration when xml-core is available.)  It complies with the Debian
 XML/SGML policy.
diff --git a/dh_installman b/dh_installman
index 59db683..6ee0009 100755
--- a/dh_installman
+++ b/dh_installman
@@ -23,8 +23,8 @@ install them based on the section field in their .TH line. If you have a
 properly formatted .TH line, your man page will be installed into the right
 directory, with the right name (this includes proper handling of pages
 with a subsection, like "3perl", which are placed in man3, and given an
-extention of ".3perl"). If your .TH line is incorrect or missing, the program
-may guess wrong based on the file extention.
+extension of ".3perl"). If your .TH line is incorrect or missing, the program
+may guess wrong based on the file extension.
 
 It also supports translated man pages, by looking for extensions
 like .ll.8 and .ll_LL.8
diff --git a/dh_installxfonts b/dh_installxfonts
index 984144b..c60178d 100755
--- a/dh_installxfonts
+++ b/dh_installxfonts
@@ -25,7 +25,7 @@ directory, and if you have fonts.alias or fonts.scale files, you should
 install them into the correct location under etc/X11/fonts in your package
 build directory.
 
-Your package should should depend on xutils (>= 4.0.3) so that the
+Your package should depend on xutils (>= 4.0.3) so that the
 update-fonts-* commands are available. (This program adds that dependency to
 ${misc:Depends}.)
 
diff --git a/t/dh_link b/t/dh_link
old mode 100644
new mode 100755
index 9f644e7..3ab345e
--- a/t/dh_link
+++ b/t/dh_link
@@ -5,12 +5,12 @@ plan(tests => 3);
 # It used to not make absolute links in this situation, and it should.
 # #37774
 system("./dh_link","etc/foo","usr/lib/bar");
-ok("/etc/foo",readlink("debian/tmp/usr/lib/bar"));
+ok("/etc/foo",readlink("debian/debhelper/usr/lib/bar"));
 
 # let's make sure it makes simple relative links ok.
 system("./dh_link","usr/bin/foo","usr/bin/bar");
-ok("foo",readlink("debian/tmp/usr/bin/bar"));
+ok("foo",readlink("debian/debhelper/usr/bin/bar"));
 
 # ok, more complex relative links.
 system("./dh_link","usr/lib/1","usr/bin/2");
-ok("../lib/1",readlink("debian/tmp/usr/bin/2"));
+ok("../lib/1",readlink("debian/debhelper/usr/bin/2"));