Relicense imported LGPL v3+ files to GPL v3+.
Fixes https://savannah.nongnu.org/task/?16067. Reported via savannah by Ineiev <ineiev@gnu.org>. * mes/module/mes/lalr.scm, module/mes/getopt-long.scm, module/mes/optargs.scm: Change header to GNU Mes header with GPL v3.
This commit is contained in:
parent
f553d84de2
commit
3539572f9c
|
@ -1,22 +1,28 @@
|
||||||
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;;
|
;;;
|
||||||
;;;; An Efficient and Portable LALR(1) Parser Generator for Scheme
|
;;; Copyright © 1993, 2010 Dominique Boucher
|
||||||
|
;;; Copyright © 2014 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;; Copyright 2014 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; This file is part of GNU Mes.
|
||||||
;; Copyright 1993, 2010 Dominique Boucher
|
;;;
|
||||||
;;
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
||||||
;; This program is free software: you can redistribute it and/or
|
;;; under the terms of the GNU General Public License as published by
|
||||||
;; modify it under the terms of the GNU Lesser General Public License
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||||
;; as published by the Free Software Foundation, either version 3 of
|
;;; your option) any later version.
|
||||||
;; the License, or (at your option) any later version.
|
;;;
|
||||||
;;
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
||||||
;; This program is distributed in the hope that it will be useful,
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
;;; GNU General Public License for more details.
|
||||||
;; GNU Lesser General Public License for more details.
|
;;;
|
||||||
;;
|
;;; You should have received a copy of the GNU General Public License
|
||||||
;; You should have received a copy of the GNU General Public License
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||||
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
|
||||||
|
;;; An Efficient and Portable LALR(1) Parser Generator for Scheme
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
(define *lalr-scm-version* "2.5.0")
|
(define *lalr-scm-version* "2.5.0")
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,25 @@
|
||||||
;;; Copyright (C) 1998, 2001, 2006 Free Software Foundation, Inc.
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;; Copyright (C) 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;;
|
||||||
|
;;; Copyright © 1998, 2001, 2006 Free Software Foundation, Inc.
|
||||||
|
;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
;;;
|
||||||
|
;;; This file is part of GNU Mes.
|
||||||
|
;;;
|
||||||
|
;;; GNU Mes 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.
|
||||||
|
;;;
|
||||||
|
;;; GNU Mes 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 Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
;;;
|
||||||
|
;;; Taken from GNU Guile-1.8
|
||||||
;;;
|
;;;
|
||||||
;; This library is free software; you can redistribute it and/or
|
|
||||||
;; modify it under the terms of the GNU Lesser General Public
|
|
||||||
;; License as published by the Free Software Foundation; either
|
|
||||||
;; version 2.1 of the License, or (at your option) any later version.
|
|
||||||
;;
|
|
||||||
;; This library 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
|
|
||||||
;; Lesser General Public License for more details.
|
|
||||||
;;
|
|
||||||
;; You should have received a copy of the GNU Lesser General Public
|
|
||||||
;; License along with this library; if not, write to the Free Software
|
|
||||||
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
;;; Author: Russ McManus (rewritten by Thien-Thi Nguyen)
|
|
||||||
;;; (regexps removed by Jan (janneke) Nieuwenhuizen)
|
|
||||||
;;; (srfi-9 backport by Jan (janneke) Nieuwenhuizen)
|
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;;; This module implements some complex command line option parsing, in
|
;;; This module implements some complex command line option parsing, in
|
||||||
|
|
|
@ -1,24 +1,25 @@
|
||||||
;;;; optargs.scm -- support for optional arguments
|
;;; GNU Mes --- Maxwell Equations of Software
|
||||||
;;;;
|
;;;
|
||||||
;;;; Copyright (C) 1997, 1998, 1999, 2001, 2002, 2004, 2006 Free Software Foundation, Inc.
|
;;; Copyright © 1997, 1998, 1999, 2001, 2002, 2004, 2006 Free Software Foundation, Inc.
|
||||||
;;;;
|
;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;; This library is free software; you can redistribute it and/or
|
;;;
|
||||||
;;;; modify it under the terms of the GNU Lesser General Public
|
;;; This file is part of GNU Mes.
|
||||||
;;;; License as published by the Free Software Foundation; either
|
;;;
|
||||||
;;;; version 3 of the License, or (at your option) any later version.
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
||||||
;;;;
|
;;; under the terms of the GNU General Public License as published by
|
||||||
;;;; This library is distributed in the hope that it will be useful,
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||||
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
;;; your option) any later version.
|
||||||
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
;;;
|
||||||
;;;; Lesser General Public License for more details.
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
||||||
;;;;
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
;;;; You should have received a copy of the GNU Lesser General Public
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
;;;; License along with this library; if not, write to the Free Software
|
;;; GNU General Public License for more details.
|
||||||
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
;;;
|
||||||
;;;;
|
;;; You should have received a copy of the GNU General Public License
|
||||||
;;;; Contributed by Maciej Stachowiak <mstachow@alum.mit.edu>
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
;;;
|
||||||
|
;;; Taken from GNU Guile-1.8
|
||||||
|
;;; Contributed by Maciej Stachowiak <mstachow@alum.mit.edu>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue