branch: master commit 3cb53e0c966f48358a009702f74e2bea337424a6 Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Assign more copyrights to FSF --- Makefile.am | 22 +++++++++++++++++++++- realgud/common/core.el | 15 ++++++++++++++- realgud/common/custom.el | 15 ++++++++++++++- realgud/common/file.el | 15 ++++++++++++++- realgud/common/follow.el | 15 ++++++++++++++- realgud/common/fringe.el | 15 ++++++++++++++- realgud/common/helper.el | 15 ++++++++++++++- realgud/common/init.el | 15 ++++++++++++++- realgud/debugger/trepan2/core.el | 2 +- realgud/debugger/trepan2/track-mode.el | 2 +- realgud/debugger/trepan3k/core.el | 2 +- 11 files changed, 122 insertions(+), 11 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9866e0f..5b85327 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,4 +44,24 @@ check-terse: install-short: $(MAKE) install 2>&1 | $(RUBY) test/make-check-filter.rb -.PHONY: test check check-short rmChangeLog +.PHONY: test check check-short rmChangeLog check_copyrights + +CR_EXCEPTIONS=cr_exceptions.txt +check_copyrights: + @echo "Compute exceptions >$(CR_EXCEPTIONS)~" + @export LC_ALL=C; \ + (cd $(top_srcdir) && \ + find . -name '.git' -prune -o \ + -name 'test' -prune -o \ + -name '*.el' -print0 | \ + xargs -0 grep -L 'Free Software Foundation, Inc' | \ + grep -v '\(\.dir-locals\|.-\(pkg\|autoloads\)\)\.el$$'; \ + find . -name '.git' -prune -o -name '*.el' -type f -print | \ + while read f; do \ + fquoted="$$(echo $$f|tr '|' '_')"; \ + sed -n -e '/[Cc]opyright.*, *[1-9][-0-9]*,\?$$/N' \ + -e '/Free Software Foundation/d' \ + -e "s|^\\(.*[Cc]opyright\\)|$$fquoted:\\1|p" \ + "$$f"; \ + done) | sort >$(CR_EXCEPTIONS)~ + diff -u "$(CR_EXCEPTIONS)" "$(CR_EXCEPTIONS)~" diff --git a/copyright_exceptions b/copyright_exceptions deleted file mode 100644 index e69de29..0000000 diff --git a/realgud/common/core.el b/realgud/common/core.el index ad86499..c051e26 100644 --- a/realgud/common/core.el +++ b/realgud/common/core.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + ; (require 'term) (if (< emacs-major-version 24) (error diff --git a/realgud/common/custom.el b/realgud/common/custom.el index c476142..d429b23 100644 --- a/realgud/common/custom.el +++ b/realgud/common/custom.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + (require 'load-relative) (defcustom realgud-key-prefix "\C-x\C-a" diff --git a/realgud/common/file.el b/realgud/common/file.el index 5bbf8ee..15a3e67 100644 --- a/realgud/common/file.el +++ b/realgud/common/file.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010-2011, 2013-2014 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010-2011, 2013-2014 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + ; Should realgud:file-loc-from-line be here or elsewhere? (require 'load-relative) (require 'compile) ;; for compilation-find-file diff --git a/realgud/common/follow.el b/realgud/common/follow.el index 7b379c9..65aa879 100644 --- a/realgud/common/follow.el +++ b/realgud/common/follow.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + ;;; Follows or goto's something (require 'load-relative) diff --git a/realgud/common/fringe.el b/realgud/common/fringe.el index 237a97f..745d85b 100644 --- a/realgud/common/fringe.el +++ b/realgud/common/fringe.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2012, 2014-2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2012, 2014-2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + ;; Fringe marks for history of stopping points (require 'load-relative) (require-relative-list '("helper") "realgud-") diff --git a/realgud/common/helper.el b/realgud/common/helper.el index a7b7674..a979ae5 100644 --- a/realgud/common/helper.el +++ b/realgud/common/helper.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2014, 2016 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2014, 2016 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + ;;; Miscellaneous utility functions (require 'load-relative) diff --git a/realgud/common/init.el b/realgud/common/init.el index 38ee39c..7001d85 100644 --- a/realgud/common/init.el +++ b/realgud/common/init.el @@ -1,4 +1,17 @@ -;;; Copyright (C) 2010, 2015 Rocky Bernstein <ro...@gnu.org> +;; Copyright (C) 2010, 2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + (require 'load-relative) (defface realgud-line-number diff --git a/realgud/debugger/trepan2/core.el b/realgud/debugger/trepan2/core.el index 0c122b8..eb2a5c6 100644 --- a/realgud/debugger/trepan2/core.el +++ b/realgud/debugger/trepan2/core.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010-2012, 2014-2015 Software Foundation, Inc +;; Copyright (C) 2010-2012, 2014-2015 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> diff --git a/realgud/debugger/trepan2/track-mode.el b/realgud/debugger/trepan2/track-mode.el index fc4c839..d2eb6ed 100644 --- a/realgud/debugger/trepan2/track-mode.el +++ b/realgud/debugger/trepan2/track-mode.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010-2012, 2014-2016 Software Foundation, Inc +;; Copyright (C) 2010-2012, 2014-2016 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org> diff --git a/realgud/debugger/trepan3k/core.el b/realgud/debugger/trepan3k/core.el index 4ceac61..39a6d13 100644 --- a/realgud/debugger/trepan3k/core.el +++ b/realgud/debugger/trepan3k/core.el @@ -1,4 +1,4 @@ -;; Copyright (C) 2010, 2012-2015 Software Foundation, Inc +;; Copyright (C) 2010, 2012-2015 Free Software Foundation, Inc ;; Author: Rocky Bernstein <ro...@gnu.org>