Blame


1 a01cd914 2024-02-20 op The majority of the code is distributed under the ISC license:
2 0e4c3d62 2022-02-26 op
3 a01cd914 2024-02-20 op > Copyright (c) 2021-2024 Omar Polo <op@omarpolo.com>
4 a01cd914 2024-02-20 op >
5 a01cd914 2024-02-20 op > 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.
6 a01cd914 2024-02-20 op >
7 a01cd914 2024-02-20 op > 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.
8 0e4c3d62 2022-02-26 op
9 a01cd914 2024-02-20 op with some parts available as Public Domain software:
10 0e4c3d62 2022-02-26 op
11 a01cd914 2024-02-20 op > This is free and unencumbered software released into the public domain.
12 a01cd914 2024-02-20 op >
13 a01cd914 2024-02-20 op > Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
14 a01cd914 2024-02-20 op >
15 a01cd914 2024-02-20 op > In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
16 a01cd914 2024-02-20 op >
17 a01cd914 2024-02-20 op > 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 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.
18 0e4c3d62 2022-02-26 op
19 a01cd914 2024-02-20 op Telescope also includes code which is subject to the following copyrights. These people probably don't know their code is being re-used here, wonders of free/open source software.
20 a01cd914 2024-02-20 op
21 a01cd914 2024-02-20 op * compat/asprintf.c and compat/setproctitle.c
22 a01cd914 2024-02-20 op > Copyright (c) 2006 Nicholas Marriott <nicholas.marriott@gmail.com>
23 0e4c3d62 2022-02-26 op >
24 0e4c3d62 2022-02-26 op > 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.
25 0e4c3d62 2022-02-26 op >
26 a01cd914 2024-02-20 op > 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 MIND, 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.
27 a01cd914 2024-02-20 op
28 a01cd914 2024-02-20 op * compat/explicit_bzero.c
29 a01cd914 2024-02-20 op > Public domain.
30 a01cd914 2024-02-20 op > Written by Matthew Dempsky.
31 a01cd914 2024-02-20 op
32 a01cd914 2024-02-20 op * compat/fmt_scaled.c
33 a01cd914 2024-02-20 op > Copyright (c) 2001, 2002, 2003 Ian F. Darwin. All rights reserved.
34 a01cd914 2024-02-20 op >
35 a01cd914 2024-02-20 op > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
36 a01cd914 2024-02-20 op >
37 a01cd914 2024-02-20 op > 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
38 a01cd914 2024-02-20 op > 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.
39 a01cd914 2024-02-20 op > 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
40 a01cd914 2024-02-20 op >
41 a01cd914 2024-02-20 op > THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
42 a01cd914 2024-02-20 op
43 a01cd914 2024-02-20 op * compat/imsg-buffer.c, compat/imsg.c and compat/imsg.h
44 a01cd914 2024-02-20 op > Copyright (c) 2023 Claudio Jeker <claudio@openbsd.org>
45 a01cd914 2024-02-20 op > Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org>
46 a01cd914 2024-02-20 op > Copyright (c) 2006, 2007, 2008 Reyk Floeter <reyk@openbsd.org>
47 a01cd914 2024-02-20 op > Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
48 a01cd914 2024-02-20 op >
49 a01cd914 2024-02-20 op > 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.
50 a01cd914 2024-02-20 op >
51 0e4c3d62 2022-02-26 op > 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.
52 0e4c3d62 2022-02-26 op
53 a01cd914 2024-02-20 op * compat/memmem.c
54 a01cd914 2024-02-20 op > Copyright (c) 2005-2020 Rich Felker, et al.
55 a01cd914 2024-02-20 op >
56 a01cd914 2024-02-20 op > 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:
57 a01cd914 2024-02-20 op >
58 a01cd914 2024-02-20 op > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
59 a01cd914 2024-02-20 op >
60 a01cd914 2024-02-20 op > 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.
61 0e4c3d62 2022-02-26 op
62 a01cd914 2024-02-20 op * compat/ohash.c and compat/ohash.h
63 a01cd914 2024-02-20 op > Copyright (c) 1999, 2004 Marc Espie <espie@openbsd.org>
64 a01cd914 2024-02-20 op >
65 a01cd914 2024-02-20 op > 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.
66 a01cd914 2024-02-20 op >
67 a01cd914 2024-02-20 op > 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.
68 0e4c3d62 2022-02-26 op
69 c62bfb23 2024-02-23 op * compat/queue.h, compat/strcasestr.c, compat/strsep.c and a few macros in compat.h
70 a01cd914 2024-02-20 op > Copyright (c) 1991, 1993
71 a01cd914 2024-02-20 op > The Regents of the University of California. All rights reserved.
72 a01cd914 2024-02-20 op >
73 a01cd914 2024-02-20 op > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
74 a01cd914 2024-02-20 op > 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
75 a01cd914 2024-02-20 op > 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.
76 a01cd914 2024-02-20 op > 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.
77 a01cd914 2024-02-20 op >
78 a01cd914 2024-02-20 op > 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.
79 0e4c3d62 2022-02-26 op
80 a01cd914 2024-02-20 op * compat/reallocarray.c and compat/recallocarray.c
81 a01cd914 2024-02-20 op > Copyright (c) 2008 Otto Moerbeek <otto@drijf.net>
82 a01cd914 2024-02-20 op >
83 a01cd914 2024-02-20 op > 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.
84 a01cd914 2024-02-20 op >
85 a01cd914 2024-02-20 op > 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.
86 0e4c3d62 2022-02-26 op
87 a01cd914 2024-02-20 op * compat/strlcat.c and compat/strcpy.c
88 a01cd914 2024-02-20 op > Copyright (c) 1998, 2015 Todd C. Miller <millert@openbsd.org>
89 a01cd914 2024-02-20 op >
90 a01cd914 2024-02-20 op > 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.
91 a01cd914 2024-02-20 op >
92 a01cd914 2024-02-20 op > 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.
93 0e4c3d62 2022-02-26 op
94 a01cd914 2024-02-20 op * compat/strtonum.c
95 a01cd914 2024-02-20 op > Copyright (c) 2004 Ted Unangst and Todd Miller
96 a01cd914 2024-02-20 op > All rights reserved.
97 a01cd914 2024-02-20 op >
98 a01cd914 2024-02-20 op > 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.
99 a01cd914 2024-02-20 op >
100 a01cd914 2024-02-20 op > 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.
101 a01cd914 2024-02-20 op
102 a01cd914 2024-02-20 op * data/emoji.txt
103 a01cd914 2024-02-20 op > Copyright © 1991-2024 Unicode, Inc.
104 a01cd914 2024-02-20 op >
105 a01cd914 2024-02-20 op > NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
106 a01cd914 2024-02-20 op >
107 a01cd914 2024-02-20 op > Permission is hereby granted, free of charge, to any person obtaining a copy of data files and any associated documentation (the "Data Files") or software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that either (a) this copyright and permission notice appear with all copies of the Data Files or Software, or (b) this copyright and permission notice appear in associated Documentation.
108 a01cd914 2024-02-20 op >
109 a01cd914 2024-02-20 op > THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS.
110 a01cd914 2024-02-20 op >
111 a01cd914 2024-02-20 op > IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA FILES OR SOFTWARE.
112 a01cd914 2024-02-20 op >
113 a01cd914 2024-02-20 op > Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder.
114 a01cd914 2024-02-20 op
115 a01cd914 2024-02-20 op * libgrapheme
116 a01cd914 2024-02-20 op > Copyright 2019-2022 Laslo Hunhold <dev@frign.de>
117 a01cd914 2024-02-20 op >
118 a01cd914 2024-02-20 op > Permission to use, copy, modify, and/or 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.
119 a01cd914 2024-02-20 op >
120 a01cd914 2024-02-20 op > 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.
121 a01cd914 2024-02-20 op
122 a01cd914 2024-02-20 op * part of utf8.c
123 a01cd914 2024-02-20 op > Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
124 a01cd914 2024-02-20 op >
125 a01cd914 2024-02-20 op > 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:
126 a01cd914 2024-02-20 op >
127 a01cd914 2024-02-20 op > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
128 a01cd914 2024-02-20 op >
129 a01cd914 2024-02-20 op > 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.