aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-02-26 15:08:05 +0100
committerGuido Günther <agx@sigxcpu.org>2018-02-26 15:08:05 +0100
commit23874c2c50ebd57426797d38f4f9c6c40dc336ec (patch)
tree20e792a7cb4d2e8c1f9d8abf12b4f90b0f9a6a14
parente9942bdc9792e65a7796ed644e85a6e8cef11326 (diff)
8bit Guido
-rwxr-xr-xbin/gbp-builder-mock2
-rw-r--r--debian/doc-base2
-rw-r--r--debian/gbp.completion2
-rwxr-xr-xexamples/gbp-add-patch2
-rwxr-xr-xexamples/zeitgeist-git.py2
-rw-r--r--gbp/command_wrappers.py2
-rw-r--r--gbp/config.py2
-rw-r--r--gbp/deb/upstreamsource.py2
-rw-r--r--gbp/format.py2
-rw-r--r--gbp/git/__init__.py2
-rw-r--r--gbp/git/args.py2
-rw-r--r--gbp/git/commit.py2
-rw-r--r--gbp/git/errors.py2
-rw-r--r--gbp/git/fastimport.py2
-rw-r--r--gbp/git/modifier.py2
-rw-r--r--gbp/git/repository.py2
-rw-r--r--gbp/log.py2
-rw-r--r--gbp/notifications.py2
-rw-r--r--gbp/patch_series.py2
-rw-r--r--gbp/paths.py2
-rw-r--r--gbp/pkg/__init__.py2
-rw-r--r--gbp/pkg/archive.py2
-rw-r--r--gbp/pkg/compressor.py2
-rw-r--r--gbp/pkg/pkgpolicy.py2
-rw-r--r--gbp/pkg/upstreamsource.py2
-rw-r--r--gbp/rpm/__init__.py2
-rwxr-xr-xgbp/scripts/clone.py2
-rw-r--r--gbp/scripts/common/buildpackage.py2
-rw-r--r--gbp/scripts/common/import_orig.py2
-rw-r--r--gbp/scripts/common/repo_setup.py2
-rwxr-xr-xgbp/scripts/config.py2
-rw-r--r--gbp/scripts/dch.py2
-rw-r--r--gbp/scripts/import_dsc.py2
-rw-r--r--gbp/scripts/import_dscs.py2
-rw-r--r--gbp/scripts/import_orig.py2
-rwxr-xr-xgbp/scripts/import_srpm.py2
-rwxr-xr-xgbp/scripts/pull.py2
-rw-r--r--gbp/scripts/rpm_ch.py2
-rw-r--r--gbp/tristate.py2
-rw-r--r--tests/__init__.py2
-rw-r--r--tests/component/deb/fixtures.py2
-rw-r--r--tests/testutils/data.py2
42 files changed, 42 insertions, 42 deletions
diff --git a/bin/gbp-builder-mock b/bin/gbp-builder-mock
index e9d74383..3a251a6f 100755
--- a/bin/gbp-builder-mock
+++ b/bin/gbp-builder-mock
@@ -17,7 +17,7 @@
# <http://www.gnu.org/licenses/>
#
# Copyright (C) 2015 Tzafrir Cohen
-# (C) 2015 Guido Guenther
+# (C) 2015 Guido Günther
set -e
diff --git a/debian/doc-base b/debian/doc-base
index a7d60d01..e24e8214 100644
--- a/debian/doc-base
+++ b/debian/doc-base
@@ -1,6 +1,6 @@
Document: git-buildpackage
Title: Git-Buildpackage Manual
-Author: Guido Guenther
+Author: Guido Günther
Abstract: git-buildpackage is a suite to help with Debian packages in Git
repositories. This manual describes the utilities in this package, their
configuration and possible workflows.
diff --git a/debian/gbp.completion b/debian/gbp.completion
index fbbbf78b..706cfdf7 100644
--- a/debian/gbp.completion
+++ b/debian/gbp.completion
@@ -3,7 +3,7 @@
# Bash tab auto-completion rules for git-buildpackage.
#
# Copyright (C) 2010 Siegfried-Angel Gevatter Pujals <siegfried@gevatter.com>
-# Copyright (C) 2010,2013,2015 Guido Guenther <agx@sigxcpu.org>
+# Copyright (C) 2010,2013,2015 Guido Günther <agx@sigxcpu.org>
#
# Distributed under the GNU General Public License, version 2.0.
diff --git a/examples/gbp-add-patch b/examples/gbp-add-patch
index 43c455ad..806ed94b 100755
--- a/examples/gbp-add-patch
+++ b/examples/gbp-add-patch
@@ -1,7 +1,7 @@
#!/usr/bin/python3 -u
# vim: set fileencoding=utf-8 :
#
-# (C) 2010,2015 Guido Guenther <agx@sigxcpu.org>
+# (C) 2010,2015 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/examples/zeitgeist-git.py b/examples/zeitgeist-git.py
index 9aa36be5..b62e7bd3 100755
--- a/examples/zeitgeist-git.py
+++ b/examples/zeitgeist-git.py
@@ -1,7 +1,7 @@
#! /usr/bin/python3
# vim: set fileencoding=utf-8 :
#
-# (C) 2010 Guido Guenther <agx@sigxcpu.org>
+# (C) 2010 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index d2f28c7e..609f3b44 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2007,2009,2015,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2007,2009,2015,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/config.py b/gbp/config.py
index dceb011e..09765d8c 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8:
#
-# (C) 2006,2007,2010-2012,2015,2016,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007,2010-2012,2015,2016,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/deb/upstreamsource.py b/gbp/deb/upstreamsource.py
index 48956277..04c37747 100644
--- a/gbp/deb/upstreamsource.py
+++ b/gbp/deb/upstreamsource.py
@@ -1,7 +1,7 @@
# vim: set fileencoding=utf-8 :
#
# (C) 2013 Intel Corporation <markus.lehtonen@linux.intel.com>
-# (C) 2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2016 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/format.py b/gbp/format.py
index 541ab7b0..ce29a669 100644
--- a/gbp/format.py
+++ b/gbp/format.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2014 Guido Guenther <agx@sigxcpu.org>
+# (C) 2014 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/__init__.py b/gbp/git/__init__.py
index 5b8f6120..b3bc5997 100644
--- a/gbp/git/__init__.py
+++ b/gbp/git/__init__.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006,2007,2008,2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007,2008,2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/args.py b/gbp/git/args.py
index b2342ab6..88ad40b8 100644
--- a/gbp/git/args.py
+++ b/gbp/git/args.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/commit.py b/gbp/git/commit.py
index 1a9912f8..9437a5a6 100644
--- a/gbp/git/commit.py
+++ b/gbp/git/commit.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/errors.py b/gbp/git/errors.py
index 377e468a..3a948655 100644
--- a/gbp/git/errors.py
+++ b/gbp/git/errors.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/fastimport.py b/gbp/git/fastimport.py
index a9941036..3c113c1d 100644
--- a/gbp/git/fastimport.py
+++ b/gbp/git/fastimport.py
@@ -1,7 +1,7 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/modifier.py b/gbp/git/modifier.py
index 28d8bde2..d93086d8 100644
--- a/gbp/git/modifier.py
+++ b/gbp/git/modifier.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 397ee9c9..6b29f5c4 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006,2007,2008,2011,2013,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007,2008,2011,2013,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/log.py b/gbp/log.py
index f71ba125..ce02e480 100644
--- a/gbp/log.py
+++ b/gbp/log.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2010 Guido Guenther <agx@sigxcpu.org>
+# (C) 2010 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/notifications.py b/gbp/notifications.py
index d71f8164..ae0d5de2 100644
--- a/gbp/notifications.py
+++ b/gbp/notifications.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/patch_series.py b/gbp/patch_series.py
index 1f10ad2c..47f51357 100644
--- a/gbp/patch_series.py
+++ b/gbp/patch_series.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011,2015,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011,2015,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/paths.py b/gbp/paths.py
index 71a2300e..1cb7bcca 100644
--- a/gbp/paths.py
+++ b/gbp/paths.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/pkg/__init__.py b/gbp/pkg/__init__.py
index e6204e79..fb38e527 100644
--- a/gbp/pkg/__init__.py
+++ b/gbp/pkg/__init__.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006,2007 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/pkg/archive.py b/gbp/pkg/archive.py
index 69f0202a..cfb96b86 100644
--- a/gbp/pkg/archive.py
+++ b/gbp/pkg/archive.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/pkg/compressor.py b/gbp/pkg/compressor.py
index 285f6a29..6b0ea4ca 100644
--- a/gbp/pkg/compressor.py
+++ b/gbp/pkg/compressor.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/pkg/pkgpolicy.py b/gbp/pkg/pkgpolicy.py
index eb2d72ea..e6b3683b 100644
--- a/gbp/pkg/pkgpolicy.py
+++ b/gbp/pkg/pkgpolicy.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/pkg/upstreamsource.py b/gbp/pkg/upstreamsource.py
index 9716ed2a..ab9e61de 100644
--- a/gbp/pkg/upstreamsource.py
+++ b/gbp/pkg/upstreamsource.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/rpm/__init__.py b/gbp/rpm/__init__.py
index 515645f8..b37dfdab 100644
--- a/gbp/rpm/__init__.py
+++ b/gbp/rpm/__init__.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006,2007 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/scripts/clone.py b/gbp/scripts/clone.py
index 74cb6add..edc991ed 100755
--- a/gbp/scripts/clone.py
+++ b/gbp/scripts/clone.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2009, 2010, 2015, 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2009, 2010, 2015, 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/common/buildpackage.py b/gbp/scripts/common/buildpackage.py
index e3248c7d..7071cdc1 100644
--- a/gbp/scripts/common/buildpackage.py
+++ b/gbp/scripts/common/buildpackage.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006-2011, 2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006-2011, 2016 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/scripts/common/import_orig.py b/gbp/scripts/common/import_orig.py
index 7c9e43f0..d43a1432 100644
--- a/gbp/scripts/common/import_orig.py
+++ b/gbp/scripts/common/import_orig.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006, 2007, 2009, 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006, 2007, 2009, 2011 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/scripts/common/repo_setup.py b/gbp/scripts/common/repo_setup.py
index 4e52c45c..d76b585c 100644
--- a/gbp/scripts/common/repo_setup.py
+++ b/gbp/scripts/common/repo_setup.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006-2011, 2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006-2011, 2016 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/config.py b/gbp/scripts/config.py
index 3dbf7e69..a0d66ca6 100755
--- a/gbp/scripts/config.py
+++ b/gbp/scripts/config.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2014 Guido Guenther <agx@sigxcpu.org>
+# (C) 2014 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py
index 0087166a..6297d2d7 100644
--- a/gbp/scripts/dch.py
+++ b/gbp/scripts/dch.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2007,2008,2009,2010,2013,2015,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2007,2008,2009,2010,2013,2015,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/import_dsc.py b/gbp/scripts/import_dsc.py
index e212a530..01278b4a 100644
--- a/gbp/scripts/import_dsc.py
+++ b/gbp/scripts/import_dsc.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006, 2007, 2011, 2012, 2015-2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006, 2007, 2011, 2012, 2015-2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/import_dscs.py b/gbp/scripts/import_dscs.py
index 312b03c5..997e3ccc 100644
--- a/gbp/scripts/import_dscs.py
+++ b/gbp/scripts/import_dscs.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2008, 2009, 2010, 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2008, 2009, 2010, 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/import_orig.py b/gbp/scripts/import_orig.py
index 97b6d54b..72d353f4 100644
--- a/gbp/scripts/import_orig.py
+++ b/gbp/scripts/import_orig.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006, 2007, 2009, 2011, 2015, 2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006, 2007, 2009, 2011, 2015, 2016 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/import_srpm.py b/gbp/scripts/import_srpm.py
index eb78d074..4abfd9c2 100755
--- a/gbp/scripts/import_srpm.py
+++ b/gbp/scripts/import_srpm.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2006,2007,2011,2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006,2007,2011,2016 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/scripts/pull.py b/gbp/scripts/pull.py
index a4851157..968f6093 100755
--- a/gbp/scripts/pull.py
+++ b/gbp/scripts/pull.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2009,2013,2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2009,2013,2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/gbp/scripts/rpm_ch.py b/gbp/scripts/rpm_ch.py
index 199ada29..9212f717 100644
--- a/gbp/scripts/rpm_ch.py
+++ b/gbp/scripts/rpm_ch.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2007, 2008, 2009, 2010, 2013 Guido Guenther <agx@sigxcpu.org>
+# (C) 2007, 2008, 2009, 2010, 2013 Guido Günther <agx@sigxcpu.org>
# (C) 2014-2015 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/gbp/tristate.py b/gbp/tristate.py
index 2e88b3ec..41f0dea4 100644
--- a/gbp/tristate.py
+++ b/gbp/tristate.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2011 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/tests/__init__.py b/tests/__init__.py
index a9309b58..73497197 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2009, 2010,2011, 2012 Guido Guenther <agx@sigxcpu.org>
+# (C) 2009, 2010,2011, 2012 Guido Günther <agx@sigxcpu.org>
# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/tests/component/deb/fixtures.py b/tests/component/deb/fixtures.py
index 1b82557a..78ba1e96 100644
--- a/tests/component/deb/fixtures.py
+++ b/tests/component/deb/fixtures.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2017 Guido Guenther <agx@sigxcpu.org>
+# (C) 2017 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
diff --git a/tests/testutils/data.py b/tests/testutils/data.py
index c9e233d7..da2b28d5 100644
--- a/tests/testutils/data.py
+++ b/tests/testutils/data.py
@@ -1,6 +1,6 @@
# vim: set fileencoding=utf-8 :
#
-# (C) 2016 Guido Guenther <agx@sigxcpu.org>
+# (C) 2016 Guido Günther <agx@sigxcpu.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or