From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19658 invoked by alias); 11 Oct 2007 07:26:14 -0000 Received: (qmail 19649 invoked by uid 22791); 11 Oct 2007 07:26:13 -0000 X-Spam-Check-By: sourceware.org Received: from ics.u-strasbg.fr (HELO ics.u-strasbg.fr) (130.79.112.250) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 11 Oct 2007 07:26:10 +0000 Received: from ICSMULLER (laocoon.u-strasbg.fr [130.79.112.72]) by ics.u-strasbg.fr (Postfix) with ESMTP id 9A55418701D; Thu, 11 Oct 2007 09:30:49 +0200 (CEST) From: "Pierre Muller" To: "'Daniel Jacobowitz'" Cc: References: <000001c80b14$db947450$92bd5cf0$@u-strasbg.fr> <20071010120140.GB10228@caradoc.them.org> In-Reply-To: <20071010120140.GB10228@caradoc.them.org> Subject: Update ARI pages Date: Thu, 11 Oct 2007 08:55:00 -0000 Message-ID: <002301c80bd8$051fc9f0$0f5f5dd0$@u-strasbg.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Content-Language: en-us Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-10/txt/msg00260.txt.bz2 > -----Original Message----- > From: gdb-patches-owner@sourceware.org [mailto:gdb-patches- > owner@sourceware.org] On Behalf Of 'Daniel Jacobowitz' > Sent: Wednesday, October 10, 2007 2:02 PM > To: Pierre Muller > Cc: gdb-patches@sourceware.org > Subject: Re: [RFA] gdb_ari.sh patch to eliminate wrong critical errors > > On Wed, Oct 10, 2007 at 10:09:18AM +0200, Pierre Muller wrote: > > I tested this locally and it does reduce the > > number of critical entries to 4. > > > > Daniel, could you please commit this? > > Done. Strange, because the ARI from today still do not reflect the changes :( The gdb_ari.sh still contains the old 'strerror' rule for which the implementation should be in gdb/utils.c file. Maybe the files executing every night are not automatically synchronized with the cvs repository. Daniel, someone having direct access to the web server is needed here, could you take a look at it? Maybe running ./do-scp in the directory that is used for the nightly update would be enough. It might also be a good time (as 6.7 just came out) to refresh the 'last release' page, but, to be honest, I tried to write a custom script for that: #!/bin/sh # Copy release to temp dir; directory unsure, based on do-snapshot script version=6.7 tmpdir=/sourceware/snapshot-tmp/gdb/release/gdb-${version} wwwdir=/www/sourceware/htdocs/gdb/download cp /sourceware/ftp/anonftp/pub/gdb/releases/gdb-${version}.tar.gz ${tmpdir}/update-web-ari # Move to temp dir cd ${tmpdir}/update-web-ari #Gunzip tar file gunzip gdb-${version}.tar.gz # Run update-web-ari script, destination web dir also uncertain... $(HOME)/ss/update-web-ari ${tmpdir}/update-web-ari/gdb.tar ${tmpdir}/update-web-ari ${wwwdir} /ari gdb But I don't know if the paths are still valid. Could you try it out? Pierre