]> git.donarmstrong.com Git - debhelper.git/commitdiff
r325: * Corrected mispellings, Closes: #52013
authorjoey <joey>
Mon, 6 Dec 1999 21:49:05 +0000 (21:49 +0000)
committerjoey <joey>
Mon, 6 Dec 1999 21:49:05 +0000 (21:49 +0000)
debian/changelog
debian/control
dh_compress
dh_compress.1
dh_installchangelogs.1
dh_undocumented
dh_undocumented.1
doc/v2

index 056d7b104949d94726e3b0a7814eca99b56eb2d0..2a9ab762a98673674bd546aefc3475a603b52945 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.0.79) unstable; urgency=low
+
+  * Corrected mispellings, Closes: #52013
+
+ -- Joey Hess <joeyh@debian.org>  Mon,  6 Dec 1999 13:46:18 -0800
+
 debhelper (2.0.78) unstable; urgency=low
 
   * dh_fixperms: chown symlinks as well as normal files. Closes: #51169.
@@ -97,9 +103,9 @@ debhelper (2.0.69) unstable; urgency=low
     should make it easier for library packages that also build binary
     packages to be built with correct dependancies. Closes: #36751
   * In honor of Burn all GIFs Day (hi Don!), I added alternative
-    image formats .png, .jpg (and .jpeg) to the list of extentions dh_compress
+    image formats .png, .jpg (and .jpeg) to the list of extensions dh_compress
     does not compress. Closes: #41733
-  * Also, made all extentions dh_compress skips be looked at case
+  * Also, made all extensions dh_compress skips be looked at case
     insensitively.
   * dh_movefiles: force owner and group of installed files to be root.
     Closes: #46039
index 9a07e9913a863824b203f58add78e2282939cb7f..4bb30a8646c0254b50258c3a91ec4af0ce0b5c6a 100644 (file)
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
 Build-Depends-Indep: perl-5.005, fileutils (>= 3.16-4), file (>= 3.23-1)
-Standards-Version: 3.1.1.0
+Standards-Version: 3.1.1.1
 
 Package: debhelper
 Architecture: all
index 73676d6a58d092f7feef812ed83a5481d2a0f76c..e3c6e0b2c5fcf247a9d8862a3a233d8aca102762 100755 (executable)
@@ -34,7 +34,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                # Note that all the excludes of odd things like _z are because
                # gzip refuses to compress such files, assumming they are zip files.
                # I looked at the gzip source to get the complete list of such
-               # extentions: ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z"
+               # extensions: ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z"
                
                push @files, split(/\n/,`
                        find usr/info usr/share/info usr/man usr/share/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true;
index 1d5b182296e31f1e954f0a9f9313f9fd03b5664e..849af0d18b003f3c25bbff4023eea64e2c3ef73a 100644 (file)
@@ -15,7 +15,7 @@ be compressed, namely all files in usr/share/info, usr/share/man,
 usr/X11R6/man, and all files in usr/share/doc that are larger than 4k in size,
 (except the copyright file, .html files and .gif files), and all changelog 
 files. It skips any files that appear to be already compressed (based on their
-extentions).
+extensions).
 .P
 If a debian/package.compress file exists (debian/compress may be used for the
 first binary package in debian/control), however, it will be ran as a shell
index ae2eec74b5e7c1a52b2f98f4735aa33a7e395dde..8009c4adba3c22ee9fa2f54544c61c8931940382 100644 (file)
@@ -18,7 +18,7 @@ debian/changelog.)
 If an upstream changelog file is specified as an option, and the package is
 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 extention), it will be
+changelog is a html file (determined by file extension), it will be
 installed as usr/share/doc/package/changelog.html instead (with a link to
 usr/share/doc/package/changelog).
 .SH OPTIONS
index 6a30f7220c8430384bddf864f3cf71c245086c47..b1b7b16c1709c2e22e8f10e710f8eeef70ee48e0 100755 (executable)
@@ -24,14 +24,14 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }       
 
        foreach $file (@undoc) {
-               $file=~s/.gz$//; # .gz extention is optional in input.
+               $file=~s/.gz$//; # .gz extension is optional in input.
 
                # Determine what directory the file belongs in,
                # /usr/share/man, or /usr/X11R6/man, and how the link to
                # the undocuemtned.7 man page will look.
                ($section)=$file=~m/^.*\.(\d)/;
                if (!$section) {
-                       error("\"$file\" does not have an extention.");
+                       error("\"$file\" does not have an extension.");
                }       
                if ($file=~/.*\.\dx/) {
                        $dir="usr/X11R6/man/man$section";
index 74df9810b8300e31c7ace2f217a283010cb8deac..5b6fab5ea968756717bef0ac4fb65f9de4c33543 100644 (file)
@@ -14,7 +14,7 @@ The program takes a list of man pages that should be symlinked to
 .BR undocumented (7)
 It determines what directory the man pages should be placed in by examining
 their extensions - pages ending in "x" go into /usr/X11R6/man/, while pages
-that end in anything else go in /usr/share/man/. It also examines the extention
+that end in anything else go in /usr/share/man/. It also examines the extension
 to see what section the man page belongs in. After figuring this out, it
 generates the necessary symlinks to
 .BR undocumented (7)
diff --git a/doc/v2 b/doc/v2
index 3a81a4adc5d310e6fc5ef09004d4f9e1b84742f4..fdfa548d9a523c0a82cfd85f4de3d8d273163688 100644 (file)
--- a/doc/v2
+++ b/doc/v2
@@ -35,7 +35,7 @@ them.
        dh_installmanpages --section=8 su.man
   Ok, there's a _little_ DWIM left in there, it'll be smart enough to munge
   the .man filenames properly. It'll probably just assume all man pages have
-  an  extention, and delete that extentation, and add the correct one.
+  an  extension, and delete that extentation, and add the correct one.
 
 * dh_movefiles will use a name other than debian/<package>.files for the
   list of what to move, because it can't use debian/files for the first