From 428e8957efc79f4db8dd62b131242dde89d5a72a Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 22 Jan 2015 14:21:33 +0100 Subject: Make Debian and Git spelling consistent --- gbp/deb/source.py | 2 +- gbp/scripts/buildpackage.py | 4 ++-- gbp/scripts/clone.py | 4 ++-- gbp/scripts/create_remote_repo.py | 4 ++-- gbp/scripts/dch.py | 4 ++-- gbp/scripts/import_dsc.py | 4 ++-- gbp/scripts/import_dscs.py | 2 +- gbp/scripts/import_orig.py | 4 ++-- gbp/scripts/import_srpm.py | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) (limited to 'gbp') diff --git a/gbp/deb/source.py b/gbp/deb/source.py index c740361..847df55 100644 --- a/gbp/deb/source.py +++ b/gbp/deb/source.py @@ -58,7 +58,7 @@ class DebianSource(object): def is_native(self): """ - Whether this is a native debian package + Whether this is a native Debian package """ try: ff = self._vfs.open('debian/source/format') diff --git a/gbp/scripts/buildpackage.py b/gbp/scripts/buildpackage.py index e96e8e7..e4ec26a 100755 --- a/gbp/scripts/buildpackage.py +++ b/gbp/scripts/buildpackage.py @@ -1,6 +1,6 @@ # vim: set fileencoding=utf-8 : # -# (C) 2006-2014 Guido Günther +# (C) 2006-2015 Guido Günther # 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 @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -"""Build a debian package out of a GIT repository""" +"""Build a Debian package out of a Git repository""" import ConfigParser import errno diff --git a/gbp/scripts/clone.py b/gbp/scripts/clone.py index 8078854..4593bc6 100755 --- a/gbp/scripts/clone.py +++ b/gbp/scripts/clone.py @@ -1,6 +1,6 @@ # vim: set fileencoding=utf-8 : # -# (C) 2009,2010 Guido Guenther +# (C) 2009, 2010, 2015 Guido Guenther # 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 @@ -17,7 +17,7 @@ # # inspired by dom-git-checkout # -"""Clone a GIT repository and set it up for gbp""" +"""Clone a Git repository and set it up for gbp""" import ConfigParser import sys diff --git a/gbp/scripts/create_remote_repo.py b/gbp/scripts/create_remote_repo.py index b8923cd..b4d43c9 100644 --- a/gbp/scripts/create_remote_repo.py +++ b/gbp/scripts/create_remote_repo.py @@ -1,6 +1,6 @@ # vim: set fileencoding=utf-8 : # -# (C) 2010,2012 Guido Günther +# (C) 2010, 2012, 2015 Guido Günther # 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 @@ -16,7 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Based on the aa-create-git-repo and dom-new-git-repo shell scripts -"""Create a remote GIT repository based on the current one""" +"""Create a remote Git repository based on the current one""" import ConfigParser import sys diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py index ce19c9a..e725bb1 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 Guido Guenther +# (C) 2007, 2008, 2009, 2010, 2013, 2015 Guido Guenther # 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 @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -"""Generate Debian changelog entries from GIT commit messages""" +"""Generate Debian changelog entries from Git commit messages""" import ConfigParser import os.path diff --git a/gbp/scripts/import_dsc.py b/gbp/scripts/import_dsc.py index c0bf650..f4dac9c 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 Guido Guenther +# (C) 2006, 2007, 2011, 2012, 2015 Guido Guenther # 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 @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -"""Import a Debian source package into a GIT repository""" +"""Import a Debian source package into a Git repository""" import ConfigParser import sys diff --git a/gbp/scripts/import_dscs.py b/gbp/scripts/import_dscs.py index 5409ca1..9219ba0 100644 --- a/gbp/scripts/import_dscs.py +++ b/gbp/scripts/import_dscs.py @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -"""Import multiple dsc files into GIT in one go""" +"""Import multiple dsc files into Git in one go""" import glob import os diff --git a/gbp/scripts/import_orig.py b/gbp/scripts/import_orig.py index 7184116..f73dea1 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 Guido Guenther +# (C) 2006, 2007, 2009, 2011, 2015 Guido Guenther # 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 @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -"""Import a new upstream version into a GIT repository""" +"""Import a new upstream version into a Git repository""" import ConfigParser import os diff --git a/gbp/scripts/import_srpm.py b/gbp/scripts/import_srpm.py index 958f5ff..d2392c0 100755 --- a/gbp/scripts/import_srpm.py +++ b/gbp/scripts/import_srpm.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -"""Import an RPM source package into a GIT repository""" +"""Import an RPM source package into a Git repository""" import ConfigParser import sys -- cgit v1.2.3