Skip to content

Commit

Permalink
Switch to Ruby license from LGPL2.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed May 13, 2019
1 parent ba2f536 commit cc7fe95
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 548 deletions.
537 changes: 22 additions & 515 deletions COPYING

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions README.ja.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@
== ライセンス

このパッケージに付属するファイルの著作権は青木峰郎が保持します。
ライセンスは GNU Lesser General Public License (LGPL) version 2
です。ただしユーザが書いた規則ファイルや、Racc がそこから生成し
た Ruby スクリプトはその対象外です。好きなライセンスで配布して
ください。
ライセンスは Ruby ライセンスです。ただしユーザが書いた規則
ファイルや、Racc がそこから生成した Ruby スクリプトはその対象
外です。好きなライセンスで配布してください。


== バグなど
Expand Down
8 changes: 4 additions & 4 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@

== License

Racc is distributed under the terms of the GNU Lesser General
Public License version 2. Note that you do NOT need to follow
LGPL for your own parser (racc outputs). You can provide those
files under any licenses you want.
Racc is distributed under the same terms of ruby.
(see the file COPYING). Note that you do NOT need to follow
ruby license for your own parser (racc outputs).
You can distribute those files under any licenses you want.


== Bug Reports
Expand Down
6 changes: 2 additions & 4 deletions bin/racc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/static'
require 'optparse'
Expand Down
6 changes: 2 additions & 4 deletions lib/racc/exception.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

module Racc
class Error < StandardError; end
Expand Down
6 changes: 2 additions & 4 deletions lib/racc/grammar.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/compat'
require 'racc/iset'
Expand Down
6 changes: 2 additions & 4 deletions lib/racc/info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

module Racc
VERSION = '1.4.15'
Expand Down
2 changes: 1 addition & 1 deletion lib/racc/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class ParseError < StandardError; end
# This command creates myparser.rb which `includes' Racc runtime.
# Only you must do is to distribute your parser file (myparser.rb).
#
# Note: parser.rb is LGPL, but your parser is not.
# Note: parser.rb is ruby license, but your parser is not.
# Your own parser is completely yours.
module Racc

Expand Down
6 changes: 2 additions & 4 deletions lib/racc/parserfilegenerator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'enumerator'
require 'racc/compat'
Expand Down
6 changes: 2 additions & 4 deletions lib/racc/state.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the terms of
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".

require 'racc/iset'
require 'racc/statetransitiontable'
Expand Down

0 comments on commit cc7fe95

Please sign in to comment.