COPYING revision 240116
185365SimpRedistribution terms                            Automated Testing Framework
285365Simp===========================================================================
385365Simp
485365Simp
585365SimpLicense
685365Simp*******
785365Simp
885365SimpCopyright (c) 2007, 2008, 2009, 2010, 2011, 2012 The NetBSD Foundation, Inc.
985365SimpAll rights reserved.
1085365Simp
1185365SimpRedistribution and use in source and binary forms, with or without
1285365Simpmodification, are permitted provided that the following conditions are met:
1385365Simp
1485365Simp1. Redistributions of source code must retain the above copyright notice,
1585365Simp   this list of conditions and the following disclaimer.
1685365Simp
1785365Simp2. Redistributions in binary form must reproduce the above copyright
1885365Simp   notice, this list of conditions and the following disclaimer in the
1985365Simp   documentation and/or other materials provided with the distribution.
2085365Simp
2185365SimpTHIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2285365Simp``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2385365SimpTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2485365SimpPURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2585365SimpBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2685365SimpCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2785365SimpSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2885365SimpINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2985365SimpCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3085365SimpARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3185365SimpPOSSIBILITY OF SUCH DAMAGE.
3286912Snyan
3386912Snyan
3486912SnyanCopyright 2011, 2012 Google Inc.
3586912SnyanAll rights reserved.
3686912Snyan
3786912SnyanRedistribution and use in source and binary forms, with or without
3886912Snyanmodification, are permitted provided that the following conditions are met:
3986912Snyan
4086912Snyan* Redistributions of source code must retain the above copyright
4186912Snyan  notice, this list of conditions and the following disclaimer.
4286912Snyan
4386912Snyan* Redistributions in binary form must reproduce the above copyright
4486912Snyan  notice, this list of conditions and the following disclaimer in the
4586912Snyan  documentation and/or other materials provided with the distribution.
4686912Snyan
4786912Snyan* Neither the name of Google Inc. nor the names of its contributors
4886912Snyan  may be used to endorse or promote products derived from this software
4986912Snyan  without specific prior written permission.
5086912Snyan
5186912SnyanTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5286912SnyanAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5386912SnyanIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5486912SnyanARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
5586912SnyanLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5686912SnyanCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5786912SnyanSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5886912SnyanINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5986912SnyanCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
6086912SnyanARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
6186912SnyanPOSSIBILITY OF SUCH DAMAGE.
6292739Salfred
6392739Salfred
6492739SalfredRelicensed code
6585365Simp***************
6685365Simp
6785365SimpThe following code snippets have been taken from other projects.  Even
68though they were not originally licensed under the terms above, the
69original authors have agreed to relicense their work so that this project
70can be distributed under a single license.  This section is put here just to
71clarify this fact.
72
73* configure.ac, Makefile.am: The original versions were derived from the
74  ones in the XML Catalog Manager project, version 2.2.
75
76  Author: Julio Merino <jmmv@users.sourceforge.net>
77
78* atf-c/ui.c: The format_paragraph and format_text functions were
79  derived form the ones in the Monotone project, revision
80  3a0982da308228d796df35f98d787c5cff2bb5b6.
81
82  Author: Julio Merino <jmmv@NetBSD.org>
83
84* atf-c++/detail/io.hpp, atf-c++/detail/io.cpp, atf-c++/detail/io_test.cpp:
85  These files were derived from the file_handle, systembuf, pipe and pistream
86  classes and tests found in the Boost.Process library.
87
88  Author: Julio Merino <jmmv84@gmail.com>
89
90* admin/check-style.sh, admin/check-style-common.awk,
91  admin/check-style-cpp.awk, admin/check-style-shell.awk: These files,
92  except the first one, were first implemented in the Buildtool project.
93  They were later adapted to be part of Boost.Process and, during that
94  process, the shell script was created.
95
96  Author: Julio Merino <jmmv84@gmail.com>
97
98
99===========================================================================
100vim: filetype=text:textwidth=75:expandtab:shiftwidth=2:softtabstop=2
101