emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/wisitoken-grammar-mode 5322510 2/3: Fix copyright


From: Stephen Leake
Subject: [elpa] externals/wisitoken-grammar-mode 5322510 2/3: Fix copyright
Date: Sat, 17 Aug 2019 19:15:11 -0400 (EDT)

branch: externals/wisitoken-grammar-mode
commit 53225101cf47ca83235e48cd88dffd3463549ba6
Author: Stephen Leake <address@hidden>
Commit: Stephen Leake <address@hidden>

    Fix copyright
    
    * build.sh: Add copyright.
    
    * run_wisitoken_grammar_parse.ads (): Fix copyright.
    * wisi-wisitoken_grammar.adb ():
    
    * wisitoken-grammar-mode.el: Bump version.
    
    * wisitoken_grammar.gpr: Fix copyright.
    * wisitoken_grammar_mode_parse.ads ():
---
 build.sh                         |  19 +++++
 run_wisitoken_grammar_parse.ads  |   2 +-
 wisi-wisitoken_grammar.adb       |   2 +-
 wisi-wisitoken_grammar.ads       |   2 +-
 wisitoken-grammar-mode.el        |   2 +-
 wisitoken_grammar.gpr            | 148 +++++++++++++++++++--------------------
 wisitoken_grammar_mode_parse.ads |   2 +-
 7 files changed, 98 insertions(+), 79 deletions(-)

diff --git a/build.sh b/build.sh
index bd8fb9d..bfbb378 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,24 @@
 #!/bin/sh
 # Build and install executables for WisiToken grammar mode.
+#
+# Copyright (C) 2017 - 2019  Free Software Foundation, Inc.
+# This file is part of GNU Emacs.
+
+# wisitoken-grammar-mode 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, or (at your option)
+# any later version.
+
+# wisitoken-grammar-mode 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.
+
+# You should have received a copy of the GNU General Public License
+# along with GNU Emacs; see the file COPYING.  If not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
 
 export GPR_PROJECT_PATH="../wisi-2.2.1"
 
diff --git a/run_wisitoken_grammar_parse.ads b/run_wisitoken_grammar_parse.ads
index 678cdf0..eb698cd 100644
--- a/run_wisitoken_grammar_parse.ads
+++ b/run_wisitoken_grammar_parse.ads
@@ -2,7 +2,7 @@
 --
 --  Run the wisitoken-grammar parser standalone. Useful for debugging grammar 
issues.
 --
---  Copyright (C) 2017 - 2019 Stephen Leake All Rights Reserved.
+--  Copyright (C) 2017 - 2019 Free Software Foundation, Inc.
 --
 --  This program is free software; you can redistribute it and/or
 --  modify it under terms of the GNU General Public License as
diff --git a/wisi-wisitoken_grammar.adb b/wisi-wisitoken_grammar.adb
index 0b83748..2de5a05 100644
--- a/wisi-wisitoken_grammar.adb
+++ b/wisi-wisitoken_grammar.adb
@@ -2,7 +2,7 @@
 --
 --  See spec.
 --
---  Copyright (C) 2019 Stephen Leake All Rights Reserved.
+--  Copyright (C) 2019 Free Software Foundation, Inc.
 --
 --  This library is free software;  you can redistribute it and/or modify it
 --  under terms of the  GNU General Public License  as published by the Free
diff --git a/wisi-wisitoken_grammar.ads b/wisi-wisitoken_grammar.ads
index 6bc87ad..70c404d 100644
--- a/wisi-wisitoken_grammar.ads
+++ b/wisi-wisitoken_grammar.ads
@@ -2,7 +2,7 @@
 --
 --  Wisitoken_grammar parser language-specific runtime
 --
---  Copyright (C) 2019 Stephen Leake All Rights Reserved.
+--  Copyright (C) 2019 Free Software Foundation, Inc.
 --
 --  This library is free software;  you can redistribute it and/or modify it
 --  under terms of the  GNU General Public License  as published by the Free
diff --git a/wisitoken-grammar-mode.el b/wisitoken-grammar-mode.el
index 1b0b29f..1f6e53a 100644
--- a/wisitoken-grammar-mode.el
+++ b/wisitoken-grammar-mode.el
@@ -5,7 +5,7 @@
 ;; Author: Stephen Leake <address@hidden>
 ;; Maintainer: Stephen Leake <address@hidden>
 ;; Keywords: languages
-;; Version: 1.0.0
+;; Version: 1.0.2
 ;; package-requires: ((wisi "2.2.1") (emacs "25.0") (mmm-mode "0.5.7"))
 
 ;; no upstream url; just ELPA
