Skip to content

Commit eab011d

Browse files
committed
[skip ci] Updated licenses and gitignores
1 parent aab7cb6 commit eab011d

File tree

9 files changed

+259
-0
lines changed

9 files changed

+259
-0
lines changed

options/license/Asterisk-exception

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
In addition, when this program is distributed with Asterisk in any
2+
form that would qualify as a 'combined work' or as a 'derivative work'
3+
(but not mere aggregation), you can redistribute and/or modify the
4+
combination under the terms of the license provided with that copy
5+
of Asterisk, instead of the license terms granted here.

options/license/Boehm-GC

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Copyright (c) ...
2+
3+
THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
4+
OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
5+
6+
Permission is hereby granted to use or copy this program
7+
for any purpose, provided the above notices are retained on all copies.
8+
Permission to modify the code and to distribute modified code is granted,
9+
provided the above notices are retained, and a notice that the code was
10+
modified is included with the above copyright notice.
11+
12+
A few files have other copyright holders.

options/license/Inner-Net-2.0

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
The Inner Net License, Version 2.00
2+
3+
The author(s) grant permission for redistribution and use in source and
4+
binary forms, with or without modification, of the software and documentation
5+
provided that the following conditions are met:
6+
7+
0. If you receive a version of the software that is specifically labelled
8+
as not being for redistribution (check the version message and/or README),
9+
you are not permitted to redistribute that version of the software in any
10+
way or form.
11+
1. All terms of the all other applicable copyrights and licenses must be
12+
followed.
13+
2. Redistributions of source code must retain the authors' copyright
14+
notice(s), this list of conditions, and the following disclaimer.
15+
3. Redistributions in binary form must reproduce the authors' copyright
16+
notice(s), this list of conditions, and the following disclaimer in the
17+
documentation and/or other materials provided with the distribution.
18+
4. [The copyright holder has authorized the removal of this clause.]
19+
5. Neither the name(s) of the author(s) nor the names of its contributors
20+
may be used to endorse or promote products derived from this software
21+
without specific prior written permission.
22+
23+
THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY
24+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26+
DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY
27+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
30+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33+
34+
If these license terms cause you a real problem, contact the author.

options/license/LLGPL

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Preamble to the Gnu Lesser General Public License
2+
3+
Copyright (c) 2016 Franz Inc., Berkeley, CA 94704
4+
5+
The concept of the GNU Lesser General Public License version 2.1 ("LGPL")
6+
has been adopted to govern the use and distribution of above-mentioned
7+
application. However, the LGPL uses terminology that is more appropriate
8+
for a program written in C than one written in Lisp. Nevertheless, the
9+
LGPL can still be applied to a Lisp program if certain clarifications
10+
are made. This document details those clarifications. Accordingly, the
11+
license for the open-source Lisp applications consists of this document
12+
plus the LGPL. Wherever there is a conflict between this document and
13+
the LGPL, this document takes precedence over the LGPL.
14+
15+
A "Library" in Lisp is a collection of Lisp functions, data and foreign
16+
modules. The form of the Library can be Lisp source code (for processing
17+
by an interpreter) or object code (usually the result of compilation of
18+
source code or built with some other mechanisms). Foreign modules are
19+
object code in a form that can be linked into a Lisp executable. When
20+
we speak of functions we do so in the most general way to include, in
21+
addition, methods and unnamed functions. Lisp "data" is also a general
22+
term that includes the data structures resulting from defining Lisp
23+
classes. A Lisp application may include the same set of Lisp objects
24+
as does a Library, but this does not mean that the application is
25+
necessarily a "work based on the Library" it contains.
26+
27+
The Library consists of everything in the distribution file set before
28+
any modifications are made to the files. If any of the functions or
29+
classes in the Library are redefined in other files, then those
30+
redefinitions ARE considered a work based on the Library. If additional
31+
methods are added to generic functions in the Library, those additional
32+
methods are NOT considered a work based on the Library. If Library classes
33+
are subclassed, these subclasses are NOT considered a work based on the Library.
34+
If the Library is modified to explicitly call other functions that are neither
35+
part of Lisp itself nor an available add-on module to Lisp, then the functions
36+
called by the modified Library ARE considered a work based on the Library.
37+
The goal is to ensure that the Library will compile and run without getting
38+
undefined function errors.
39+
40+
It is permitted to add proprietary source code to the Library, but it must
41+
be done in a way such that the Library will still run without that proprietary
42+
code present. Section 5 of the LGPL distinguishes between the case of a
43+
library being dynamically linked at runtime and one being statically linked
44+
at build time. Section 5 of the LGPL states that the former results in an
45+
executable that is a "work that uses the Library." Section 5 of the LGPL
46+
states that the latter results in one that is a "derivative of the Library",
47+
which is therefore covered by the LGPL. Since Lisp only offers one choice,
48+
which is to link the Library into an executable at build time, we declare that,
49+
for the purpose applying the LGPL to the Library, an executable that results
50+
from linking a "work that uses the Library" with the Library is considered a
51+
"work that uses the Library" and is therefore NOT covered by the LGPL.
52+
53+
Because of this declaration, section 6 of LGPL is not applicable to the Library.
54+
However, in connection with each distribution of this executable, you must also
55+
deliver, in accordance with the terms and conditions of the LGPL, the source code
56+
of Library (or your derivative thereof) that is incorporated into this executable.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Permission is granted to make and distribute verbatim copies of this
2+
manual provided the copyright notice and this permission notice are
3+
preserved on all copies.
4+
5+
Permission is granted to copy and distribute modified versions of this
6+
manual under the conditions for verbatim copying, provided that the
7+
entire resulting derived work is distributed under the terms of a
8+
permission notice identical to this one.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Permission is granted to make and distribute verbatim copies of
2+
this manual provided the copyright notice and this permission
3+
notice are preserved on all copies.
4+
5+
Permission is granted to copy and distribute modified versions of
6+
this manual under the conditions for verbatim copying, provided
7+
that the entire resulting derived work is distributed under the
8+
terms of a permission notice identical to this one.
9+
10+
Since the Linux kernel and libraries are constantly changing, this
11+
manual page may be incorrect or out-of-date. The author(s) assume
12+
no responsibility for errors or omissions, or for damages resulting
13+
from the use of the information contained herein.
14+
15+
Formatted or processed versions of this manual, if unaccompanied by
16+
the source, must acknowledge the copyright and authors of this work.

