Blame LICENSES.txt

Packit 2997f0
LICENSE
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
librdkafka - Apache Kafka C driver library
Packit 2997f0
Packit 2997f0
Copyright (c) 2012, Magnus Edenhill
Packit 2997f0
All rights reserved.
Packit 2997f0
Packit 2997f0
Redistribution and use in source and binary forms, with or without
Packit 2997f0
modification, are permitted provided that the following conditions are met: 
Packit 2997f0
Packit 2997f0
1. Redistributions of source code must retain the above copyright notice,
Packit 2997f0
   this list of conditions and the following disclaimer. 
Packit 2997f0
2. Redistributions in binary form must reproduce the above copyright notice,
Packit 2997f0
   this list of conditions and the following disclaimer in the documentation
Packit 2997f0
   and/or other materials provided with the distribution. 
Packit 2997f0
Packit 2997f0
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 2997f0
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
Packit 2997f0
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
Packit 2997f0
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
Packit 2997f0
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
Packit 2997f0
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
Packit 2997f0
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
Packit 2997f0
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
Packit 2997f0
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit 2997f0
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit 2997f0
POSSIBILITY OF SUCH DAMAGE.
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.crc32c
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
# For src/crc32c.c copied (with modifications) from
Packit 2997f0
# http://stackoverflow.com/a/17646775/1821055
Packit 2997f0
Packit 2997f0
/* crc32c.c -- compute CRC-32C using the Intel crc32 instruction
Packit 2997f0
 * Copyright (C) 2013 Mark Adler
Packit 2997f0
 * Version 1.1  1 Aug 2013  Mark Adler
Packit 2997f0
 */
Packit 2997f0
Packit 2997f0
/*
Packit 2997f0
  This software is provided 'as-is', without any express or implied
Packit 2997f0
  warranty.  In no event will the author be held liable for any damages
Packit 2997f0
  arising from the use of this software.
Packit 2997f0
Packit 2997f0
  Permission is granted to anyone to use this software for any purpose,
Packit 2997f0
  including commercial applications, and to alter it and redistribute it
Packit 2997f0
  freely, subject to the following restrictions:
Packit 2997f0
Packit 2997f0
  1. The origin of this software must not be misrepresented; you must not
Packit 2997f0
     claim that you wrote the original software. If you use this software
Packit 2997f0
     in a product, an acknowledgment in the product documentation would be
Packit 2997f0
     appreciated but is not required.
Packit 2997f0
  2. Altered source versions must be plainly marked as such, and must not be
Packit 2997f0
     misrepresented as being the original software.
Packit 2997f0
  3. This notice may not be removed or altered from any source distribution.
Packit 2997f0
Packit 2997f0
  Mark Adler
Packit 2997f0
  madler@alumni.caltech.edu
Packit 2997f0
 */
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.lz4
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
src/xxhash.[ch] src/lz4*.[ch]: git@github.com:lz4/lz4.git e2827775ee80d2ef985858727575df31fc60f1f3
Packit 2997f0
Packit 2997f0
LZ4 Library
Packit 2997f0
Copyright (c) 2011-2016, Yann Collet
Packit 2997f0
All rights reserved.
Packit 2997f0
Packit 2997f0
Redistribution and use in source and binary forms, with or without modification,
Packit 2997f0
are permitted provided that the following conditions are met:
Packit 2997f0
Packit 2997f0
* Redistributions of source code must retain the above copyright notice, this
Packit 2997f0
  list of conditions and the following disclaimer.
Packit 2997f0
Packit 2997f0
* Redistributions in binary form must reproduce the above copyright notice, this
Packit 2997f0
  list of conditions and the following disclaimer in the documentation and/or
Packit 2997f0
  other materials provided with the distribution.
