Skip to content

Commit

Permalink
Improve copyright and license overview files based on manual review o…
Browse files Browse the repository at this point in the history
…f all source files
  • Loading branch information
jwijffels committed Sep 17, 2018
1 parent 3a09128 commit 454f795
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 41 deletions.
9 changes: 4 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ Title: Conditional Random Fields for Labelling Sequential Data in Natural Langua
Version: 0.1
Maintainer: Jan Wijffels <[email protected]>
Authors@R: c(
person('Jan', 'Wijffels', role = c('aut', 'cre', 'cph'), email = '[email protected]'),
person('BNOSAC', role = 'cph'),
person('Jan', 'Wijffels', role = c('aut', 'cre', 'cph'), email = '[email protected]', comment = "R wrapper"),
person('BNOSAC', role = 'cph', comment = "R wrapper"),
person("Naoaki", "Okazaki", role = c('aut', 'ctb', 'cph'), comment = "CRFsuite library (BSD licensed), libLBFGS library (MIT licensed), Constant Quark Database software (BSD licensed)"),
person("Bob", "Jenkins", role = c('aut', 'ctb'), comment = "File src/cqdb/src/lookup3.c (Public Domain)"),
person("Jorge", "Nocedal", role = c('aut', 'ctb', 'cph'), comment = "libLBFGS library (MIT licensed)"),
person("Jesse", "Long", role = c('aut', 'ctb', 'cph'), comment = "RumAVL library (MIT licensed)"),
person("Makoto", "Matsumoto", role = c('aut', 'ctb', 'cph'), comment = "Mersenne Twister library (BSD licensed)"),
person("Takuji", "Nishimura", role = c('aut', 'ctb', 'cph'), comment = "Mersenne Twister library (BSD licensed)"))
person("Jesse", "Long", role = c('aut', 'ctb', 'cph'), comment = "RumAVL library (MIT licensed)"))
Description: Wraps the 'CRFsuite' library <https://github.com/chokkan/crfsuite> allowing users
to fit a Conditional Random Field model and to apply it on existing data.
The focus of the implementation is in the area of Natural Language Processing where this R package allows you to easily build and apply models
Expand Down
46 changes: 10 additions & 36 deletions LICENSE.note
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ This R package is distributed under the BSD-3 license: https://opensource.org/li
The package also includes 3rd party open source software components which are distributed under the MIT and under the BSD license.
The following is a list of these components. The full copies of the license agreements of these components are included below.

- CRFsuite: BSD license
- libLBFGS: MIT license
- Constant Quark Database: BSD license
- RumAVL: MIT license
- Mersenne Twister: BSD license

- CRFsuite: BSD license, namely all files in the src/crf directory except files src/crf/src/rumavl.c and src/crf/src/rumavl.h
- RumAVL: MIT license, namely files src/crf/src/rumavl.c and src/crf/src/rumavl.h
- libLBFGS: MIT license namely all files in the src/liblbfgs directory
- Constant Quark Database:
- BSD license, namely all files in the src/cqdb directory except file src/cqdb/src/lookup3.c
- Public Domain, namely file src/cqdb/src/lookup3.c


Portions of this software are based on CRFsuite.
Expand Down Expand Up @@ -46,7 +46,7 @@ Portions of this software are based on libLBFGS.
The MIT License

Copyright (c) 1990 Jorge Nocedal
Copyright (c) 2007 Naoaki Okazaki
Copyright (c) 2007-2010 Naoaki Okazaki

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -129,37 +129,11 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.


Portions of this software are based on Mersenne Twister.

Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
Portions of this software are Public Domain

3. The names of its contributors may not be used to endorse or promote
products derived from this software without specific prior written
permission.
The file which is Public Domain is file src/cqdb/src/lookup3.c
The author of this file is Bob Jenkins. It was written in May 2006.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.



Expand Down

0 comments on commit 454f795

Please sign in to comment.