libxlsxwriter/LICENSE.txt in fast_excel-0.2.3 vs libxlsxwriter/LICENSE.txt in fast_excel-0.2.5

- old
+ new

@@ -1,9 +1,12 @@ +/** +@page license License + Libxlsxwriter is released under a FreeBSD license: - Copyright 2014-2017, John McNamara <jmcnamara@cpan.org> + Copyright 2014-2018, John McNamara <jmcnamara@cpan.org> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -29,12 +32,12 @@ The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. -Libxlsxwriter includes `queue.h` from FreeBSD and the `minizip` component of -`zlib` which have the following licenses: +Libxlsxwriter includes `queue.h` and `tree.h` from FreeBSD, the `minizip` +component of `zlib` and `tmpfileplus` which have the following licenses: Queue.h from FreeBSD: Copyright (c) 1991, 1993 @@ -63,12 +66,40 @@ 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. -Zlib has the following License/Copyright: +Tree.h from FreeBSD: + Copyright 2002 Niels Provos <provos@citi.umich.edu> + 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. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + + +The `minizip` files used in the libxlsxwriter source tree are taken from the +`zlib` ` contrib/minizip` directory. [Zlib](http://www.zlib.net) has the +following License/Copyright: + (C) 1995-2013 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -85,5 +116,35 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu + +The `minizip` files have the following additional copyright declarations: + + Copyright (C) 1998-2010 Gilles Vollant + (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) + + Modifications for Zip64 support + Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) + +Note, it is possible to compile libxlsxwriter without statically linking the +`minizip` files and instead dynamically linking to `lminizip`, see +@ref gsg_minizip. + +[Tmpfileplus](http://www.di-mgt.com.au/c_function_to_create_temp_file.html) +has the following license: + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + + Copyright (c) 2012-16 David Ireland, DI Management Services Pty Ltd + <http://www.di-mgt.com.au/contact/>. + +See the [Mozilla Public License, v. 2.0](http://mozilla.org/MPL/2.0/). + +Note, it is possible to compile libxlsxwriter using the standard library +`tmpfile()` function instead of `tmpfileplus`, see @ref gsg_tmpdir. + +Next: @ref changes +*/