Blame LICENCE

Packit Service 02e2fd
PCRE2 LICENCE
Packit Service 02e2fd
-------------
Packit Service 02e2fd
Packit Service 02e2fd
PCRE2 is a library of functions to support regular expressions whose syntax
Packit Service 02e2fd
and semantics are as close as possible to those of the Perl 5 language.
Packit Service 02e2fd
Packit Service 02e2fd
Releases 10.00 and above of PCRE2 are distributed under the terms of the "BSD"
Packit Service 02e2fd
licence, as specified below, with one exemption for certain binary
Packit Service 02e2fd
redistributions. The documentation for PCRE2, supplied in the "doc" directory,
Packit Service 02e2fd
is distributed under the same terms as the software itself. The data in the
Packit Service 02e2fd
testdata directory is not copyrighted and is in the public domain.
Packit Service 02e2fd
Packit Service 02e2fd
The basic library functions are written in C and are freestanding. Also
Packit Service 02e2fd
included in the distribution is a just-in-time compiler that can be used to
Packit Service 02e2fd
optimize pattern matching. This is an optional feature that can be omitted when
Packit Service 02e2fd
the library is built.
Packit Service 02e2fd
Packit Service 02e2fd
Packit Service 02e2fd
THE BASIC LIBRARY FUNCTIONS
Packit Service 02e2fd
---------------------------
Packit Service 02e2fd
Packit Service 02e2fd
Written by:       Philip Hazel
Packit Service 02e2fd
Email local part: ph10
Packit Service 02e2fd
Email domain:     cam.ac.uk
Packit Service 02e2fd
Packit Service 02e2fd
University of Cambridge Computing Service,
Packit Service 02e2fd
Cambridge, England.
Packit Service 02e2fd
Packit Service 02e2fd
Copyright (c) 1997-2018 University of Cambridge
Packit Service 02e2fd
All rights reserved.
Packit Service 02e2fd
Packit Service 02e2fd
Packit Service 02e2fd
PCRE2 JUST-IN-TIME COMPILATION SUPPORT
Packit Service 02e2fd
--------------------------------------
Packit Service 02e2fd
Packit Service 02e2fd
Written by:       Zoltan Herczeg
Packit Service 02e2fd
Email local part: hzmester
Packit Service 02e2fd
Email domain:     freemail.hu
Packit Service 02e2fd
Packit Service 02e2fd
Copyright(c) 2010-2018 Zoltan Herczeg
Packit Service 02e2fd
All rights reserved.
Packit Service 02e2fd
Packit Service 02e2fd
Packit Service 02e2fd
STACK-LESS JUST-IN-TIME COMPILER
Packit Service 02e2fd
--------------------------------
Packit Service 02e2fd
Packit Service 02e2fd
Written by:       Zoltan Herczeg
Packit Service 02e2fd
Email local part: hzmester
Packit Service 02e2fd
Email domain:     freemail.hu
Packit Service 02e2fd
Packit Service 02e2fd
Copyright(c) 2009-2018 Zoltan Herczeg
Packit Service 02e2fd
All rights reserved.
Packit Service 02e2fd
Packit Service 02e2fd
Packit Service 02e2fd
THE "BSD" LICENCE
Packit Service 02e2fd
-----------------
Packit Service 02e2fd
Packit Service 02e2fd
Redistribution and use in source and binary forms, with or without
Packit Service 02e2fd
modification, are permitted provided that the following conditions are met:
Packit Service 02e2fd
Packit Service 02e2fd
    * Redistributions of source code must retain the above copyright notices,
Packit Service 02e2fd
      this list of conditions and the following disclaimer.
Packit Service 02e2fd
Packit Service 02e2fd
    * Redistributions in binary form must reproduce the above copyright
Packit Service 02e2fd
      notices, this list of conditions and the following disclaimer in the
Packit Service 02e2fd
      documentation and/or other materials provided with the distribution.
Packit Service 02e2fd
Packit Service 02e2fd
    * Neither the name of the University of Cambridge nor the names of any
Packit Service 02e2fd
      contributors may be used to endorse or promote products derived from this
Packit Service 02e2fd
      software without specific prior written permission.
Packit Service 02e2fd
Packit Service 02e2fd
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit Service 02e2fd
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service 02e2fd
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service 02e2fd
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Packit Service 02e2fd
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit Service 02e2fd
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit Service 02e2fd
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit Service 02e2fd
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit Service 02e2fd
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit Service 02e2fd
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit Service 02e2fd
POSSIBILITY OF SUCH DAMAGE.
Packit Service 02e2fd
Packit Service 02e2fd
Packit Service 02e2fd
EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES
Packit Service 02e2fd
------------------------------------------
Packit Service 02e2fd
Packit Service 02e2fd
The second condition in the BSD licence (covering binary redistributions) does
Packit Service 02e2fd
not apply all the way down a chain of software. If binary package A includes
Packit Service 02e2fd
PCRE2, it must respect the condition, but if package B is software that
Packit Service 02e2fd
includes package A, the condition is not imposed on package B unless it uses
Packit Service 02e2fd
PCRE2 independently.
Packit Service 02e2fd
Packit Service 02e2fd
End