update-copyright.py: Add Mentor Graphics Corporation and Yoshinori Sato as external...
authorJakub Jelinek <jakub@redhat.com>
Wed, 1 Jan 2020 11:26:53 +0000 (12:26 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 1 Jan 2020 11:26:53 +0000 (12:26 +0100)
* update-copyright.py: Add Mentor Graphics Corporation and Yoshinori
Sato as external authors.  Skip LICENSE.txt files.

From-SVN: r279812

contrib/ChangeLog
contrib/update-copyright.py

index cfac553798709d9b7ea16eb152b5eea018a3fcb0..b9c8fea6a16a90eaf3813cbc9887aa01ffcf822b 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-01  Jakub Jelinek  <jakub@redhat.com>
+
+       * update-copyright.py: Add Mentor Graphics Corporation and Yoshinori
+       Sato as external authors.  Skip LICENSE.txt files.
+
 2019-12-16  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
 
        * config-list.mk: Add msp430-elfbare.
index ee3ee7fef40b38fb4f80723ec937ced6d1a93ca4..12ce4c05b7cc5234c72e5d1d4849f0a5d250e5e6 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (C) 2013-2018 Free Software Foundation, Inc.
+# Copyright (C) 2013-2020 Free Software Foundation, Inc.
 #
 # This script is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -75,6 +75,7 @@ class GenericFilter:
                 'COPYING3',
                 'COPYING3.LIB',
                 'LICENSE',
+                'LICENSE.txt',
                 'fdl.texi',
                 'gpl_v3.texi',
                 'fdl-1.3.xml',
@@ -693,6 +694,7 @@ class GCCCopyright (Copyright):
         self.add_external_author ('Information Technology Industry Council.')
         self.add_external_author ('James Theiler, Brian Gough')
         self.add_external_author ('Makoto Matsumoto and Takuji Nishimura,')
+        self.add_external_author ('Mentor Graphics Corporation')
         self.add_external_author ('National Research Council of Canada.')
         self.add_external_author ('NVIDIA Corporation')
         self.add_external_author ('Peter Dimov and Multi Media Ltd.')
@@ -710,6 +712,7 @@ class GCCCopyright (Copyright):
         self.add_external_author ('The Regents of the University of California.')
         self.add_external_author ('Unicode, Inc.')
         self.add_external_author ('University of Toronto.')
+        self.add_external_author ('Yoshinori Sato')
 
 class GCCCmdLine (CmdLine):
     def __init__ (self):