From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 8F20F3858404 for ; Wed, 10 Nov 2021 10:55:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8F20F3858404 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1636541700; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type:in-reply-to:in-reply-to: references:references; bh=mTbA9sl93M87B9TijrIBinKHVCYGZ2es8spbE+VUJxc=; b=cSIFHmU6hDFiM44CB+Ck8TCx1DDco4HiNIlXpxCL4hGPFkiC/KnzgMTJc4qGPRf2w6dAWb sp/eRciC8bfmPLDHk+Jprhnjr7wEo89mIuIdGtDZ9SpJw+cKP3sB/zPv+vJV6kYhyaFiLl 5tegk4XOwl8hQGsO59LlaMAJ13kk1Ug= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-171--2JeNi_7MI2QZ7EJRkQExw-1; Wed, 10 Nov 2021 05:54:47 -0500 X-MC-Unique: -2JeNi_7MI2QZ7EJRkQExw-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CACFACC622 for ; Wed, 10 Nov 2021 10:54:46 +0000 (UTC) Received: from calimero.vinschen.de (ovpn-112-10.ams2.redhat.com [10.36.112.10]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9A7945DEFA for ; Wed, 10 Nov 2021 10:54:46 +0000 (UTC) Received: by calimero.vinschen.de (Postfix, from userid 500) id 264B7A80D3D; Wed, 10 Nov 2021 11:54:45 +0100 (CET) Date: Wed, 10 Nov 2021 11:54:45 +0100 From: Corinna Vinschen To: newlib@sourceware.org Subject: Re: [PATCH 00/12] sync etc/ to bfd/gdb tree Message-ID: Reply-To: newlib@sourceware.org Mail-Followup-To: newlib@sourceware.org References: <20211110001431.2212-1-vapier@gentoo.org> MIME-Version: 1.0 In-Reply-To: <20211110001431.2212-1-vapier@gentoo.org> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=vinschen@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Nov 2021 10:55:03 -0000 On Nov 9 19:14, Mike Frysinger wrote: > This pulls in all the commits that updated etc/ since it was last updated. > > Alan Modra (5): > update-copyright.py for binutils > Update year range in copyright notice of binutils files > Update year range in copyright notice of binutils files > Add libctf to update-copyright.py > Update year range in copyright notice of binutils files > > Mike Frysinger (2): > etc: rename configure.in to configure.ac > etc: switch to automake > > Nick Clifton (2): > Fix compile time warning messages building with gcc v6.1.1 > Update the address of the FSF in the copyright notice of files which > were using the old address. > > Sergei Trofimovich (1): > texi2pod.pl: add no-op --no-split option support [PR28144] > > Simon Marchi (2): > Bump to autoconf 2.69 and automake 1.15.1 > texi2pod.pl: import support for @t{...} from gcc > > COPYING.LIBGLOSS | 8 +- > ChangeLog | 4 + > etc/ChangeLog | 34 ++ > etc/Makefile.am | 19 + > etc/Makefile.in | 407 +++++++++++++-- > etc/aclocal.m4 | 792 ++++++++++++++++++++++++++++ > etc/add-log.el | 8 +- > etc/configure | 1086 +++++++++++++++++++++++++++++++-------- > etc/configure.ac | 9 + > etc/configure.in | 27 - > etc/texi2pod.pl | 7 +- > etc/update-copyright.py | 622 ++++++++++++++++++++++ > 12 files changed, 2713 insertions(+), 310 deletions(-) > create mode 100644 etc/Makefile.am > create mode 100644 etc/aclocal.m4 > create mode 100644 etc/configure.ac > delete mode 100644 etc/configure.in > create mode 100755 etc/update-copyright.py > > -- > 2.33.0 LGTM. Please push. Thanks, Corinna