Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
477 changes: 477 additions & 0 deletions LICENSE-binary

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions NOTICE-binary
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Apache Cloudberry (Incubating)
Copyright 2024-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).

--------------------------------------------------------------------------------
The binary convenience packages bundle the following Apache Software
Foundation product, whose NOTICE contents are reproduced here as required
by section 4(d) of the Apache License, Version 2.0.

Apache Xerces-C++ 3.3.0 (lib/libxerces-c.so, lib/libxerces-c-3.3.so)
RPM packages only; DEB packages link against the libxerces-c provided by
the distribution.

=========================================================================
== NOTICE file corresponding to section 4(d) of the Apache License, ==
== Version 2.0, in this case for the Apache Xerces distribution. ==
=========================================================================

This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).

Portions of this software were originally based on the following:
- software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
19 changes: 15 additions & 4 deletions devops/build/packaging/deb/ubuntu22.04/rules
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,23 @@ gpinstall:
else \
echo "Build staging directory already populated, skipping copy."; \
fi
# Copy Apache compliance files into the build staging directory
cp -a LICENSE NOTICE DISCLAIMER ${DEBIAN_DESTINATION}/
cp -a licenses ${DEBIAN_DESTINATION}/
# Copy Apache compliance files into the build staging directory.
#
# The binary packages ship the -binary variants, which describe what is
# actually inside the package rather than what is in the source release:
# they cover the components downloaded and built during packaging
# (psutil, PyYAML, PyGreSQL) and omit components that only tests or
# other platforms use. They are installed under their plain names so
# that the package contains a LICENSE, a NOTICE and a licenses/
# directory that describe the package itself.
cp -a LICENSE-binary ${DEBIAN_DESTINATION}/LICENSE
cp -a NOTICE-binary ${DEBIAN_DESTINATION}/NOTICE
cp -a DISCLAIMER ${DEBIAN_DESTINATION}/
rm -rf ${DEBIAN_DESTINATION}/licenses
cp -a licenses-binary ${DEBIAN_DESTINATION}/licenses
# Create debian/copyright for Debian policy compliance
mkdir -p $(shell pwd)/debian
cat LICENSE NOTICE > $(shell pwd)/debian/copyright
cat LICENSE-binary NOTICE-binary > $(shell pwd)/debian/copyright

override_dh_auto_install: gpinstall
# the staging directory for creating a debian is NOT the right GPHOME.
Expand Down
19 changes: 15 additions & 4 deletions devops/build/packaging/deb/ubuntu24.04/rules
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,23 @@ gpinstall:
else \
echo "Build staging directory already populated, skipping copy."; \
fi
# Copy Apache compliance files into the build staging directory
cp -a LICENSE NOTICE DISCLAIMER ${DEBIAN_DESTINATION}/
cp -a licenses ${DEBIAN_DESTINATION}/
# Copy Apache compliance files into the build staging directory.
#
# The binary packages ship the -binary variants, which describe what is
# actually inside the package rather than what is in the source release:
# they cover the components downloaded and built during packaging
# (psutil, PyYAML, PyGreSQL) and omit components that only tests or
# other platforms use. They are installed under their plain names so
# that the package contains a LICENSE, a NOTICE and a licenses/
# directory that describe the package itself.
cp -a LICENSE-binary ${DEBIAN_DESTINATION}/LICENSE
cp -a NOTICE-binary ${DEBIAN_DESTINATION}/NOTICE
cp -a DISCLAIMER ${DEBIAN_DESTINATION}/
rm -rf ${DEBIAN_DESTINATION}/licenses
cp -a licenses-binary ${DEBIAN_DESTINATION}/licenses
# Create debian/copyright for Debian policy compliance
mkdir -p $(shell pwd)/debian
cat LICENSE NOTICE > $(shell pwd)/debian/copyright
cat LICENSE-binary NOTICE-binary > $(shell pwd)/debian/copyright

override_dh_auto_install: gpinstall
# the staging directory for creating a debian is NOT the right GPHOME.
Expand Down
31 changes: 21 additions & 10 deletions devops/build/packaging/rpm/build-rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,21 +141,32 @@ else
echo "Warning: Source spec file not found at $SOURCE_SPEC_FILE, assuming it is already in ~/rpmbuild/SPECS/"
fi

