[yquake2] 03/04: Fix some Lintian-detected spelling mistakes

Simon McVittie smcv at debian.org
Tue Sep 19 08:43:05 UTC 2017


This is an automated email from the git hooks/post-receive script.

smcv pushed a commit to branch debian/master
in repository yquake2.

commit 21e98de68a445de73ace12be37dd55356ec09765
Author: Simon McVittie <smcv at debian.org>
Date:   Thu Sep 14 20:27:05 2017 +0100

    Fix some Lintian-detected spelling mistakes
---
 debian/changelog                                   |  1 +
 ...g-mistakes-detected-by-Debian-s-Lintian-t.patch | 78 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 3 files changed, 80 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 259374a..a0a4b9a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ yquake2 (7.01+ctf1.05~dfsg-2) UNRELEASED; urgency=medium
 
   * Add patch to link CTF with -lm explicitly, fixing FTBFS
   * Add CPPFLAGS to CTF CFLAGS
+  * Fix some Lintian-detected spelling mistakes
 
  -- Simon McVittie <smcv at debian.org>  Thu, 14 Sep 2017 20:06:12 +0100
 
diff --git a/debian/patches/Fix-some-spelling-mistakes-detected-by-Debian-s-Lintian-t.patch b/debian/patches/Fix-some-spelling-mistakes-detected-by-Debian-s-Lintian-t.patch
new file mode 100644
index 0000000..8253bc2
--- /dev/null
+++ b/debian/patches/Fix-some-spelling-mistakes-detected-by-Debian-s-Lintian-t.patch
@@ -0,0 +1,78 @@
+From: Simon McVittie <smcv at debian.org>
+Date: Thu, 14 Sep 2017 20:26:44 +0100
+Subject: Fix some spelling mistakes detected by Debian's Lintian tool
+
+Signed-off-by: Simon McVittie <smcv at debian.org>
+---
+ ctf/src/g_ctf.c | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/ctf/src/g_ctf.c b/ctf/src/g_ctf.c
+index ab155a1..d4030c7 100644
+--- a/ctf/src/g_ctf.c
++++ b/ctf/src/g_ctf.c
+@@ -731,7 +731,7 @@ CTFFragBonuses(edict_t *targ, edict_t *inflictor, edict_t *attacker)
+ 		   flag carrier */
+ 		attacker->client->resp.score += CTF_CARRIER_DANGER_PROTECT_BONUS;
+ 		gi.bprintf(PRINT_MEDIUM,
+-				"%s defends %s's flag carrier against an agressive enemy\n",
++				"%s defends %s's flag carrier against an aggressive enemy\n",
+ 				attacker->client->pers.netname,
+ 				CTFTeamName(attacker->client->resp.ctf_team));
+ 
+@@ -3621,7 +3621,7 @@ CTFWinElection(void)
+ 			gi.bprintf(PRINT_HIGH, "%s has become an admin.\n",
+ 				ctfgame.etarget->client->pers.netname);
+ 			gi.cprintf(ctfgame.etarget, PRINT_HIGH,
+-				"Type 'admin' to access the adminstration menu.\n");
++				"Type 'admin' to access the administration menu.\n");
+ 			break;
+ 
+ 		case ELECT_MAP:
+@@ -3723,7 +3723,7 @@ CTFReady(edict_t *ent)
+ 
+ 	if (ent->client->resp.ready)
+ 	{
+-		gi.cprintf(ent, PRINT_HIGH, "You have already commited.\n");
++		gi.cprintf(ent, PRINT_HIGH, "You have already committed.\n");
+ 		return;
+ 	}
+ 
+@@ -3758,8 +3758,8 @@ CTFReady(edict_t *ent)
+ 
+ 	if (!j && t1 && t2)
+ 	{
+-		/* everyone has commited */
+-		gi.bprintf(PRINT_CHAT, "All players have commited.  Match starting\n");
++		/* everyone has committed */
++		gi.bprintf(PRINT_CHAT, "All players have committed.  Match starting\n");
+ 		ctfgame.match = MATCH_PREGAME;
+ 		ctfgame.matchtime = level.time + matchstarttime->value;
+ 		ctfgame.countdown = false;
+@@ -3785,7 +3785,7 @@ CTFNotReady(edict_t *ent)
+ 
+ 	if (!ent->client->resp.ready)
+ 	{
+-		gi.cprintf(ent, PRINT_HIGH, "You haven't commited.\n");
++		gi.cprintf(ent, PRINT_HIGH, "You haven't committed.\n");
+ 		return;
+ 	}
+ 
+@@ -5013,7 +5013,7 @@ CTFAdmin_Reset(edict_t *ent, pmenuhnd_t *p)
+ 	PMenu_Close(ent);
+ 
+ 	/* go back to normal mode */
+-	gi.bprintf(PRINT_CHAT, "Match mode has been terminated, reseting to normal game.\n");
++	gi.bprintf(PRINT_CHAT, "Match mode has been terminated, resetting to normal game.\n");
+ 	ctfgame.match = MATCH_NONE;
+ 	gi.cvar_set("competition", "1");
+ 	CTFResetAllPlayers();
+@@ -5082,7 +5082,7 @@ CTFAdmin(edict_t *ent)
+ 		ent->client->resp.admin = true;
+ 		gi.bprintf(PRINT_HIGH, "%s has become an admin.\n",
+ 				ent->client->pers.netname);
+-		gi.cprintf(ent, PRINT_HIGH, "Type 'admin' to access the adminstration menu.\n");
++		gi.cprintf(ent, PRINT_HIGH, "Type 'admin' to access the administration menu.\n");
+ 	}
+ 
+ 	if (!ent->client->resp.admin)
diff --git a/debian/patches/series b/debian/patches/series
index 2c67b1e..b0d48ab 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@ Remove-unwanted-rpaths-from-LDFLAGS.patch
 ctf-Use-SOURCE_DATE_EPOCH-for-reproducible-build.patch
 ctf-Append-to-CFLAGS-LDFLAGS-instead-of-overriding.patch
 Link-ctf-game.so-to-math-library.patch
+Fix-some-spelling-mistakes-detected-by-Debian-s-Lintian-t.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/yquake2.git



More information about the Pkg-games-commits mailing list