[debhelper-devel] Bug#878325: debhelper: Spelling fixes
Ville Skyttä
ville.skytta at iki.fi
Thu Oct 12 20:46:19 UTC 2017
Package: debhelper
Version: 10.7.2ubuntu2
Severity: minor
Dear Maintainer,
'git am'able fix containing spelling fixes is attached. Hopefully I
got the correct attachment this time :)
Ville
-- System Information:
Debian Release: stretch/sid
APT prefers artful
APT policy: (500, 'artful')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 4.13.0-15-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
Versions of packages debhelper depends on:
ii autotools-dev 20161112.1
ii binutils 2.29.1-4ubuntu1
ii dh-autoreconf 14
ii dh-strip-nondeterminism 0.038-1
ii dpkg 1.18.24ubuntu1
ii dpkg-dev 1.18.24ubuntu1
ii file 1:5.32-1
ii libdpkg-perl 1.18.24ubuntu1
ii man-db 2.7.6.1-2
ii perl 5.26.0-8ubuntu1
ii po-debconf 1.0.20
debhelper recommends no packages.
Versions of packages debhelper suggests:
ii dh-make 2.201608
-- no debconf information
-------------- next part --------------
>From d1a8d92ef4603d687a3e40d428dd9a59e5a23315 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta at iki.fi>
Date: Thu, 12 Oct 2017 23:43:11 +0300
Subject: [PATCH] Spelling fixes
---
debian/copyright | 2 +-
dh_gencontrol | 2 +-
doc/PROGRAMMING | 4 ++--
lib/Debian/Debhelper/Buildsystem.pm | 6 +++---
lib/Debian/Debhelper/Dh_Lib.pm | 4 ++--
t/buildsystems/buildsystem_tests.t | 2 +-
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/debian/copyright b/debian/copyright
index 337c3e05..8385ffbf 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,7 +10,7 @@ Copyright: 1997-2011 Joey Hess <joeyh at debian.org>
License: public-domain
These files are in the public domain.
.
- Pedants who belive I cannot legally say that code I have written is in
+ Pedants who believe I cannot legally say that code I have written is in
the public domain may consider them instead to be licensed as follows:
.
Redistribution and use in source and binary forms, with or without
diff --git a/dh_gencontrol b/dh_gencontrol
index ef388cfd..bdbf178c 100755
--- a/dh_gencontrol
+++ b/dh_gencontrol
@@ -114,7 +114,7 @@ on_pkgs_in_parallel {
my $component = '';
if ($section =~ m{^(.*)/[^/]+$}) {
$component = "${1}/";
- # This should not happen, but lets not propogate the error
+ # This should not happen, but lets not propagate the error
# if does.
$component = '' if $component eq 'main/';
}
diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING
index 42ad1ab3..b76bc9ec 100644
--- a/doc/PROGRAMMING
+++ b/doc/PROGRAMMING
@@ -20,7 +20,7 @@ are run, so the important stuff is clearly visible.
An exception to above rule are dh_auto_* commands and dh itself. They will
also print the commands interacting with the upstream build system and which
-of the simple debhelper programms are called. (i.e. print what a traditional
+of the simple debhelper programs are called. (i.e. print what a traditional
non-dh(1) using debian/rules would print but nothing else).
Debhelper programs should accept all options listed in the "SHARED
@@ -324,7 +324,7 @@ restore_file_on_clean($file)
CAVEAT: This *cannot* undo arbitrary "rm -fr"'ing. The dir,
which is/was in $file, must be present when dh_clean is called.
make_symlink($src, $dest, $tmp)
- Creates a Policy compliant sytem link called $dest pointing to
+ Creates a Policy compliant system link called $dest pointing to
$src. If $tmp is given, then $tmp will be prefixed to $dest when
creating the actual symlink.
install_dh_config_file($src, $dest[, $mode])
diff --git a/lib/Debian/Debhelper/Buildsystem.pm b/lib/Debian/Debhelper/Buildsystem.pm
index 8f7939d1..4d2ee728 100644
--- a/lib/Debian/Debhelper/Buildsystem.pm
+++ b/lib/Debian/Debhelper/Buildsystem.pm
@@ -31,7 +31,7 @@ sub DESCRIPTION {
error("class lacking a DESCRIPTION");
}
-# Default build directory. Can be overriden in the derived
+# Default build directory. Can be overridden in the derived
# class if really needed.
sub DEFAULT_BUILD_DIRECTORY {
"obj-" . dpkg_architecture_value("DEB_HOST_GNU_TYPE");
@@ -416,9 +416,9 @@ sub post_building_step {
# building, testing, install and cleaning source packages.
# In case of failure, the method may just error() out.
#
-# These methods should be overriden by derived classes to
+# These methods should be overridden by derived classes to
# implement build system specific steps needed to build the
-# source. Arbitary number of custom step arguments might be
+# source. Arbitrary number of custom step arguments might be
# passed. Default implementations do nothing.
sub configure {
my $this=shift;
diff --git a/lib/Debian/Debhelper/Dh_Lib.pm b/lib/Debian/Debhelper/Dh_Lib.pm
index e71d8e12..167d5d28 100644
--- a/lib/Debian/Debhelper/Dh_Lib.pm
+++ b/lib/Debian/Debhelper/Dh_Lib.pm
@@ -1303,8 +1303,8 @@ sub sourcepackage {
}
# Returns a list of packages in the control file.
-# Pass "arch" or "indep" to specify arch-dependant (that will be built
-# for the system's arch) or independant. If nothing is specified,
+# Pass "arch" or "indep" to specify arch-dependent (that will be built
+# for the system's arch) or independent. If nothing is specified,
# returns all packages. Also, "both" returns the union of "arch" and "indep"
# packages.
#
diff --git a/t/buildsystems/buildsystem_tests.t b/t/buildsystems/buildsystem_tests.t
index ac39b6d9..4f1cc53d 100755
--- a/t/buildsystems/buildsystem_tests.t
+++ b/t/buildsystems/buildsystem_tests.t
@@ -148,7 +148,7 @@ test_buildsystem_paths_api($bs, "no builddir, sourcedir=autoconf", \%tmp);
# Prefer out of source tree building when
# sourcedir=builddir=autoconf hence builddir should be dropped.
$bs->prefer_out_of_source_building(builddir => "autoconf");
-test_buildsystem_paths_api($bs, "out of source prefered, sourcedir=builddir", \%tmp);
+test_buildsystem_paths_api($bs, "out of source preferred, sourcedir=builddir", \%tmp);
# builddir=bld/dir, sourcedir=autoconf. Should be the same as sourcedir=autoconf.
$bs = $BS_CLASS->new(builddir => "bld/dir", sourcedir => "autoconf");
--
2.14.1
More information about the debhelper-devel
mailing list