diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-06-07 08:54:22 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-06-07 08:54:22 +0000 |
commit | 6f8b1fff4279e4c81b2cb3583a09e2524c27d283 (patch) | |
tree | e4d433ae0b9fe17176c6a4a7c83495fba4606e0f | |
parent | a262d9cd7df7ff6415ec4f395b9c07037b578f3b (diff) |
Update copyright dates
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@237169 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | contrib/ChangeLog | 8 | ||||
-rwxr-xr-x | contrib/update-copyright.py | 22 | ||||
-rw-r--r-- | gotools/ChangeLog | 4 | ||||
-rw-r--r-- | gotools/Makefile.am | 2 | ||||
-rw-r--r-- | gotools/configure.ac | 2 | ||||
-rw-r--r-- | libcc1/ChangeLog | 4 | ||||
-rw-r--r-- | libcc1/Makefile.am | 2 | ||||
-rw-r--r-- | libcc1/callbacks.cc | 2 | ||||
-rw-r--r-- | libcc1/callbacks.hh | 2 | ||||
-rw-r--r-- | libcc1/configure.ac | 2 | ||||
-rw-r--r-- | libcc1/connection.cc | 2 | ||||
-rw-r--r-- | libcc1/connection.hh | 2 | ||||
-rw-r--r-- | libcc1/findcomp.cc | 2 | ||||
-rw-r--r-- | libcc1/findcomp.hh | 2 | ||||
-rw-r--r-- | libcc1/libcc1.cc | 2 | ||||
-rw-r--r-- | libcc1/marshall.cc | 2 | ||||
-rw-r--r-- | libcc1/marshall.hh | 2 | ||||
-rw-r--r-- | libcc1/names.cc | 2 | ||||
-rw-r--r-- | libcc1/names.hh | 2 | ||||
-rw-r--r-- | libcc1/plugin.cc | 2 | ||||
-rw-r--r-- | libcc1/rpc.hh | 2 | ||||
-rw-r--r-- | libcc1/status.hh | 2 |
22 files changed, 42 insertions, 32 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 2559db408a86..edb1df7b311e 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -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. diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index 5f93d01ac8c5..ebefa4627c3d 100755 --- a/contrib/update-copyright.py +++ b/contrib/update-copyright.py @@ -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', ] diff --git a/gotools/ChangeLog b/gotools/ChangeLog index 2d2d042ed6c8..d89ecda24009 100644 --- a/gotools/ChangeLog +++ b/gotools/ChangeLog @@ -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 diff --git a/gotools/Makefile.am b/gotools/Makefile.am index 48d7c0d10255..d58fed5ae8f7 100644 --- a/gotools/Makefile.am +++ b/gotools/Makefile.am @@ -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 diff --git a/gotools/configure.ac b/gotools/configure.ac index e4528a4f31ee..fcc685362968 100644 --- a/gotools/configure.ac +++ b/gotools/configure.ac @@ -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 diff --git a/libcc1/ChangeLog b/libcc1/ChangeLog index 1ce7671b201d..fd1d85c38a7b 100644 --- a/libcc1/ChangeLog +++ b/libcc1/ChangeLog @@ -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. diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am index b40820b21897..40e262c73d59 100644 --- a/libcc1/Makefile.am +++ b/libcc1/Makefile.am @@ -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. diff --git a/libcc1/callbacks.cc b/libcc1/callbacks.cc index 3c4eda67ad07..bad28e1ad391 100644 --- a/libcc1/callbacks.cc +++ b/libcc1/callbacks.cc @@ -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. diff --git a/libcc1/callbacks.hh b/libcc1/callbacks.hh index bde1100fd06e..89ba2d044b06 100644 --- a/libcc1/callbacks.hh +++ b/libcc1/callbacks.hh @@ -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. diff --git a/libcc1/configure.ac b/libcc1/configure.ac index e2e3fdae0b4e..311431c7daf3 100644 --- a/libcc1/configure.ac +++ b/libcc1/configure.ac @@ -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 diff --git a/libcc1/connection.cc b/libcc1/connection.cc index 5db42046ae7a..89ae0bda1c7b 100644 --- a/libcc1/connection.cc +++ b/libcc1/connection.cc @@ -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. diff --git a/libcc1/connection.hh b/libcc1/connection.hh index 242deec311d4..0e0b12b2c02b 100644 --- a/libcc1/connection.hh +++ b/libcc1/connection.hh @@ -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. diff --git a/libcc1/findcomp.cc b/libcc1/findcomp.cc index f02b1dfe4254..f2e053216597 100644 --- a/libcc1/findcomp.cc +++ b/libcc1/findcomp.cc @@ -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. diff --git a/libcc1/findcomp.hh b/libcc1/findcomp.hh index a55a28379c64..76b3b1e77d69 100644 --- a/libcc1/findcomp.hh +++ b/libcc1/findcomp.hh @@ -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. diff --git a/libcc1/libcc1.cc b/libcc1/libcc1.cc index 7d7d2c190c7f..5295396b6564 100644 --- a/libcc1/libcc1.cc +++ b/libcc1/libcc1.cc @@ -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. diff --git a/libcc1/marshall.cc b/libcc1/marshall.cc index 9119de652b74..ea54a6cc0569 100644 --- a/libcc1/marshall.cc +++ b/libcc1/marshall.cc @@ -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. diff --git a/libcc1/marshall.hh b/libcc1/marshall.hh index 3f936e7a7543..48261f2eb570 100644 --- a/libcc1/marshall.hh +++ b/libcc1/marshall.hh @@ -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. diff --git a/libcc1/names.cc b/libcc1/names.cc index 5ddfa7bbc17e..6023be7df360 100644 --- a/libcc1/names.cc +++ b/libcc1/names.cc @@ -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. diff --git a/libcc1/names.hh b/libcc1/names.hh index 9bda8d542c44..8e04147bf0b4 100644 --- a/libcc1/names.hh +++ b/libcc1/names.hh @@ -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. diff --git a/libcc1/plugin.cc b/libcc1/plugin.cc index 44d0d607022d..0ea912f37597 100644 --- a/libcc1/plugin.cc +++ b/libcc1/plugin.cc @@ -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. diff --git a/libcc1/rpc.hh b/libcc1/rpc.hh index 58758d3d39ec..560d27c9fdbc 100644 --- a/libcc1/rpc.hh +++ b/libcc1/rpc.hh @@ -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. diff --git a/libcc1/status.hh b/libcc1/status.hh index 764c7ffd0b52..85d434aaf6c3 100644 --- a/libcc1/status.hh +++ b/libcc1/status.hh @@ -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. |