Packit 2997f0
Packit 2997f0
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
Packit 2997f0
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Packit 2997f0
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 2997f0
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
Packit 2997f0
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Packit 2997f0
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Packit 2997f0
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
Packit 2997f0
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 2997f0
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit 2997f0
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.murmur2
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
parts of src/rdmurmur2.c: git@github.com:abrandoned/murmur2.git
Packit 2997f0
Packit 2997f0
Packit 2997f0
MurMurHash2 Library
Packit 2997f0
//-----------------------------------------------------------------------------
Packit 2997f0
// MurmurHash2 was written by Austin Appleby, and is placed in the public
Packit 2997f0
// domain. The author hereby disclaims copyright to this source code.
Packit 2997f0
Packit 2997f0
Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 2997f0
of this software and associated documentation files (the "Software"), to deal
Packit 2997f0
in the Software without restriction, including without limitation the rights
Packit 2997f0
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Packit 2997f0
copies of the Software, and to permit persons to whom the Software is
Packit 2997f0
furnished to do so, subject to the following conditions:
Packit 2997f0
Packit 2997f0
The above copyright notice and this permission notice shall be included in all
Packit 2997f0
copies or substantial portions of the Software.
Packit 2997f0
Packit 2997f0
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit 2997f0
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit 2997f0
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit 2997f0
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit 2997f0
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Packit 2997f0
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 2997f0
SOFTWARE.
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.pycrc
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
The following license applies to the files rdcrc32.c and rdcrc32.h which
Packit 2997f0
have been generated by the pycrc tool.
Packit 2997f0
============================================================================
Packit 2997f0
Packit 2997f0
Copyright (c) 2006-2012, Thomas Pircher <tehpeh@gmx.net>
Packit 2997f0
Packit 2997f0
Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 2997f0
of this software and associated documentation files (the "Software"), to deal
Packit 2997f0
in the Software without restriction, including without limitation the rights
Packit 2997f0
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Packit 2997f0
copies of the Software, and to permit persons to whom the Software is
Packit 2997f0
furnished to do so, subject to the following conditions:
Packit 2997f0
Packit 2997f0
The above copyright notice and this permission notice shall be included in
Packit 2997f0
all copies or substantial portions of the Software.
Packit 2997f0
Packit 2997f0
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit 2997f0
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit 2997f0
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit 2997f0
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit 2997f0
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Packit 2997f0
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
Packit 2997f0
THE SOFTWARE.
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.queue
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
For sys/queue.h:
Packit 2997f0
Packit 2997f0
 * Copyright (c) 1991, 1993
Packit 2997f0
 *	The Regents of the University of California.  All rights reserved.
Packit 2997f0
 *
Packit 2997f0
 * Redistribution and use in source and binary forms, with or without
Packit 2997f0
 * modification, are permitted provided that the following conditions
Packit 2997f0
 * are met:
Packit 2997f0
 * 1. Redistributions of source code must retain the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer.
Packit 2997f0
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer in the
Packit 2997f0
 *    documentation and/or other materials provided with the distribution.
Packit 2997f0
 * 4. Neither the name of the University nor the names of its contributors
Packit 2997f0
 *    may be used to endorse or promote products derived from this software
Packit 2997f0
 *    without specific prior written permission.
Packit 2997f0
 *
Packit 2997f0
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit 2997f0
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 2997f0
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 2997f0
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit 2997f0
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 2997f0
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit 2997f0
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 2997f0
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit 2997f0
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit 2997f0
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit 2997f0
 * SUCH DAMAGE.
Packit 2997f0
 *
