X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=contrib%2Fupdate-copyright.py;h=bc65208d9cb87ee88edb0cc4b951ccf00c20c03b;hb=942ae5be66277f0b0768aaa8a0b83b7e9d4db00d;hp=67c21cab23ca68d40ced548959c6fa45fd6d7435;hpb=80de5ef9c1070e6dcbf8fd5cae93b06edc36d08a;p=gcc.git diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index 67c21cab23c..bc65208d9cb 100755 --- a/contrib/update-copyright.py +++ b/contrib/update-copyright.py @@ -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', @@ -593,7 +594,7 @@ class TestsuiteFilter (GenericFilter): if filename == 'README' and os.path.basename (dir) == 'params': return True if filename == 'pdt_5.f03' and os.path.basename (dir) == 'gfortran.dg': - return True + return True return GenericFilter.skip_file (self, dir, filename) class LibCppFilter (GenericFilter): @@ -682,16 +683,19 @@ class GCCCopyright (Copyright): self.add_external_author ('ARM') self.add_external_author ('AdaCore') + self.add_external_author ('Advanced Micro Devices Inc.') self.add_external_author ('Ami Tavory and Vladimir Dreizin, IBM-HRL.') self.add_external_author ('Cavium Networks.') self.add_external_author ('Faraday Technology Corp.') self.add_external_author ('Florida State University') + self.add_external_author ('Gerard Jungman') self.add_external_author ('Greg Colvin and Beman Dawes.') self.add_external_author ('Hewlett-Packard Company') self.add_external_author ('Intel Corporation') 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.') @@ -707,8 +711,10 @@ class GCCCopyright (Copyright): self.add_external_author ('The Go Authors. All rights reserved.') self.add_external_author ('The Go Authors.') self.add_external_author ('The Regents of the University of California.') + self.add_external_author ('Ulf Adams') 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):