COPYING 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Copyright 2015 Hammer and Chisel, Inc.
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.
  11. Acknowledgements:
  12. erlpack/_unpacker.pyx, erlpack/types.py:
  13. Based on work by Samuel Stauffer in python-erlastic
  14. (https://github.com/samuel/python-erlastic/blob/master/erlastic/codec.py)
  15. Copyright (c) 2009-2013 Samuel Stauffer <samuel@descolada.com>
  16. All rights reserved.
  17. Redistribution and use in source and binary forms, with or without modification,
  18. are permitted provided that the following conditions are met:
  19. 1. Redistributions of source code must retain the above copyright notice,
  20. this list of conditions and the following disclaimer.
  21. 2. Redistributions in binary form must reproduce the above copyright
  22. notice, this list of conditions and the following disclaimer in the
  23. documentation and/or other materials provided with the distribution.
  24. 3. Neither the name of Samuel Stauffer nor the names of its contributors may be used
  25. to endorse or promote products derived from this software without
  26. specific prior written permission.
  27. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  28. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  29. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  30. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  31. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  32. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  33. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  34. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  35. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  36. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. erlpack/sysdep.h:
  38. Based on work by FURUHASHI Sadayuki in msgpack-python
  39. (https://github.com/msgpack/msgpack-python)
  40. Copyright (C) 2008-2010 FURUHASHI Sadayuki
  41. Licensed under the Apache License, Version 2.0 (the "License").
  42. zlib:
  43. version 1.2.8, April 28th, 2013
  44. Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
  45. This software is provided 'as-is', without any express or implied
  46. warranty. In no event will the authors be held liable for any damages
  47. arising from the use of this software.
  48. Permission is granted to anyone to use this software for any purpose,
  49. including commercial applications, and to alter it and redistribute it
  50. freely, subject to the following restrictions:
  51. 1. The origin of this software must not be misrepresented; you must not
  52. claim that you wrote the original software. If you use this software
  53. in a product, an acknowledgment in the product documentation would be
  54. appreciated but is not required.
  55. 2. Altered source versions must be plainly marked as such, and must not be
  56. misrepresented as being the original software.
  57. 3. This notice may not be removed or altered from any source distribution.
  58. Jean-loup Gailly Mark Adler
  59. jloup@gzip.org madler@alumni.caltech.edu