]> git.sur5r.net Git - bacula/bacula/blob - bacula/LICENSE-FOSS
33d32b36e26ad64c3337dc2a01dfa001fc79b655
[bacula/bacula] / bacula / LICENSE-FOSS
1        
2               FOSS Licenses used in Bacula
3
4 Note: This file corresponds to the Bacula Community (bacula.org) license.
5
6 Trademark:
7 The name Bacula is a registered trademark of Kern Sibbald.
8
9 "Fair use" of the trademark is permitted following standard customs
10 that any prominent use (e.g.  cover of a book) or the first use of
11 the name Bacula will include a trademark symbol.  If you fork the
12 Bacula project and make any significant changes to the functionality
13 of Bacula, to avoid confusion between your fork and Bacula, you must
14 give your fork another name.  You are not required to remove all
15 references to Bacula in the source code or "fair uses" in the
16 documentation.
17
18 ===================================
19
20 What follows is information from the authors of the code:
21
22 License:
23 To the best of our knowledge, all code used in Bacula, which is
24 copyrighted by a third party, has licenses that are compatible.
25
26
27 Intellectual Property rights:
28 Recipient understands that although each Contributor to Bacula grants
29 the licenses to its Contributions set forth herein, no assurances are
30 provided by any Contributor that the Program does not infringe the
31 patent or other intellectual property rights of any other entity.
32 Each Contributor disclaims any liability to Recipient for claims
33 brought by any other entity based on infringement of intellectual
34 property rights or otherwise.  As a condition to exercising the rights
35 and licenses granted hereunder, each Recipient hereby assumes sole
36 responsibility to secure any other intellectual property rights
37 needed, if any.  For example, if a third party patent license is
38 required to allow Recipient to distribute the Program, it is
39 Recipient's responsibility to acquire that license before distributing
40 the Program.
41
42 Copyrights:
43 Each Contributor to Bacula represents that to its knowledge it has
44 sufficient copyright rights in its Contribution, if any, to grant
45 the copyright license set forth in the LICENSE file..
46
47 Notices:
48 The Bacula community version uses a certain number of files that have FOSS
49 (Free or Open Software) licenses.  Most 3rd party FOSS licenses require no
50 notification so they are not included here.
51
52 However, the Bacula Community binary releases consist of files, with few
53 source files (mostly scripts), and some of the FOSS licenses such such as
54 the BSD (Berkeley Software Development) require publication of the
55 copyright notices if the code is released in binary format.  For example
56 certain copyright notifications are simplified such as:
57
58 # Copyright (C) 2000-2016 Kern Sibbald
59 # License: BSD 2-Clause; see file LICENSE-FOSS
60
61 This license corresponds to the following:
62
63 =====
64 Copyright (C) 2000-2016 Kern Sibbald
65 License: BSD 2-Clause; see file LICENSE-FOSS
66
67 Redistribution and use in source and binary forms, with or without
68 modification, are permitted provided that the following conditions are met:
69
70 1.  Redistributions of source code must retain the above copyright notice,
71 this list of conditions and the following disclaimer.
72
73 2.  Redistributions in binary form must reproduce the above copyright notice,
74 this list of conditions and the following disclaimer in the documentation
75 and/or other materials provided with the distribution.
76
77 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
78 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
79 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
80 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
81 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
82 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
83 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
84 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
85 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
86 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
87 ====
88
89 The release of binaries mentioned above is covered in point 2 (above) of 
90 license.  This file contains a list of all such licenses.
91
92 Database scripts (src/cats):
93 # Copyright (C) 2000-2015 Kern Sibbald
94 # License: BSD 2-Clause; see file LICENSE-FOSS
95
96 Translations (po):
97 # Copyright (C) 2000-2015 Kern Sibbald
98 # License: BSD 2-Clause; see file LICENSE-FOSS
99
100 # Copyright (C) 2010 Inteos Sp. z o.o.
101 # Copyright (C) 2010-2014 Kern Sibbald <kern@sibbald.com>
102 # License: BSD 2-Clause
103
104 # Copyright (C) 2005-2006 Free Software Foundation Europe e.V.
105 # License: BSD 2-Clause
106
107 Manpages:
108 This man page document is released under the BSD 2-Clause license.
109
110 Update database (updatedb):
111 # Copyright (C) 2000-2016 Kern Sibbald
112 # License: BSD 2-Clause; see file LICENSE-FOSS
113
114 Scripts (scripts):
115 # Copyright (C) 2000-2016 Kern Sibbald
116 # License: BSD 2-Clause; see file LICENSE-FOSS
117
118 Platforms (platforms):
119 # Copyright (C) 2000-2016 Kern Sibbald
120 # License: BSD 2-Clause; see file LICENSE-FOSS
121
122 Libraries (src/lib):
123 fnmatch.c/h
124 /*
125  * Copyright (c) 1989, 1993, 1994
126  *      The Regents of the University of California.  All rights reserved.
127  *
128  * This code is derived from software contributed to Berkeley by
129  * Guido van Rossum.
130  *
131  * Redistribution and use in source and binary forms, with or without
132  * modification, are permitted provided that the following conditions
133  * are met:
134  * 1. Redistributions of source code must retain the above copyright
135  *    notice, this list of conditions and the following disclaimer.
136  * 2. Redistributions in binary form must reproduce the above copyright
137  *    notice, this list of conditions and the following disclaimer in the
138  *    documentation and/or other materials provided with the distribution.
139  * 3. Neither the name of the University nor the names of its contributors
140  *    may be used to endorse or promote products derived from this software
141  *    without specific prior written permission.
142  *
143  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
144  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
145  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
146  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
147  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
148  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
149  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
150  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
151  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
152  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
153  * SUCH DAMAGE.
154  */
155
156 sha2.c/h
157 /*
158  * FIPS 180-2 SHA-224/256/384/512 implementation
159  * Last update: 02/02/2007
160  * Issue date:  04/30/2005
161  *
162  * Copyright (C) 2005, 2007 Olivier Gay <olivier.gay@a3.epfl.ch>
163  * All rights reserved.
164  *
165  * Redistribution and use in source and binary forms, with or without
166  * modification, are permitted provided that the following conditions
167  * are met:
168  * 1. Redistributions of source code must retain the above copyright
169  *    notice, this list of conditions and the following disclaimer.
170  * 2. Redistributions in binary form must reproduce the above copyright
171  *    notice, this list of conditions and the following disclaimer in the
172  *    documentation and/or other materials provided with the distribution.
173  * 3. Neither the name of the project nor the names of its contributors
174  *    may be used to endorse or promote products derived from this software
175  *    without specific prior written permission.
176  *
177  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
178  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
179  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
180  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
181  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
182  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
183  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
184  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
185  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
186  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
187  * SUCH DAMAGE.
188  */
189
190 bmtio.h
191 /*-
192  * Copyright (c) 1982, 1986, 1993
193  *      The Regents of the University of California.  All rights reserved.
194  *
195  * Redistribution and use in source and binary forms, with or without
196  * modification, are permitted provided that the following conditions
197  * are met:
198  * 1. Redistributions of source code must retain the above copyright
199  *    notice, this list of conditions and the following disclaimer.
200  * 2. Redistributions in binary form must reproduce the above copyright
201  *    notice, this list of conditions and the following disclaimer in the
202  *    documentation and/or other materials provided with the distribution.
203  * 4. Neither the name of the University nor the names of its contributors
204  *    may be used to endorse or promote products derived from this software
205  *    without specific prior written permission.
206  *
207  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
208  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
209  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
210  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
211  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
212  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
213  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
214  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
215  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
216  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
217  * SUCH DAMAGE.
218  *
219  *      @(#)mtio.h      8.1 (Berkeley) 6/2/93
220  * $FreeBSD: stable/7/sys/sys/mtio.h 139825 2005-01-07 02:29:27Z imp $
221  */
222
223 bregex.c/h
224  *
225  * Author: Tatu Ylonen <ylo@ngs.fi>
226  *
227  * Copyright (c) 1991 Tatu Ylonen, Espoo, Finland
228  *
229  * Permission to use, copy, modify, distribute, and sell this software
230  * and its documentation for any purpose is hereby granted without
231  * fee, provided that the above copyright notice appear in all copies.
232  * This software is provided "as is" without express or implied
233  * warranty.
234
235 var.c/h
236 **  OSSP var - Variable Expansion
237 **  Copyright (c) 2001-2002 Ralf S. Engelschall <rse@engelschall.com>
238 **  Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
239 **  Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
240 **
241 **  This file is part of OSSP var, a variable expansion
242 **  library which can be found at http://www.ossp.org/pkg/lib/var/.
243 **
244 **  Permission to use, copy, modify, and distribute this software for
245 **  any purpose with or without fee is hereby granted, provided that
246 **  the above copyright notice and this permission notice appear in all
247 **  copies.
248 **
249
250 lz4.c lz4_encoder.h lz4.h
251 ======
252 /*
253    LZ4 - Fast LZ compression algorithm
254    Copyright (C) 2011-2013, Yann Collet.
255    BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
256
257    Redistribution and use in source and binary forms, with or without
258    modification, are permitted provided that the following conditions are
259    met:
260
261        * Redistributions of source code must retain the above copyright
262    notice, this list of conditions and the following disclaimer.
263        * Redistributions in binary form must reproduce the above
264    copyright notice, this list of conditions and the following disclaimer
265    in the documentation and/or other materials provided with the
266    distribution.
267
268    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
269    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
270    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
271    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
272    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
273    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
274    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
275    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
276    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
277    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
278    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
279
280    You can contact the author at :
281    - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html
282    - LZ4 source repository : https://github.com/Cyan4973/lz4
283 */
284 ===
285
286 crc32.c
287 =====
288 /*
289    Bacula® - The Network Backup Solution
290
291    Copyright (c) 2010-2015, Joakim Tjernlund
292    All rights reserved.
293
294    Redistribution and use in source and binary forms, with or without
295    modification, are permitted provided that the following conditions are
296    met:
297
298    1.  Redistributions of source code must retain the above copyright
299    notice, this list of conditions and the following disclaimer.
300
301    2.  Redistributions in binary form must reproduce the above copyright
302    notice, this list of conditions and the following disclaimer in the
303    documentation and/or other materials provided with the distribution.
304
305    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
306    IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
307    TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
308    PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
309    HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
310    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
311    TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
312    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
313    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
314    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
315    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
316
317 */
318 ====