* [rfa/doc] Update Releasing GDB:Before the Branch
@ 2002-03-26 16:50 Andrew Cagney
2002-03-26 22:43 ` Eli Zaretskii
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Cagney @ 2002-03-26 16:50 UTC (permalink / raw)
To: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 1757 bytes --]
Hello,
The attatched updates the doco to match what really happened before a
branch is cut rather than what I vaguely remembered from cutting the
last branch :-)
ok?
Andrew
@section Before the Branch
The most important objective at this stage is to find and fix simple
changes that become a pain to track once the branch is created. For
instance, configuration problems that stop @value{GDBN} from even
building. If you can't get the problem fixed, document it in the
@file{gdb/PROBLEMS} file.
@subheading Prompt for @file{gdb/NEWS}
People always forget. Send a post reminding them but also if you know
something interesting happened add it your self. The @code{schedule}
script will mention this in its e-mail.
@subheading Review @file{gdb/README}
Grab one of the nightly snapshots and then walk through the
@file{gdb/README} looking for anything that can be improved. The
@code{schedule} script will mention this in its e-mail.
@subheading Refresh any imported files.
A number of files are taken from external repositories. They include:
@itemize @bullet
@item
@file{texinfo/texinfo.tex}
@item
@file{config.guess} et.@: al.@: (see the top-level @file{MAINTAINERS}
file)
@item
@file{etc/standards.texi}, @file{etc/make-stds.texi}
@end itemize
@subheading Check the ARI
@uref{http://sources.redhat.com/gdb/ari,,A.R.I.} is an @code{awk} script
(Awk Regression Index ;-) that checks for a number of errors and coding
conventions. The checks include things like using @code{malloc} instead
of @code{xmalloc} and file naming problems. There shouldn't be any
regressions.
@subsection Review the bug data base
Close anything obviously fixed.
@subsection Check all cross targets build
The targets are listed in @file{gdb/MAINTAINERS}.
[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 4382 bytes --]
2002-03-25 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Releasing GDB): Revise the section `Before the
Branch'.
Index: gdbint.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v
retrieving revision 1.70
diff -p -r1.70 gdbint.texinfo
*** gdbint.texinfo 2002/03/19 02:49:53 1.70
--- gdbint.texinfo 2002/03/27 00:43:11
*************** no longer relevant or simply wrong. Sec
*** 4989,5030 ****
history associated with the file (effectively clearing the slate) the
developer has a much freer hand when it comes to fixing broken files.}
- @section Before the branch
The most important objective at this stage is to find and fix simple
changes that become a pain to track once the branch is created. For
instance, configuration problems that stop @value{GDBN} from even
building. If you can't get the problem fixed, document it in the
@file{gdb/PROBLEMS} file.
! @subheading Organize and announce the schedule.
! The following is a possible schedule. It is based on the rule-of-thumb
! that everything on the Internet takes a week. You may want to even
! increase those times further since an analysis of the actual data
! strongly suggests that the below is far to aggressive.
! @itemize @bullet
! @item
! announce it
! @item
! wait a week
! @item
! announce branch date
! @item
! wait a week
! @item
! Cut the branch
! @item
! wait a week
! @item
! start enjoying all the fun
! @end itemize
! As an aside, the branch tag name is probably regrettable vis:
! @smallexample
! gdb_N_M-YYYY-MM-DD-@{branch,branchpoint@}
! @end smallexample
@subheading Refresh any imported files.
--- 4989,5014 ----
history associated with the file (effectively clearing the slate) the
developer has a much freer hand when it comes to fixing broken files.}
+ @section Before the Branch
+
The most important objective at this stage is to find and fix simple
changes that become a pain to track once the branch is created. For
instance, configuration problems that stop @value{GDBN} from even
building. If you can't get the problem fixed, document it in the
@file{gdb/PROBLEMS} file.
! @subheading Prompt for @file{gdb/NEWS}
! People always forget. Send a post reminding them but also if you know
! something interesting happened add it your self. The @code{schedule}
! script will mention this in its e-mail.
! @subheading Review @file{gdb/README}
! Grab one of the nightly snapshots and then walk through the
! @file{gdb/README} looking for anything that can be improved. The
! @code{schedule} script will mention this in its e-mail.
@subheading Refresh any imported files.
*************** A number of files are taken from externa
*** 5034,5060 ****
@item
@file{texinfo/texinfo.tex}
@item
! @file{config.guess} et.@: al.@:
@end itemize
! and should be refreshed.
! @subheading Prompt for @file{gdb/NEWS}
! People always forget. Send a post reminding them but also if you know
! something interesting happened add it your self.
! @subheading Review @file{gdb/README}
! Grab one of the nightly snapshots and then walk through the
! @file{gdb/README} looking for anything that can be improved.
! @subheading Check the ARI
- ARI is an @code{awk} script (Awk Regression Indicator?) that checks for a
- number of errors and coding conventions. The checks include things like
- using @code{malloc} instead of @code{xmalloc} and file naming problems.
- There shouldn't be any regressions.
@section Cut the branch
--- 5018,5045 ----
@item
@file{texinfo/texinfo.tex}
@item
! @file{config.guess} et.@: al.@: (see the top-level @file{MAINTAINERS}
! file)
! @item
! @file{etc/standards.texi}, @file{etc/make-stds.texi}
@end itemize
! @subheading Check the ARI
! @uref{http://sources.redhat.com/gdb/ari,,A.R.I.} is an @code{awk} script
! (Awk Regression Index ;-) that checks for a number of errors and coding
! conventions. The checks include things like using @code{malloc} instead
! of @code{xmalloc} and file naming problems. There shouldn't be any
! regressions.
! @subsection Review the bug data base
! Close anything obviously fixed.
! @subsection Check all cross targets build
! The targets are listed in @file{gdb/MAINTAINERS}.
@section Cut the branch
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [rfa/doc] Update Releasing GDB:Before the Branch
2002-03-26 16:50 [rfa/doc] Update Releasing GDB:Before the Branch Andrew Cagney
@ 2002-03-26 22:43 ` Eli Zaretskii
2002-03-27 13:17 ` Andrew Cagney
0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2002-03-26 22:43 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches
On Tue, 26 Mar 2002, Andrew Cagney wrote:
> The attatched updates the doco to match what really happened before a
> branch is cut rather than what I vaguely remembered from cutting the
> last branch :-)
>
> ok?
Yes, thanks.
One comment:
> People always forget. Send a post reminding them but also if you know
> something interesting happened add it your self.
I think "yourself" should be a single word.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [rfa/doc] Update Releasing GDB:Before the Branch
2002-03-26 22:43 ` Eli Zaretskii
@ 2002-03-27 13:17 ` Andrew Cagney
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Cagney @ 2002-03-27 13:17 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: gdb-patches
> On Tue, 26 Mar 2002, Andrew Cagney wrote:
>
>
>> The attatched updates the doco to match what really happened before a
>> branch is cut rather than what I vaguely remembered from cutting the
>> last branch :-)
>>
>> ok?
>
>
> Yes, thanks.
>
> One comment:
>
>
>> People always forget. Send a post reminding them but also if you know
>> something interesting happened add it your self.
>
>
> I think "yourself" should be a single word.
Yes, fixed and committed.
Andrew
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-03-27 21:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-26 16:50 [rfa/doc] Update Releasing GDB:Before the Branch Andrew Cagney
2002-03-26 22:43 ` Eli Zaretskii
2002-03-27 13:17 ` Andrew Cagney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox