From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24562 invoked by alias); 4 Jan 2012 08:20:50 -0000 Received: (qmail 24428 invoked by uid 22791); 4 Jan 2012 08:20:38 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_05,RP_MATCHES_RCVD,TW_BT,TW_DB X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 04 Jan 2012 08:20:15 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 6E26B2BABBF; Wed, 4 Jan 2012 03:20:13 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 10s8KRXnlka7; Wed, 4 Jan 2012 03:20:13 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 766F72BABB1; Wed, 4 Jan 2012 03:19:58 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 45224145618; Wed, 4 Jan 2012 12:19:16 +0400 (RET) From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Joel Brobecker Subject: [commit 2/3] use gnulib's update-copyright script to update copyright years Date: Wed, 04 Jan 2012 08:20:00 -0000 Message-Id: <1325665146-31682-3-git-send-email-brobecker@adacore.com> In-Reply-To: <1325665146-31682-1-git-send-email-brobecker@adacore.com> References: <1325665146-31682-1-git-send-email-brobecker@adacore.com> 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: 2012-01/txt/msg00122.txt.bz2 This patch now retires the old copyright.sh script which was using emacs to perform the copyright update. It also completely rewrite copyright.py to call update-copyright with the appropriate list of files. In addition to calling update-copyright, the new script also performs a sanity-check on all the files that update-copyright could not update, and sees whether the file might contain a copyright notice that the script could not decipher. gdb/ChangeLog: * copyright.sh: Delete. * copyright.py: Rewrite. Checked in. --- gdb/ChangeLog | 5 + gdb/copyright.py | 844 +++++++++++++++++------------------------------------- gdb/copyright.sh | 170 ----------- 3 files changed, 262 insertions(+), 757 deletions(-) delete mode 100644 gdb/copyright.sh diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 834b5be..d011bd9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2012-01-04 Joel Brobecker + * copyright.sh: Delete. + * copyright.py: Rewrite. + +2012-01-04 Joel Brobecker + * gnulib/extra/update-copyright: New file, imported from gnulib. 2012-01-04 Joel Brobecker diff --git a/gdb/copyright.py b/gdb/copyright.py index 71f261d..93cfe71 100644 --- a/gdb/copyright.py +++ b/gdb/copyright.py @@ -1,608 +1,278 @@ #! /usr/bin/env python +# Copyright (C) 2011 Free Software Foundation, Inc. +# +# This file is part of GDB. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + """copyright.py -This script updates most of the files that are not already handled -by copyright.sh. It must be run from the gdb/ subdirectory of the -GDB source tree. +This script updates the list of years in the copyright notices in +most files maintained by the GDB project. + +Usage: cd src/gdb && python copyright.py +Always review the output of this script before committing it! +A useful command to review the output is: + % filterdiff -x \*.c -x \*.cc -x \*.h -x \*.exp updates.diff +This removes the bulk of the changes which are most likely to be correct. """ import datetime -import re import os import os.path +import subprocess + +# A list of prefixes that start a multi-line comment. These prefixes +# should not be repeatead when wraping long lines. +MULTILINE_COMMENT_PREFIXES = ( + '/*', # C/C++ + '