Your message dated Sat, 14 Oct 2017 07:34:00 +0000
with message-id <[email protected]>
and subject line Bug#878325: fixed in debhelper 10.9.2
has caused the Debian Bug report #878325,
regarding debhelper: Spelling fixes
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
878325: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878325
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
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
>From d1a8d92ef4603d687a3e40d428dd9a59e5a23315 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <[email protected]>
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 <[email protected]>
 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


--- End Message ---
--- Begin Message ---
Source: debhelper
Source-Version: 10.9.2

We believe that the bug you reported is fixed in the latest version of
debhelper, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niels Thykier <[email protected]> (supplier of updated debhelper package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sat, 14 Oct 2017 07:19:38 +0000
Source: debhelper
Binary: debhelper dh-systemd
Architecture: source
Version: 10.9.2
Distribution: unstable
Urgency: medium
Maintainer: Debhelper Maintainers <[email protected]>
Changed-By: Niels Thykier <[email protected]>
Description:
 debhelper  - helper programs for debian/rules
 dh-systemd - debhelper add-on to handle systemd unit files - transitional pack
Closes: 752521 857306 870768 876486 878325 878427 878460
Changes:
 debhelper (10.9.2) unstable; urgency=medium
 .
   [ Niels Thykier ]
   * dh_install: Defer the removal of --list-missing and
     --fail-missing until compat 12.
   * dh: Run the new dh_installsystemd helper by default in compat 11.
   * systemd.pm: Remove the sequence in compat 11.  It has been replaced
     by the new dh_installsystemd helper.
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * qmake.pm: Remove unnecessary "-nocache" parameter.
     (Closes: #878427, LP: #1206234)
 .
   [ Ville Skyttä ]
   * Fix a number of spelling mistakes.  (Closes: #878325)
 .
   [ Felipe Sateler ]
   * dh_installsystemd: New command (currently noop except when used in
     the experimental compat 11).  This new helper:
     - Generates postinst code for tmpfiles (now that dh_installinit
       does not).
     - Follows the naming convention for other built-in dh_* commands.
     - Replaces dh_systemd_enable and dh_systemd_start in compat 11
       and later.
     - Only acts on units with the name specified by "--name" when this
       option is given.
     (Closes: #752521, #857306, #870768, #876486)
   * dh_systemd_enable: Remove as obsolete in compat 11.
   * dh_systemd_start: Ditto.
 .
   [ Helmut Grohne ]
   * cmake.pm: Also supply PKGCONFIG_EXECUTABLE for obsolete
     UsePkgConfig.cmake.  (Closes: #878460)
Checksums-Sha1:
 96b3e21006aeafb9ac0081d00e3026b1e96faffd 1768 debhelper_10.9.2.dsc
 9c234dee929ee42b3e6813ba7e23fb2f2a38cfc5 424752 debhelper_10.9.2.tar.xz
 bc26abfcc0f4e39f85ab8169f6cb0b79a5b3d42f 4476 debhelper_10.9.2_source.buildinfo
Checksums-Sha256:
 e9b6618dfe1b5fd343aea73161b1cd1bb800187969b95baa0c23d7621cd2558c 1768 
debhelper_10.9.2.dsc
 510ba7c22d2fc3eace8f455e19ac2766fbbb90a0278e36a7c01f8dde3c1195ac 424752 
debhelper_10.9.2.tar.xz
 5f68ee78528e70c60e4d126f35808f9707958f4cc8f545c8f4a23c7051fab99b 4476 
debhelper_10.9.2_source.buildinfo
Files:
 6bdae4739e9f767f86e5452adf9cc45c 1768 devel optional debhelper_10.9.2.dsc
 4e1c45a0c416fd139f389b5cba9fdd3e 424752 devel optional debhelper_10.9.2.tar.xz
 c94eb1ebe6576c6c9b6ea4c0ca444e99 4476 devel optional 
debhelper_10.9.2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEsxMaRR2/33ygW0GXBUu7n32AZEIFAlnhu2MACgkQBUu7n32A
ZEIYwg//ZLBsCuNmKMGSr3VX9DMnEmAZMnBsKrIdPU8WWmGfi2kcwPjYrgEkhMug
FR51jiEou8ub+tyGyIQsnDQe8RFKVDu24bTkOeipkaeIGIjqmfICCZnukQAMAcG7
e0BnuFZqrOlWPIaC0KtEhQJQalILK2Bijdv/Cb+6JbBoUN2w+OPeU2ITQ/1bOLBd
MkvzCwbzrfeooJ8uHqQaV+MMQA5IaXPvHnLUPqajRxIYOZuuZyqeBpl3UntqVpty
yat4U0UuFT6VmCCnuur1095mQU9ezMlwxSKsBp+g4y3FNTw1UVhK4fsEKpEouplR
E2glexx1Gfljw9ZNnSL1YKLELqC5DSVA3gWpj29Nhj77MQbCP9FRIaTlw9iufjF7
UgjvPW3rijy9OQyEJJXL4+AnyvNbPrEUZqFwV/i39ccKyfsFV5Bv2SqwybUDTvrq
96Lx7gVLTYzd3JjGUcsJB2Q3XjK178hUuWR9QM+F6b0VjGyKoEu7+r9OGwjSWwi3
o/Ec2HSYb4NrnHhqr0RpiZ+2zxxzp9KREh7IUzZ0WY3ykJDjp4gmxLHQFuunAO5m
M/toxjRxvEnw3G8WjQwIO7Gr+aDJwTz28kDIm3NEBJFzj022T+wWtAIlhjRsfjWn
c/WXWTM5U52yfEo0RnLK/jULTkjzXvB/Makmf6kkw72r2BMd2bg=
=+eGz
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to