public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI/done: "Start of New Year Procedure"
@ 2016-01-01  5:38 Joel Brobecker
  2016-01-05 21:38 ` Doug Evans
  0 siblings, 1 reply; 2+ messages in thread
From: Joel Brobecker @ 2016-01-01  5:38 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 414 bytes --]

Hello everyone,

Just a quick message to let you know that I've take care of
updating the GDB sources following our "Start of New Year Procedure".
Most of the patches are trivial but generate very large diffs, so
I will only include the patch which changes the output of GDB,
GDBserver and gdbreplay to print 2016 as the copyright year in
the version info.

This patch series was tested on x86_64-linux.

-- 
Joel

[-- Attachment #2: 0001-update-copyright-year-printed-by-GDB-GDBserver-and-g.patch --]
[-- Type: text/x-diff, Size: 3122 bytes --]

From edd88788349db3bd2af5fc9a38e2ea9cc220757f Mon Sep 17 00:00:00 2001
From: Joel Brobecker <brobecker@adacore.com>
Date: Fri, 1 Jan 2016 08:22:36 +0400
Subject: [PATCH] update copyright year printed by GDB, GDBserver and
 gdbreplay.

gdb/ChangeLog:

        * top.c (print_gdb_version): Change copyright year in version
        message.

gdb/gdbserver/ChangeLog:

        * gdbreplay.c (gdbreplay_version): Change copyright year in
        version message.
        * server.c (gdbserver_version): Likewise.
---
 gdb/ChangeLog             | 5 +++++
 gdb/gdbserver/ChangeLog   | 6 ++++++
 gdb/gdbserver/gdbreplay.c | 2 +-
 gdb/gdbserver/server.c    | 2 +-
 gdb/top.c                 | 2 +-
 5 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 5ca8201..25e6ad9 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
 
+	* top.c (print_gdb_version): Change copyright year in version
+	message.
+
+2016-01-01  Joel Brobecker  <brobecker@adacore.com>
+
 	* config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
 
 For older changes see ChangeLog-2015.
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index cbc7763..6f6eb1d 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+	* gdbreplay.c (gdbreplay_version): Change copyright year in
+	version message.
+	* server.c (gdbserver_version): Likewise.
+
 2015-12-28  Patrick Palka  <patrick@parcs.ath.cx>
 
 	* server.c (crc32_table): Delete.
diff --git a/gdb/gdbserver/gdbreplay.c b/gdb/gdbserver/gdbreplay.c
index 79aa8aa..b58b58b 100644
--- a/gdb/gdbserver/gdbreplay.c
+++ b/gdb/gdbserver/gdbreplay.c
@@ -407,7 +407,7 @@ static void
 gdbreplay_version (void)
 {
   printf ("GNU gdbreplay %s%s\n"
-	  "Copyright (C) 2015 Free Software Foundation, Inc.\n"
+	  "Copyright (C) 2016 Free Software Foundation, Inc.\n"
 	  "gdbreplay is free software, covered by "
 	  "the GNU General Public License.\n"
 	  "This gdbreplay was configured as \"%s\"\n",
diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c
index 0e3ac4e..6742be5 100644
--- a/gdb/gdbserver/server.c
+++ b/gdb/gdbserver/server.c
@@ -3218,7 +3218,7 @@ static void
 gdbserver_version (void)
 {
   printf ("GNU gdbserver %s%s\n"
-	  "Copyright (C) 2015 Free Software Foundation, Inc.\n"
+	  "Copyright (C) 2016 Free Software Foundation, Inc.\n"
 	  "gdbserver is free software, covered by the "
 	  "GNU General Public License.\n"
 	  "This gdbserver was configured as \"%s\"\n",
diff --git a/gdb/top.c b/gdb/top.c
index a45f3cc..fd0ec8d 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1260,7 +1260,7 @@ print_gdb_version (struct ui_file *stream)
   /* Second line is a copyright notice.  */
 
   fprintf_filtered (stream,
-		    "Copyright (C) 2015 Free Software Foundation, Inc.\n");
+		    "Copyright (C) 2016 Free Software Foundation, Inc.\n");
 
   /* Following the copyright is a brief statement that the program is
      free software, that users are free to copy and change it on
-- 
2.5.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: FYI/done: "Start of New Year Procedure"
  2016-01-01  5:38 FYI/done: "Start of New Year Procedure" Joel Brobecker
@ 2016-01-05 21:38 ` Doug Evans
  0 siblings, 0 replies; 2+ messages in thread
From: Doug Evans @ 2016-01-05 21:38 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

On Thu, Dec 31, 2015 at 9:38 PM, Joel Brobecker <brobecker@adacore.com> wrote:
> Hello everyone,
>
> Just a quick message to let you know that I've take care of
> updating the GDB sources following our "Start of New Year Procedure".
> Most of the patches are trivial but generate very large diffs, so
> I will only include the patch which changes the output of GDB,
> GDBserver and gdbreplay to print 2016 as the copyright year in
> the version info.
>
> This patch series was tested on x86_64-linux.

Thanks for doing this.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-05 21:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-01  5:38 FYI/done: "Start of New Year Procedure" Joel Brobecker
2016-01-05 21:38 ` Doug Evans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).