Packit 2997f0
 *	@(#)queue.h	8.5 (Berkeley) 8/20/94
Packit 2997f0
 * $FreeBSD$
Packit 2997f0
Packit 2997f0
LICENSE.regexp
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
regexp.c and regexp.h from https://github.com/ccxvii/minilibs sha 875c33568b5a4aa4fb3dd0c52ea98f7f0e5ca684
Packit 2997f0
Packit 2997f0
"
Packit 2997f0
These libraries are in the public domain (or the equivalent where that is not possible). You can do anything you want with them. You have no legal obligation to do anything else, although I appreciate attribution.
Packit 2997f0
"
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.snappy
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
######################################################################
Packit 2997f0
# LICENSE.snappy covers files: snappy.c, snappy.h, snappy_compat.h   #
Packit 2997f0
# originally retrieved from http://github.com/andikleen/snappy-c     #
Packit 2997f0
# git revision 8015f2d28739b9a6076ebaa6c53fe27bc238d219              #
Packit 2997f0
######################################################################
Packit 2997f0
Packit 2997f0
The snappy-c code is under the same license as the original snappy source
Packit 2997f0
Packit 2997f0
Copyright 2011 Intel Corporation All Rights Reserved.
Packit 2997f0
Packit 2997f0
Redistribution and use in source and binary forms, with or without
Packit 2997f0
modification, are permitted provided that the following conditions are
Packit 2997f0
met:
Packit 2997f0
Packit 2997f0
    * Redistributions of source code must retain the above copyright
Packit 2997f0
notice, this list of conditions and the following disclaimer.
Packit 2997f0
    * Redistributions in binary form must reproduce the above
Packit 2997f0
copyright notice, this list of conditions and the following disclaimer
Packit 2997f0
in the documentation and/or other materials provided with the
Packit 2997f0
distribution.
Packit 2997f0
    * Neither the name of Intel Corporation nor the names of its
Packit 2997f0
contributors may be used to endorse or promote products derived from
Packit 2997f0
this software without specific prior written permission.
Packit 2997f0
Packit 2997f0
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 2997f0
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 2997f0
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 2997f0
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit 2997f0
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 2997f0
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 2997f0
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 2997f0
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 2997f0
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 2997f0
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 2997f0
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 2997f0
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.tinycthread
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
From https://github.com/tinycthread/tinycthread/README.txt c57166cd510ffb5022dd5f127489b131b61441b9
Packit 2997f0
Packit 2997f0
License
Packit 2997f0
-------
Packit 2997f0
Packit 2997f0
Copyright (c) 2012 Marcus Geelnard
Packit 2997f0
              2013-2014 Evan Nemerson
Packit 2997f0
Packit 2997f0
This software is provided 'as-is', without any express or implied
Packit 2997f0
warranty. In no event will the authors be held liable for any damages
Packit 2997f0
arising from the use of this software.
Packit 2997f0
Packit 2997f0
Permission is granted to anyone to use this software for any purpose,
Packit 2997f0
including commercial applications, and to alter it and redistribute it
Packit 2997f0
freely, subject to the following restrictions:
Packit 2997f0
Packit 2997f0
    1. The origin of this software must not be misrepresented; you must not
Packit 2997f0
    claim that you wrote the original software. If you use this software
Packit 2997f0
    in a product, an acknowledgment in the product documentation would be
Packit 2997f0
    appreciated but is not required.
Packit 2997f0
Packit 2997f0
    2. Altered source versions must be plainly marked as such, and must not be
Packit 2997f0
    misrepresented as being the original software.
Packit 2997f0
Packit 2997f0
    3. This notice may not be removed or altered from any source
Packit 2997f0
    distribution.
Packit 2997f0
Packit 2997f0
Packit 2997f0
LICENSE.wingetopt
Packit 2997f0
--------------------------------------------------------------
Packit 2997f0
For the files wingetopt.c wingetopt.h downloaded from https://github.com/alex85k/wingetopt
Packit 2997f0
Packit 2997f0
/*
Packit 2997f0
 * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
Packit 2997f0
 *
Packit 2997f0
 * Permission to use, copy, modify, and distribute this software for any
Packit 2997f0
 * purpose with or without fee is hereby granted, provided that the above
Packit 2997f0
 * copyright notice and this permission notice appear in all copies.
Packit 2997f0
 *
Packit 2997f0
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
Packit 2997f0
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
Packit 2997f0
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
Packit 2997f0
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
Packit 2997f0
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
Packit 2997f0
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Packit 2997f0
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Packit 2997f0
 *
Packit 2997f0
 * Sponsored in part by the Defense Advanced Research Projects
Packit 2997f0
 * Agency (DARPA) and Air Force Research Laboratory, Air Force
Packit 2997f0
 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
Packit 2997f0
 */
Packit 2997f0
/*-
Packit 2997f0
 * Copyright (c) 2000 The NetBSD Foundation, Inc.
Packit 2997f0
 * All rights reserved.
Packit 2997f0
 *
Packit 2997f0
 * This code is derived from software contributed to The NetBSD Foundation
Packit 2997f0
 * by Dieter Baron and Thomas Klausner.
Packit 2997f0
 *
Packit 2997f0
 * Redistribution and use in source and binary forms, with or without
Packit 2997f0
 * modification, are permitted provided that the following conditions
Packit 2997f0
 * are met:
Packit 2997f0
 * 1. Redistributions of source code must retain the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer.
Packit 2997f0
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 2997f0
 *    notice, this list of conditions and the following disclaimer in the
Packit 2997f0
 *    documentation and/or other materials provided with the distribution.
Packit 2997f0
 *
Packit 2997f0
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
Packit 2997f0
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
Packit 2997f0
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
Packit 2997f0
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
Packit 2997f0
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit 2997f0
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit 2997f0
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit 2997f0
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit 2997f0
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit 2997f0
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit 2997f0
 * POSSIBILITY OF SUCH DAMAGE.
Packit 2997f0
 */
Packit 2997f0
Packit 2997f0