From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6800 invoked by alias); 4 Jan 2012 04:15:24 -0000 Received: (qmail 6780 invoked by uid 22791); 4 Jan 2012 04:15:21 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 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 04:15:08 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id A17EE2BB0A1; Tue, 3 Jan 2012 23:15:07 -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 2hh0UVbU8836; Tue, 3 Jan 2012 23:15:07 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 2587F2BB08D; Tue, 3 Jan 2012 23:15:07 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 1D059145615; Wed, 4 Jan 2012 08:14:57 +0400 (RET) Date: Wed, 04 Jan 2012 04:15:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Eli Zaretskii Subject: Re: RFA: Using year ranges in copyright notices... Message-ID: <20120104041457.GS2730@adacore.com> References: <20120103042431.GI2730@adacore.com> <20120103085234.GK2730@adacore.com> <4F02CEE3.6080909@codesourcery.com> <20120103101447.GL2730@adacore.com> <20120103160222.GN2730@adacore.com> <20120103175250.GA15915@host2.jankratochvil.net> <20120103180158.GR2730@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Ns7jmDPpOpCD+GE/" Content-Disposition: inline In-Reply-To: <20120103180158.GR2730@adacore.com> User-Agent: Mutt/1.5.20 (2009-06-14) 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/msg00117.txt.bz2 --Ns7jmDPpOpCD+GE/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 395 OK, this is the latest version. I am more or less copy/pasting the text from the maintainers' manual, so hopefully OK> I'm about to work on updating the copyright years, so I've committed this one. Eli, let me know if there are any additional changes you would like me to make. I will make them within the day. gdb/ChangeLog: * README (Copyright and License Notices): New section. -- Joel --Ns7jmDPpOpCD+GE/ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="readme.diff" Content-length: 1627 commit f411a6ac0f301c50f5271aff830b84f4b70e0858 Author: Joel Brobecker Date: Tue Jan 3 12:41:50 2012 +0400 [README] Add note about copyright and license notices Also explain the use of year ranges in copyright notices. gdb/ChangeLog: * README (Copyright and License Notices): New section. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 266f387..b68d64c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-01-04 Joel Brobecker + + * README (Copyright and License Notices): New section. + 2012-01-03 Tom Tromey PR python/12533: diff --git a/gdb/README b/gdb/README index d79fecc..999f992 100644 --- a/gdb/README +++ b/gdb/README @@ -638,6 +638,26 @@ testsuite `standalone', without it being part of the GDB source tree. See the DejaGNU documentation for further details. + +Copyright and License Notices +============================= + +Most files maintained by the GDB Project contain a copyright notice +as well as a license notice, usually at the start of the file. + +To reduce the length of copyright notices, consecutive years in the +copyright notice can be combined into a single range. For instance, +the following list of copyright years... + + 1986, 1988, 1989, 1991-1993, 1999, 2000, 2007, 2008, 2009, 2010, 2011 + +... is abbreviated into: + + 1986, 1988-1989, 1991-1993, 1999-2000, 2007-2011 + +Every year of each range, inclusive, is a copyrightable year that +could be listed individually. + (this is for editing this file with GNU emacs) Local Variables: --Ns7jmDPpOpCD+GE/--