From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25658 invoked by alias); 20 Jan 2008 15:08:25 -0000 Received: (qmail 25635 invoked by uid 22791); 20 Jan 2008 15:08:22 -0000 X-Spam-Status: No, hits=-0.8 required=5.0 tests=AWL,BAYES_05,DATE_IN_PAST_24_48 X-Spam-Check-By: sourceware.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (83.160.170.119) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 20 Jan 2008 15:08:02 +0000 Received: from wildebeest.demon.nl ([83.160.170.119] helo=[127.0.0.1]) by gnu.wildebeest.org with esmtp (Exim 4.63) (envelope-from ) id 1JGbm8-00028c-G5 for frysk@sourceware.org; Sun, 20 Jan 2008 16:07:57 +0100 Subject: add copyright boilerplate From: Mark Wielaard To: frysk@sourceware.org Content-Type: text/plain Date: Sun, 20 Jan 2008 15:08:00 -0000 Message-Id: <1200739872.12412.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.12.2 (2.12.2-3.fc8) Content-Transfer-Encoding: 7bit X-Spam-Score: -3.2 (---) X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2008-q1/txt/msg00034.txt.bz2 Hi, This patch (diff excluded because it is boring) adds the proper copyright boilerplate for these files (which makes make check shut up about them). All these files were created and edited in 2007. But for new files/edits make sure that you update the copyright year to 2008 [*]. frysk-core/frysk/debuginfo/ChangeLog 2008-01-18 Mark Wielaard * CompilerVersionFactory.java: Add copyright boilerplate. frysk-core/frysk/pkglibdir/ChangeLog 2008-01-18 Mark Wielaard * funit-class-static.cxx: Add copyright boilerplate. * funit-class.cxx: Likewise. * funit-complex-class.cxx: Likewise. * funit-complex-struct.cxx: Likewise. * funit-cpp-scopes-class-static.cxx: Likewise. * funit-cpp-scopes-class.cxx: Likewise. * funit-cpp-scopes-namespace.cxx: Likewise. * funit-inherited-struct.cxx: Likewise. * funit-simple-class.cxx: Likewise. * funit-simple-struct.cxx: Likewise. frysk-core/frysk/value/ChangeLog 2008-01-18 Mark Wielaard * TestClass.java: Add copyright boilerplate. Cheers, Mark [*] As always emacs can help you remember. Stick the following in your .emacs: (defun fp-copyright-update () (and (not (eq major-mode 'fundamental-mode)) (copyright-update))) (if (fboundp 'copyright-update) (add-hook 'write-file-hooks 'fp-copyright-update))