options/license/OPL-UK-3.0

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
United Kingdom Open Parliament Licence v3.0
2+
3+
Open Parliament Licence
4+
5+
You are encouraged to use and re-use the information that
6+
is available under this licence freely and flexibly, with
7+
only a few conditions. Using information under this licence
8+
9+
Use of copyright and database right material made
10+
available under this licence (the ‘information’) indicates
11+
your acceptance of the terms and conditions below.
12+
13+
The Licensor grants you a worldwide, royalty-free,
14+
perpetual, non-exclusive licence to use the
15+
information subject to the conditions below.
16+
17+
This licence does not affect your freedom under
18+
fair dealing or fair use or any other copyright
19+
or database right exceptions and limitations.
20+
21+
You are free to:
22+
* copy, publish, distribute and transmit the information
23+
* adapt the information
24+
* exploit the information commercially and non-commercially,
25+
for example, by combining it with other information,
26+
or by including it in your own product or application
27+
28+
You must (where you do any of the above):
29+
* acknowledge the source of the information in your
30+
product or application by including the following
31+
attribution statement and, where possible, provide a
32+
link to this licence: Contains Parliamentary information
33+
licensed under the Open Parliament Licence v3.0.
34+
35+
These are important conditions of this licence and
36+
if you fail to comply with them the rights granted to
37+
you under this licence, or any similar licence granted
38+
by the Licensor, will end automatically.
39+
40+
Exemptions
41+
42+
This licence does not cover the use of:
43+
* personal data in the information;
44+
* information that has neither been published nor disclosed
45+
under information access legislation (including the
46+
Freedom of Information Acts for the UK and Scotland) by or
47+
with the consent of the Licensor;
48+
* the Royal Arms and the Crowned Portcullis;
49+
* third party rights the Licensor is not authorised to license;
50+
* information subject to other intellectual property rights,
51+
including patents, trademarks, and design rights
52+
53+
Non-endorsment
54+
55+
This licence does not grant you any right to use the
56+
information in a way that suggests any official status or
57+
that the Licensor endorses you or your use of the Information.
58+
59+
No warranty
60+
61+
The information is licensed ‘as is’ and the
62+
Licensor excludes all representations, warranties,
63+
obligations and liabilities in relation to the
64+
information to the maximum extent permitted by law.
65+
The Licensor is not liable for any errors or omissions in
66+
the information and shall not be liable for any loss, injury
67+
or damage of any kind caused by its use. The Licensor does
68+
not guarantee the continued supply of the information.
69+
70+
Governing law
71+
72+
This licence is governed by the laws of England and Wales.
73+
74+
Definitions
75+
76+
In this licence, the terms below have the following meanings:
77+
78+
‘Information’ means information protected by copyright
79+
or by database right (for example, literary and
80+
artistic works, content, data and source code)
81+
offered for use under the terms of this licence.
82+
83+
‘Information Provider’ means either House of Parliament.
84+
85+
‘Licensor’ means—
86+
(a) in relation to copyright, the Speaker of the House of
87+
Commons and the Clerk of the Parliaments representing
88+
the House of Commons and House of Lords respectively, and
89+
(b) in relation to database right, the Corporate
90+
Officer of the House of Commons and the Corporate
91+
Officer of the House of Lords respectively.
92+
93+
‘Use’ means doing any act which is restricted by copyright
94+
or database right, whether in the original medium or in any
95+
other medium, and includes without limitation distributing,
96+
copying, adapting and modifying as may be technically
97+
necessary to use it in a different mode or format.
98+
99+
‘You’ means the natural or legal person, or body of persons
100+
corporate or incorporate, acquiring rights under this licence.
101+
102+
About the Open Parliament Licence
103+
104+
This is version 3.0 of the Open Parliament Licence. The
105+
Licensor may, from time to time, issue new versions of the
106+
Open Parliament Licence. However, you may continue to use
107+
information licensed under this version should you wish to do so.
108+
109+
The information licensed under the Open Parliament
110+
Licence includes Parliamentary information in which
111+
Crown copyright subsists. Further context, best practice
112+
and guidance relating to the re-use of public sector
113+
information can be found in the UK Government Licensing
114+
Framework section on The National Archives website.

options/license/dtoa

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
The author of this software is David M. Gay.
2+
3+
Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
4+
5+
Permission to use, copy, modify, and distribute this software for any
6+
purpose without fee is hereby granted, provided that this entire notice
7+
is included in all copies of any software which is or includes a copy
8+
or modification of this software and in all copies of the supporting
9+
documentation for such software.
10+
11+
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
12+
WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
13+
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
14+
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.

0 commit comments

Comments
 (0)