# Copy Apache mandatory compliance files to rpmbuild/SOURCES
# Copy Apache mandatory compliance files to rpmbuild/SOURCES.
#
# The binary packages ship the -binary variants, which describe what is
# actually inside the package rather than what is in the source release:
# they cover the components downloaded and built during packaging (psutil,
# PyYAML, PyGreSQL) and the bundled Xerces-C, and they omit components that
# only tests or other platforms use. They are installed under their plain
# names so that the package contains a LICENSE, a NOTICE and a licenses/
# directory that describe the package itself.
echo "Copying compliance files from $PROJECT_ROOT to ~/rpmbuild/SOURCES..."
for f in LICENSE NOTICE DISCLAIMER; do
if [ -f "$PROJECT_ROOT/$f" ]; then
cp -af "$PROJECT_ROOT/$f" ~/rpmbuild/SOURCES/
else
echo "Warning: $f not found in $PROJECT_ROOT"
for mapping in "LICENSE-binary:LICENSE" "NOTICE-binary:NOTICE" "DISCLAIMER:DISCLAIMER"; do
src="${mapping%%:*}"
dst="${mapping##*:}"
if [ ! -f "$PROJECT_ROOT/$src" ]; then
echo "Error: required compliance file $src not found in $PROJECT_ROOT"
exit 1
fi
cp -af "$PROJECT_ROOT/$src" ~/rpmbuild/SOURCES/"$dst"
done

if [ -d "$PROJECT_ROOT/licenses" ]; then
cp -af "$PROJECT_ROOT/licenses" ~/rpmbuild/SOURCES/
else
echo "Warning: licenses directory not found in $PROJECT_ROOT"
if [ ! -d "$PROJECT_ROOT/licenses-binary" ]; then
echo "Error: required licenses-binary directory not found in $PROJECT_ROOT"
exit 1
fi
rm -rf ~/rpmbuild/SOURCES/licenses
cp -af "$PROJECT_ROOT/licenses-binary" ~/rpmbuild/SOURCES/licenses

# Check if the spec file exists at the target location before proceeding
if [ ! -f "$SPEC_FILE" ]; then
Expand Down
23 changes: 23 additions & 0 deletions licenses-binary/LICENSE-boost.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
26 changes: 26 additions & 0 deletions licenses-binary/LICENSE-bsd3-sha2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Copyright (c) 2000-2001, Aaron D. Gifford
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.
3. Neither the name of the copyright holder nor the names of contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``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 OR CONTRIBUTOR(S) 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.
28 changes: 28 additions & 0 deletions licenses-binary/LICENSE-bsd3-snprintf.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Copyright (c) 1983, 1995, 1996 Eric P. Allman
Copyright (c) 1988, 1993
The Regents of the University of California. All rights reserved.
Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group

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.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
29 changes: 29 additions & 0 deletions licenses-binary/LICENSE-bsd3-wstrcmp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Copyright (c) 1990, 1993
The Regents of the University of California. All rights reserved.

This code is derived from software contributed to Berkeley by
Chris Torek.

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.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
28 changes: 28 additions & 0 deletions licenses-binary/LICENSE-bsd3-wstrncmp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Copyright (c) 1989, 1993
The Regents of the University of California. All rights reserved.

This code is derived from FreeBSD 2.2.1-RELEASE software.

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.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
7 changes: 7 additions & 0 deletions licenses-binary/LICENSE-citusdata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright (c) 2015, Citus Data

Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies.

IN NO EVENT SHALL CITUS DATA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF CITUS DATA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

CITUS DATA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND CITUS DATA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
31 changes: 31 additions & 0 deletions licenses-binary/LICENSE-diskquota.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Copyright (c) 2004-2020 Pivotal Software, Inc.
Copyright (c) 2020-Present VMware, Inc. or its affiliates

diskquota is licensed under the PostgreSQL license, the same license
as PostgreSQL. It contains parts of PostgreSQL source code. A copy of
the license is below:

--------------
PostgreSQL Database Management System
(formerly known as Postgres, then as Postgres95)

Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group

Portions Copyright (c) 1994, The Regents of the University of California

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose, without fee, and without a written agreement
is hereby granted, provided that the above copyright notice and this
paragraph and the following two paragraphs appear in all copies.

IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22 changes: 22 additions & 0 deletions licenses-binary/LICENSE-http-parser.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Based on src/http/ngx_http_parse.c from NGINX copyright Igor Sysoev

Additional changes are licensed under the same terms as NGINX and
copyright Joyent, Inc. and other Node contributors. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
21 changes: 21 additions & 0 deletions licenses-binary/LICENSE-ini.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2015 rxi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 14 additions & 0 deletions licenses-binary/LICENSE-isc.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
Copyright (c) 1996,1999 by Internet Software Consortium.

Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
12 changes: 12 additions & 0 deletions licenses-binary/LICENSE-orafce.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Copyright (C) 2008-2023 by Pavel Stehule <pavel.stehule@gmail.com>

Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
Loading
Loading