diff --git a/wisitoken_grammar.gpr b/wisitoken_grammar.gpr
index 61e22c0..7d65dde 100644
--- a/wisitoken_grammar.gpr
+++ b/wisitoken_grammar.gpr
@@ -1,74 +1,74 @@
---  Abstract :
---
---  build executables
---
---  Copyright (C) 2017, 2019 Stephen Leake All Rights Reserved.
---
---  This program is free software; you can redistribute it and/or
---  modify it under terms of the GNU General Public License as
---  published by the Free Software Foundation; either version 3, 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. You
---  should have received a copy of the GNU General Public License
---  distributed with this program; see file COPYING. If not, write to
---  the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
---  MA 02110-1335, USA.
-
-with "wisi";
-with "wisitoken";
-with "standard_common";
-project WisiToken_Grammar is
-
-   for Main use
-     ("wisitoken_grammar_mode_parse.ads",
-      "run_wisitoken_grammar_parse.ads"
-     );
-
-   for Source_Dirs use (".");
-
-   case Standard_Common.Profile is
-   when "On" =>
-      for Object_Dir use "obj_pro";
-      for Exec_Dir use "exec_pro";
-
-   when "Off" =>
-      for Object_Dir use "obj";
-      for Exec_Dir use ".";
-   end case;
-
-   for Languages use ("Ada", "C");
-
-   package Compiler is
-
-      case Standard_Common.Build is
-      when "Debug" =>
-         for Default_Switches ("Ada") use
-           Standard_Common.Compiler.Common_Switches &
-           Standard_Common.Compiler.Style_Checks &
-           Standard_Common.Compiler.Debug_Switches;
-
-         for Default_Switches ("C") use 
Standard_Common.Compiler.Debug_Switches_C;
-
-      when "Normal" =>
-         for Default_Switches ("Ada") use
-           Standard_Common.Compiler.Common_Switches &
-           Standard_Common.Compiler.Style_Checks &
-           Standard_Common.Compiler.Release_Switches;
-
-         for Default_Switches ("C") use 
Standard_Common.Compiler.Release_Switches_C;
-      end case;
-
-   end Compiler;
-
-   package Builder is
-      --  We use ".exe" extension even on non-Windows, to simplify the 
makefiles.
-      for Executable_Suffix use ".exe";
-   end Builder;
-
-   package Binder is
-      for default_switches ("Ada") use ("-E"); -- symbolic traceback
-   end Binder;
-
-end WisiToken_Grammar;
+--  Abstract :
+--
+--  build executables
+--
+--  Copyright (C) 2017 Free Software Foundation, Inc.
+--
+--  This program is free software; you can redistribute it and/or
+--  modify it under terms of the GNU General Public License as
+--  published by the Free Software Foundation; either version 3, 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. You
+--  should have received a copy of the GNU General Public License
+--  distributed with this program; see file COPYING. If not, write to
+--  the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
+--  MA 02110-1335, USA.
+
+with "wisi";
+with "wisitoken";
+with "standard_common";
+project WisiToken_Grammar is
+
+   for Main use
+     ("wisitoken_grammar_mode_parse.ads",
+      "run_wisitoken_grammar_parse.ads"
+     );
+
+   for Source_Dirs use (".");
+
+   case Standard_Common.Profile is
+   when "On" =>
+      for Object_Dir use "obj_pro";
+      for Exec_Dir use "exec_pro";
+
+   when "Off" =>
+      for Object_Dir use "obj";
+      for Exec_Dir use ".";
+   end case;
+
+   for Languages use ("Ada", "C");
+
+   package Compiler is
+
+      case Standard_Common.Build is
+      when "Debug" =>
+         for Default_Switches ("Ada") use
+           Standard_Common.Compiler.Common_Switches &
+           Standard_Common.Compiler.Style_Checks &
+           Standard_Common.Compiler.Debug_Switches;
+
+         for Default_Switches ("C") use 
Standard_Common.Compiler.Debug_Switches_C;
+
+      when "Normal" =>
+         for Default_Switches ("Ada") use
+           Standard_Common.Compiler.Common_Switches &
+           Standard_Common.Compiler.Style_Checks &
+           Standard_Common.Compiler.Release_Switches;
+
+         for Default_Switches ("C") use 
Standard_Common.Compiler.Release_Switches_C;
+      end case;
+
+   end Compiler;
+
+   package Builder is
+      --  We use ".exe" extension even on non-Windows, to simplify the 
makefiles.
+      for Executable_Suffix use ".exe";
+   end Builder;
+
+   package Binder is
+      for default_switches ("Ada") use ("-E"); -- symbolic traceback
+   end Binder;
+
+end WisiToken_Grammar;
diff --git a/wisitoken_grammar_mode_parse.ads b/wisitoken_grammar_mode_parse.ads
index f8015fa..47a9ed0 100644
--- a/wisitoken_grammar_mode_parse.ads
+++ b/wisitoken_grammar_mode_parse.ads
@@ -2,7 +2,7 @@
 --
 --  External process parser for wisitoken-grammar mode
 --
---  Copyright (C) 2017 - 2019 Stephen Leake All Rights Reserved.
+--  Copyright (C) 2017 - 2019 Free Software Foundation, Inc.
 --
 --  This program is free software; you can redistribute it and/or
 --  modify it under terms of the GNU General Public License as



reply via email to

[Prev in Thread] Current Thread [Next in Thread]