Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Need to update copyright year in sources & docs
@ 2008-01-01  4:34 Joel Brobecker
  2008-01-01 22:48 ` Daniel Jacobowitz
  0 siblings, 1 reply; 5+ messages in thread
From: Joel Brobecker @ 2008-01-01  4:34 UTC (permalink / raw)
  To: gdb-patches

Hi Daniel,

I think last year you took care of updating the copyright year
for all the GDB files. Would you mind doing it again for us this year?

Also, the documentation (18. Start of New Year Procedure) is missing
this step. I can send a patch to complete the procedure, if you'd like.

Thanks!
-- 
Joel


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

* Re: Need to update copyright year in sources & docs
  2008-01-01  4:34 Need to update copyright year in sources & docs Joel Brobecker
@ 2008-01-01 22:48 ` Daniel Jacobowitz
  2008-01-02  8:46   ` [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs") Joel Brobecker
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Jacobowitz @ 2008-01-01 22:48 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

On Mon, Dec 31, 2007 at 08:34:17PM -0800, Joel Brobecker wrote:
> Hi Daniel,
> 
> I think last year you took care of updating the copyright year
> for all the GDB files. Would you mind doing it again for us this year?
> 
> Also, the documentation (18. Start of New Year Procedure) is missing
> this step. I can send a patch to complete the procedure, if you'd like.

Done.  It's just a matter of running gdb/copyright.sh, examining the
changes, and occasionally handholding emacs if it prompts.  I examined
them somewhat cursorily, since the diff was 991K.

-- 
Daniel Jacobowitz
CodeSourcery


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

* [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs")
  2008-01-01 22:48 ` Daniel Jacobowitz
@ 2008-01-02  8:46   ` Joel Brobecker
  2008-01-05 11:07     ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Joel Brobecker @ 2008-01-02  8:46 UTC (permalink / raw)
  To: gdb-patches

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

> Done.  It's just a matter of running gdb/copyright.sh, examining the
> changes, and occasionally handholding emacs if it prompts.  I examined
> them somewhat cursorily, since the diff was 991K.

Thanks, Daniel.

Eli,

I propose the following addition to gdbint.texi:

2008-01-02  Joel Brobecker  <brobecker@adacore.com>

        * gdbint.texinfo (Start of New Year Procedure): Add item
        describing how to update the source and documentation copyright
        notices.

Tested on x86-linux, by rebuilding the HTML documentation.
OK to apply?

Thanks,
-- 
Joel

[-- Attachment #2: new-year.diff --]
[-- Type: text/plain, Size: 571 bytes --]

Index: gdbint.texinfo
===================================================================
--- gdbint.texinfo	(revision 34)
+++ gdbint.texinfo	(working copy)
@@ -5973,6 +5973,12 @@ Update the copyright year in the startup
 
 Update the copyright year in file @file{top.c}, function
 @code{print_gdb_version}.
+
+@item
+Add the new year in the copyright notice of all source and documentation
+files. This is done semi-automatically by running the @code{copyright.sh}
+script.  This script requires emacs 22 or later to be installed.
+
 @end itemize
 
 @node Releasing GDB

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

* Re: [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs")
  2008-01-02  8:46   ` [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs") Joel Brobecker
@ 2008-01-05 11:07     ` Eli Zaretskii
  2008-01-05 15:16       ` Joel Brobecker
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2008-01-05 11:07 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

> Date: Wed, 2 Jan 2008 00:46:09 -0800
> From: Joel Brobecker <brobecker@adacore.com>
> 
> I propose the following addition to gdbint.texi:
> 
> 2008-01-02  Joel Brobecker  <brobecker@adacore.com>
> 
>         * gdbint.texinfo (Start of New Year Procedure): Add item
>         describing how to update the source and documentation copyright
>         notices.

Thanks.

> Tested on x86-linux, by rebuilding the HTML documentation.
> OK to apply?

Yes, but first, please take care of these minor gotchas:

> +Add the new year in the copyright notice of all source and documentation

I think "notices" (plural) is more correct here.

> +files. This is done semi-automatically by running the @code{copyright.sh}
        ^^
Two spaces after the period that ends a sentence, please.  Also, "This
can be done" is probably better, since we don't want to _force_ use of
the script, do we?

> +script.  This script requires emacs 22 or later to be installed.

Emacs should be capitalized here.


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

* Re: [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs")
  2008-01-05 11:07     ` Eli Zaretskii
@ 2008-01-05 15:16       ` Joel Brobecker
  0 siblings, 0 replies; 5+ messages in thread
From: Joel Brobecker @ 2008-01-05 15:16 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: gdb-patches

> > 2008-01-02  Joel Brobecker  <brobecker@adacore.com>
> > 
> >         * gdbint.texinfo (Start of New Year Procedure): Add item
> >         describing how to update the source and documentation copyright
> >         notices.
> 
> Yes, but first, please take care of these minor gotchas:

Thanks, Eli. Checked in with the corrections that you suggested.

-- 
Joel


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

end of thread, other threads:[~2008-01-05 15:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-01-01  4:34 Need to update copyright year in sources & docs Joel Brobecker
2008-01-01 22:48 ` Daniel Jacobowitz
2008-01-02  8:46   ` [RFA/doco] Update new-year checklist (was "Re: Need to update copyright year in sources & docs") Joel Brobecker
2008-01-05 11:07     ` Eli Zaretskii
2008-01-05 15:16       ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox