From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 73CAE3858D20 for ; Wed, 17 Apr 2024 15:12:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 73CAE3858D20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 73CAE3858D20 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1713366774; cv=none; b=kU4NLBMB/tvKKxKuRgJRO4luQfKsL+B4Fk2FTsDjQ/ZHRjNM5A4wLyWYViomnuccV9UmV8t6rtcEpnjxXfppbX9wgvbtWZwjw+6k/Js/yqLywQVH/agpem6muYhLexmUk+eUXDh/gkvAjWXXET+LV+7SsY5yDqutr8VO/BPuJhY= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1713366774; c=relaxed/simple; bh=mtsTQXG780sAD+ive2+i9PwmzqvuYB0vwgCnwT6KbqM=; h=DKIM-Signature:Message-ID:Date:MIME-Version:Subject:To:From; b=mfRl233uDVy6naYjmnnLekr05f15Ixrm4S8WOsTopyLE4byxqLDwYMUsP8pr5gu76K7/Eq16jFAWDK7wHHj5BSDZvGsYmmA6DGxg1cEV4Zg2aSYXSIKkIrpahbRnR5auc3qmSEVfxYllPEAIeFYAP/nH6N0hDxUhfRDzsiy8L9Y= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1713366771; bh=mtsTQXG780sAD+ive2+i9PwmzqvuYB0vwgCnwT6KbqM=; h=Date:Subject:To:References:From:In-Reply-To:From; b=FTMihwBIo6FCgDKiuang8+cwSU4yq/Uw+lGRdOn4TIN+UITU8u0voSMUcsVT0qV1r acszqaVMAu1wny+/8FPw6Ff89pjtrC6X9KNPJJpUEhi0gLmtOL0Bol3R2zgtmzXHXb Zq6G1exjFluEEFKwjiMe9OwsO8e+HChE1kHKRJak= Received: from [10.0.0.11] (modemcable238.237-201-24.mc.videotron.ca [24.201.237.238]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 915A71E092; Wed, 17 Apr 2024 11:12:51 -0400 (EDT) Message-ID: <36e0b0c0-2e14-44ec-905c-00de568ae930@simark.ca> Date: Wed, 17 Apr 2024 11:12:51 -0400 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 5/5] autoregen.py: Add introduction comment To: Christophe Lyon , buildbot@sourceware.org References: <20240417145033.2077525-1-christophe.lyon@linaro.org> <20240417145033.2077525-5-christophe.lyon@linaro.org> Content-Language: en-US From: Simon Marchi In-Reply-To: <20240417145033.2077525-5-christophe.lyon@linaro.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2024-04-17 10:50, Christophe Lyon wrote: > To give more context to users, with the plan of moving this file to > contrib/ in binutils-gdb and gcc repositories. > --- > builder/containers/autoregen.py | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/builder/containers/autoregen.py b/builder/containers/autoregen.py > index 277dcb7..c392bf8 100755 > --- a/builder/containers/autoregen.py > +++ b/builder/containers/autoregen.py > @@ -1,5 +1,12 @@ > #!/usr/bin/env python3 > > +# This script helps to regenerate files managed by autotools and > +# autogen in binutils-gdb and gcc repositories. > + > +# In can be used by buildbots to check that the current repository In -> It Otherwise, the series LGTM. Simon