* [PATCH/obvious] Fix 7.7 branch date annoucement
@ 2014-01-31 9:28 Sergio Durigan Junior
2014-01-31 10:03 ` Joel Brobecker
0 siblings, 1 reply; 7+ messages in thread
From: Sergio Durigan Junior @ 2014-01-31 9:28 UTC (permalink / raw)
To: GDB Patches; +Cc: Joel Brobecker
Hi Joel,
We've received a notice on the GNU GDB ml mentioning that the GDB 7.7
branch date annoucement in our website is wrong (s/2013/2014). I cloned
the repository and fixed this (here's the patch), but I'm not sure if I
can just go ahead and check it in, or if there's some other thing I need
to do.
Anyway, here's the patch. I can check it in if you give me a green
light.
Thanks,
--
Sergio
Index: index.html
===================================================================
RCS file: /web/gdb/gdb/index.html,v
retrieving revision 1.58
diff -u -r1.58 index.html
--- index.html 8 Jan 2014 09:36:43 -0000 1.58
+++ index.html 31 Jan 2014 09:10:34 -0000
@@ -102,7 +102,7 @@
-->
-<dt>January 8th, 2013: <b>GDB 7.7 branch created</b></dt>
+<dt>January 8th, 2014: <b>GDB 7.7 branch created</b></dt>
<dd>
<p> The GDB 7.7 branch (<tt>gdb-7.7-branch</tt>) has been created.
To check out a copy of the branch use:
Index: news/index.html
===================================================================
RCS file: /web/gdb/gdb/news/index.html,v
retrieving revision 1.55
diff -u -r1.55 index.html
--- news/index.html 8 Jan 2014 09:36:43 -0000 1.55
+++ news/index.html 31 Jan 2014 09:10:34 -0000
@@ -62,7 +62,7 @@
-->
-<dt>January 8th, 2013: <b>GDB 7.7 branch created</b></dt>
+<dt>January 8th, 2014: <b>GDB 7.7 branch created</b></dt>
<dd>
<p> The GDB 7.7 branch (<tt>gdb-7.7-branch</tt>) has been created.
To check out a copy of the branch use:
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-01-31 9:28 [PATCH/obvious] Fix 7.7 branch date annoucement Sergio Durigan Junior
@ 2014-01-31 10:03 ` Joel Brobecker
2014-01-31 10:24 ` Sergio Durigan Junior
0 siblings, 1 reply; 7+ messages in thread
From: Joel Brobecker @ 2014-01-31 10:03 UTC (permalink / raw)
To: Sergio Durigan Junior; +Cc: GDB Patches
[-- Attachment #1: Type: text/plain, Size: 1037 bytes --]
Hi Sergio,
> We've received a notice on the GNU GDB ml mentioning that the GDB 7.7
> branch date annoucement in our website is wrong (s/2013/2014). I cloned
> the repository and fixed this (here's the patch), but I'm not sure if I
> can just go ahead and check it in, or if there's some other thing I need
> to do.
>
> Anyway, here's the patch. I can check it in if you give me a green
> light.
Thanks for the fix. In my initial reply, I had given you the green
light, with the following blurb: Make sure that you commit the patch
both to savannah (which feeds the side on gnu.org) and to the htdocs
repository at sourceware.org:/cvs/gdb (which feeds the sourceware.org
mirror). I usually have one single git mirror inside which I make
the changes, which I then cvsexportcommit to both CVS repositories.
In this case, I went ahead because I also noticed that the "Last
Updated" timestamps had not been updated. YOu need to run the index.sh
script on all HTML files updated....
Attached is what I ended up checking in...
--
Joel
[-- Attachment #2: 0001-Fix-GDB-7.7-branch-creation-year.patch --]
[-- Type: text/x-diff, Size: 1834 bytes --]
From 4a9af531a02450a59cffc7c304deb3b614668fb7 Mon Sep 17 00:00:00 2001
From: Joel Brobecker <brobecker@adacore.com>
Date: Fri, 31 Jan 2014 13:57:36 +0400
Subject: [PATCH] Fix GDB 7.7 branch creation year.
Patch from Sergio Durigan Junior <sergiodj@redhat.com>, with
a slight modification from Joel Brobecker <brobecker@adacore.com>
to update the "Last modified" dates for the affected files.
---
index.html | 4 ++--
news/index.html | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/index.html b/index.html
index e263b61..f802d9b 100644
--- a/index.html
+++ b/index.html
@@ -102,7 +102,7 @@ better.
-->
-<dt>January 8th, 2013: <b>GDB 7.7 branch created</b></dt>
+<dt>January 8th, 2014: <b>GDB 7.7 branch created</b></dt>
<dd>
<p> The GDB 7.7 branch (<tt>gdb-7.7-branch</tt>) has been created.
To check out a copy of the branch use:
@@ -266,7 +266,7 @@ Floor, Boston, MA 02110-1301 USA.</p>
<p>Verbatim copying and distribution of this entire article is
permitted in any medium, provided this notice is preserved.</p>
-<p>Last modified 2014-01-08.</p>
+<p>Last modified 2014-01-31.</p>
</address>
</body>
diff --git a/news/index.html b/news/index.html
index 75a42f7..357d9a0 100644
--- a/news/index.html
+++ b/news/index.html
@@ -62,7 +62,7 @@ better.
-->
-<dt>January 8th, 2013: <b>GDB 7.7 branch created</b></dt>
+<dt>January 8th, 2014: <b>GDB 7.7 branch created</b></dt>
<dd>
<p> The GDB 7.7 branch (<tt>gdb-7.7-branch</tt>) has been created.
To check out a copy of the branch use:
@@ -1148,7 +1148,7 @@ Floor, Boston, MA 02110-1301 USA.</p>
<p>Verbatim copying and distribution of this entire article is
permitted in any medium, provided this notice is preserved.</p>
-<p>Last modified 2014-01-08.</p>
+<p>Last modified 2014-01-31.</p>
</address>
</body>
--
1.8.3.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-01-31 10:03 ` Joel Brobecker
@ 2014-01-31 10:24 ` Sergio Durigan Junior
2014-01-31 10:39 ` Joel Brobecker
2014-02-04 19:12 ` Pedro Alves
0 siblings, 2 replies; 7+ messages in thread
From: Sergio Durigan Junior @ 2014-01-31 10:24 UTC (permalink / raw)
To: Joel Brobecker; +Cc: GDB Patches
On Friday, January 31 2014, Joel Brobecker wrote:
> Hi Sergio,
Hey Joel,
>> We've received a notice on the GNU GDB ml mentioning that the GDB 7.7
>> branch date annoucement in our website is wrong (s/2013/2014). I cloned
>> the repository and fixed this (here's the patch), but I'm not sure if I
>> can just go ahead and check it in, or if there's some other thing I need
>> to do.
>>
>> Anyway, here's the patch. I can check it in if you give me a green
>> light.
>
> Thanks for the fix. In my initial reply, I had given you the green
> light, with the following blurb: Make sure that you commit the patch
> both to savannah (which feeds the side on gnu.org) and to the htdocs
> repository at sourceware.org:/cvs/gdb (which feeds the sourceware.org
> mirror). I usually have one single git mirror inside which I make
> the changes, which I then cvsexportcommit to both CVS repositories.
Hm, I went to <https://sourceware.org/gdb/current/> and cloned "cvs -d
:ext:YOURACCOUNT@sourceware.org:/cvs/gdb co htdocs", but the repo was
empty. Not sure if I made something wrong...
> In this case, I went ahead because I also noticed that the "Last
> Updated" timestamps had not been updated. YOu need to run the index.sh
> script on all HTML files updated....
Aha, nice, thanks for the instructions.
> Attached is what I ended up checking in...
Thanks a lot.
--
Sergio
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-01-31 10:24 ` Sergio Durigan Junior
@ 2014-01-31 10:39 ` Joel Brobecker
2014-01-31 10:50 ` Sergio Durigan Junior
2014-02-04 19:12 ` Pedro Alves
1 sibling, 1 reply; 7+ messages in thread
From: Joel Brobecker @ 2014-01-31 10:39 UTC (permalink / raw)
To: Sergio Durigan Junior; +Cc: GDB Patches
> Hm, I went to <https://sourceware.org/gdb/current/> and cloned "cvs -d
> :ext:YOURACCOUNT@sourceware.org:/cvs/gdb co htdocs", but the repo was
> empty. Not sure if I made something wrong...
My CVS foo is even worse than what it used to be, but the following
command worked for me:
% cvs -d sourceware.org:/cvs/gdb co htdocs
Not sure what went wrong in your case.... Really strange.
--
Joel
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-01-31 10:39 ` Joel Brobecker
@ 2014-01-31 10:50 ` Sergio Durigan Junior
0 siblings, 0 replies; 7+ messages in thread
From: Sergio Durigan Junior @ 2014-01-31 10:50 UTC (permalink / raw)
To: Joel Brobecker; +Cc: GDB Patches
On Friday, January 31 2014, Joel Brobecker wrote:
>> Hm, I went to <https://sourceware.org/gdb/current/> and cloned "cvs -d
>> :ext:YOURACCOUNT@sourceware.org:/cvs/gdb co htdocs", but the repo was
>> empty. Not sure if I made something wrong...
>
> My CVS foo is even worse than what it used to be, but the following
> command worked for me:
>
> % cvs -d sourceware.org:/cvs/gdb co htdocs
>
> Not sure what went wrong in your case.... Really strange.
I couldn't figure it out. Anyway, nevermind, it worked now.
Thanks a lot,
--
Sergio
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-01-31 10:24 ` Sergio Durigan Junior
2014-01-31 10:39 ` Joel Brobecker
@ 2014-02-04 19:12 ` Pedro Alves
2014-02-06 11:29 ` Joel Brobecker
1 sibling, 1 reply; 7+ messages in thread
From: Pedro Alves @ 2014-02-04 19:12 UTC (permalink / raw)
To: Sergio Durigan Junior; +Cc: Joel Brobecker, GDB Patches
On 01/31/2014 10:24 AM, Sergio Durigan Junior wrote:
> On Friday, January 31 2014, Joel Brobecker wrote:
>
>> Hi Sergio,
>
> Hey Joel,
>
>>> We've received a notice on the GNU GDB ml mentioning that the GDB 7.7
>>> branch date annoucement in our website is wrong (s/2013/2014). I cloned
>>> the repository and fixed this (here's the patch), but I'm not sure if I
>>> can just go ahead and check it in, or if there's some other thing I need
>>> to do.
>>>
>>> Anyway, here's the patch. I can check it in if you give me a green
>>> light.
>>
>> Thanks for the fix. In my initial reply, I had given you the green
>> light, with the following blurb: Make sure that you commit the patch
>> both to savannah (which feeds the side on gnu.org) and to the htdocs
>> repository at sourceware.org:/cvs/gdb (which feeds the sourceware.org
>> mirror). I usually have one single git mirror inside which I make
>> the changes, which I then cvsexportcommit to both CVS repositories.
>
> Hm, I went to <https://sourceware.org/gdb/current/> and cloned "cvs -d
> :ext:YOURACCOUNT@sourceware.org:/cvs/gdb co htdocs", but the repo was
> empty. Not sure if I made something wrong...
>
>> In this case, I went ahead because I also noticed that the "Last
>> Updated" timestamps had not been updated. YOu need to run the index.sh
>> script on all HTML files updated....
>
> Aha, nice, thanks for the instructions.
I wonder whether this process is recorded/documented somewhere? The
wiki perhaps? That'd be great, so next time we could just point
people at an URL.
--
Pedro Alves
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH/obvious] Fix 7.7 branch date annoucement
2014-02-04 19:12 ` Pedro Alves
@ 2014-02-06 11:29 ` Joel Brobecker
0 siblings, 0 replies; 7+ messages in thread
From: Joel Brobecker @ 2014-02-06 11:29 UTC (permalink / raw)
To: Pedro Alves; +Cc: Sergio Durigan Junior, GDB Patches
> I wonder whether this process is recorded/documented somewhere? The
> wiki perhaps? That'd be great, so next time we could just point
> people at an URL.
Good suggestion. Now available at:
https://sourceware.org/gdb/wiki/GDBWebsiteUpdateProcedure
(this page is linked from the wiki home page)
--
Joel
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-02-06 11:29 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-31 9:28 [PATCH/obvious] Fix 7.7 branch date annoucement Sergio Durigan Junior
2014-01-31 10:03 ` Joel Brobecker
2014-01-31 10:24 ` Sergio Durigan Junior
2014-01-31 10:39 ` Joel Brobecker
2014-01-31 10:50 ` Sergio Durigan Junior
2014-02-04 19:12 ` Pedro Alves
2014-02-06 11:29 ` Joel Brobecker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox