Update copyright dates
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Tue, 7 Jun 2016 08:54:22 +0000 (08:54 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Tue, 7 Jun 2016 08:54:22 +0000 (08:54 +0000)
libcc1:
Update copyrights.

gotools:
Update copyrights.

contrib:
* update-copyright.py (LibMudflapFilter): Remove.
(GCCCmdLine.__init__): Add gotools, libcc1.
Remove libmudflap.
List unhandled intl, libcilkrts, libgo, liboffloadmic,
maintainer-scripts.

From-SVN: r237169

22 files changed:
contrib/ChangeLog
contrib/update-copyright.py
gotools/ChangeLog
gotools/Makefile.am
gotools/configure.ac
libcc1/ChangeLog
libcc1/Makefile.am
libcc1/callbacks.cc
libcc1/callbacks.hh
libcc1/configure.ac
libcc1/connection.cc
libcc1/connection.hh
libcc1/findcomp.cc
libcc1/findcomp.hh
libcc1/libcc1.cc
libcc1/marshall.cc
libcc1/marshall.hh
libcc1/names.cc
libcc1/names.hh
libcc1/plugin.cc
libcc1/rpc.hh
libcc1/status.hh

index 2559db408a866aa51e34606ce52372f60a42f2a2..edb1df7b311ebfc9f56818deb4f255e113aeda6b 100644 (file)
@@ -1,3 +1,11 @@
+2016-06-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * update-copyright.py (LibMudflapFilter): Remove.
+       (GCCCmdLine.__init__): Add gotools, libcc1.
+       Remove libmudflap.
+       List unhandled intl, libcilkrts, libgo, liboffloadmic,
+       maintainer-scripts.
+
 2016-05-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        * download_prerequisites: Adjust gmp/mpfr/mpc versions.
index 5f93d01ac8c53f7f11c2c214ef515eb61d6055b3..ebefa4627c3d84bf4253a9d26fc8e8424f5bc1fb 100755 (executable)
@@ -631,15 +631,6 @@ class LibJavaFilter (GenericFilter):
             return re.compile ('.*icSigCopyrightTag')
         return GenericFilter.get_line_filter (self, dir, filename)
 
-class LibMudflapFilter (GenericFilter):
-    def __init__ (self):
-        GenericFilter.__init__ (self)
-
-        self.skip_dirs |= set ([
-                # Handled separately.
-                'testsuite',
-                ])
-
 class LibStdCxxFilter (GenericFilter):
     def __init__ (self):
         GenericFilter.__init__ (self)
@@ -724,30 +715,34 @@ class GCCCmdLine (CmdLine):
         self.add_dir ('gcc', GCCFilter())
         self.add_dir (os.path.join ('gcc', 'testsuite'), TestsuiteFilter())
         self.add_dir ('gnattools')
+        self.add_dir ('gotools')
         self.add_dir ('include')
+        # intl is imported from upstream.
         self.add_dir ('libada')
         self.add_dir ('libatomic')
         self.add_dir ('libbacktrace')
+        self.add_dir ('libcc1')
+        # libcilkrts is imported from upstream.
         self.add_dir ('libcpp', LibCppFilter())
         self.add_dir ('libdecnumber')
         # libffi is imported from upstream.
         self.add_dir ('libgcc', LibGCCFilter())
         self.add_dir ('libgfortran')
+        # libgo is imported from upstream.
         self.add_dir ('libgomp')
         self.add_dir ('libiberty')
         self.add_dir ('libitm')
         self.add_dir ('libjava', LibJavaFilter())
         self.add_dir (os.path.join ('libjava', 'testsuite'), TestsuiteFilter())
-        self.add_dir ('libmudflap', LibMudflapFilter())
-        self.add_dir (os.path.join ('libmudflap', 'testsuite'),
-                      TestsuiteFilter())
         self.add_dir ('libobjc')
+        # liboffloadmic is imported from upstream.
         self.add_dir ('libquadmath')
-        # libsanitiser is imported from upstream.
+        # libsanitizer is imported from upstream.
         self.add_dir ('libssp')
         self.add_dir ('libstdc++-v3', LibStdCxxFilter())
         self.add_dir ('libvtv')
         self.add_dir ('lto-plugin')
+        # maintainer-scripts maintainer-scripts
         # zlib is imported from upstream.
 
         self.default_dirs = [
@@ -761,7 +756,6 @@ class GCCCmdLine (CmdLine):
             'libgfortran',
             'libgomp',
             'libitm',
-            'libmudflap',
             'libobjc',
             'libstdc++-v3',
             ]
index 2d2d042ed6c840280e6c8783faf4c0b189548783..d89ecda24009324ee7cfcf73ebe53ff7ee71bf41 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       Update copyrights.
+
 2016-02-03  Ian Lance Taylor  <iant@google.com>
 
        * Makefile.am (go_cmd_gofmt_files): Update to Go 1.6rc1 by adding
index 48d7c0d102556bf633f5f81b06cdae399503dddd..d58fed5ae8f73665b1e83ee017db498a35c2c4e0 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile for gotools
-#   Copyright 2015 Free Software Foundation, Inc.
+#   Copyright (C) 2015-2016 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index e4528a4f31ee891c00317c90b022b1ccf3dcbf28..fcc6853629686d1f18342f8b7c48f8dd4e6d940f 100644 (file)
@@ -1,5 +1,5 @@
 # Configure script for gotools.
-#   Copyright 2015 Free Software Foundation, Inc.
+#   Copyright (C) 2015-2016 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
index 1ce7671b201ddfbf62471f04aaa92440f1c25515..fd1d85c38a7ba6f89979ba7b9dbb5954d36c697f 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       Update copyrights.
+
 2016-04-18  Michael Matz  <matz@suse.de>
 
        * plugin.cc (plugin_finish_record_or_union): Use SET_TYPE_ALIGN.
index b40820b21897c32cfa14ad2cbab0e7aa387bccc2..40e262c73d59c8aacc7408761b56367685e1e680 100644 (file)
@@ -1,4 +1,4 @@
-## Copyright (C) 2014 Free Software Foundation, Inc.
+## Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 ## This file is part of GCC.
 
index 3c4eda67ad07332259f3a1ccbc45df371bfc2c9f..bad28e1ad391a23259020b01baa82964bbc3c2c8 100644 (file)
@@ -1,5 +1,5 @@
 /* Callback management.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index bde1100fd06ea62b87f60612ae709a34464158f1..89ba2d044b0603d888ab9cde732f289d3b09fe39 100644 (file)
@@ -1,5 +1,5 @@
 /* Callback management
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index e2e3fdae0b4e3528fc2722541043abd87b7591d9..311431c7daf34cbb2a2cd4748cd0b32034e2d45e 100644 (file)
@@ -1,4 +1,4 @@
-dnl   Copyright (C) 2014 Free Software Foundation, Inc.
+dnl   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 dnl
 dnl This file is part of GCC.
 dnl
index 5db42046ae7a2240aa5699782af67e0d0a7703a7..89ae0bda1c7b9ee5db4435e740f102ee9c837ccb 100644 (file)
@@ -1,5 +1,5 @@
 /* Connect implementation
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 242deec311d460cb0d1349995e3dc63393b396e3..0e0b12b2c02b0f964dd29af142fc135c4aead1a8 100644 (file)
@@ -1,5 +1,5 @@
 /* Plugin connection declarations
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index f02b1dfe425448d5232b22492143621ff5a29ec3..f2e0532165972e1695bb8353790c47fef893cbae 100644 (file)
@@ -1,5 +1,5 @@
 /* Find the correct compiler.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index a55a28379c64e18c648f8783045ee130552e98bf..76b3b1e77d69cff6fbee18c61c1c839edfd2a6ee 100644 (file)
@@ -1,5 +1,5 @@
 /* Find the correct compiler.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 7d7d2c190c7fcad124e53fedc208a04e0a07575e..5295396b6564aef4ae57cf5ca90ce9030778353c 100644 (file)
@@ -1,5 +1,5 @@
 /* The library used by gdb.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 9119de652b74fdf44048e451b51961781bb2e789..ea54a6cc0569d4988ce8fb14b2f09405c531ae9b 100644 (file)
@@ -1,5 +1,5 @@
 /* Marshalling and unmarshalling.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 3f936e7a7543c9cbbd0bc23423b6da68daaac36c..48261f2eb570911c26b832bd977fb32e74c2bb5c 100644 (file)
@@ -1,5 +1,5 @@
 /* Marshalling and unmarshalling.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 5ddfa7bbc17e9146c9551a9a5f95822d939399db..6023be7df3601207ba3f35725d1c5a5e55f3ffd6 100644 (file)
@@ -1,5 +1,5 @@
 /* String definitions.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 9bda8d542c44533005f8ac28e4951a49561e8b5f..8e04147bf0b4539f11e4ac8c78249ce21f7d8a15 100644 (file)
@@ -1,5 +1,5 @@
 /* String declarations.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 44d0d607022d6e9bc86154d2ba8fc0f61ade4823..0ea912f375974d4e7cd07282a1263780b04f83f6 100644 (file)
@@ -1,5 +1,5 @@
 /* Library interface to C front end
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
    This file is part of GCC.
 
index 58758d3d39ece3697f49957fbde5ed1d7737b990..560d27c9fdbc318fbacb8d8ca31edf6d65f641a9 100644 (file)
@@ -1,5 +1,5 @@
 /* RPC call and callback templates
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
index 764c7ffd0b5214847a1cea121a2f9de0e137f707..85d434aaf6c3bd1de020c16880d3cd0d46fa09e6 100644 (file)
@@ -1,5 +1,5 @@
 /* status type definition
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2014-2016 Free Software Foundation, Inc.
 
 This file is part of GCC.