@@ -406,30 +406,35 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
406
406
407
407
----------------------------------------------------------------------
408
408
409
- The regex library (deps/regex /) is licensed under the GNU LGPL
410
- (available at the end of this file) .
409
+ The bundled PCRE implementation (deps/pcre /) is licensed under the BSD
410
+ license .
411
411
412
- Definitions for data structures and routines for the regular
413
- expression library.
412
+ Redistribution and use in source and binary forms, with or without
413
+ modification, are permitted provided that the following conditions are met:
414
414
415
- Copyright (C) 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006,2008
416
- Free Software Foundation, Inc.
417
- This file is part of the GNU C Library.
415
+ * Redistributions of source code must retain the above copyright notice,
416
+ this list of conditions and the following disclaimer.
418
417
419
- The GNU C Library is free software; you can redistribute it and/or
420
- modify it under the terms of the GNU Lesser General Public
421
- License as published by the Free Software Foundation; either
422
- version 2.1 of the License, or (at your option) any later version.
418
+ * Redistributions in binary form must reproduce the above copyright
419
+ notice, this list of conditions and the following disclaimer in the
420
+ documentation and/or other materials provided with the distribution.
423
421
424
- The GNU C Library is distributed in the hope that it will be useful,
425
- but WITHOUT ANY WARRANTY; without even the implied warranty of
426
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
427
- Lesser General Public License for more details .
422
+ * Neither the name of the University of Cambridge nor the name of Google
423
+ Inc. nor the names of their contributors may be used to endorse or
424
+ promote products derived from this software without specific prior
425
+ written permission .
428
426
429
- You should have received a copy of the GNU Lesser General Public
430
- License along with the GNU C Library; if not, write to the Free
431
- Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
432
- 02110-1301 USA.
427
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
428
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
429
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
430
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
431
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
432
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
433
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
434
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
435
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
436
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
437
+ POSSIBILITY OF SUCH DAMAGE.
433
438
434
439
----------------------------------------------------------------------
435
440
@@ -1127,3 +1132,85 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1127
1132
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1128
1133
OF THE POSSIBILITY OF SUCH DAMAGE.
1129
1134
1135
+ ----------------------------------------------------------------------
1136
+
1137
+ The xoroshiro256** implementation is licensed in the public domain:
1138
+
1139
+ Written in 2018 by David Blackman and Sebastiano Vigna (
[email protected] )
1140
+
1141
+ To the extent possible under law, the author has dedicated all copyright
1142
+ and related and neighboring rights to this software to the public domain
1143
+ worldwide. This software is distributed without any warranty.
1144
+
1145
+ See <http://creativecommons.org/publicdomain/zero/1.0/>.
1146
+
1147
+ ----------------------------------------------------------------------
1148
+
1149
+ The built-in SHA256 support (src/hash/rfc6234) is taken from RFC 6234
1150
+ under the following license:
1151
+
1152
+ Copyright (c) 2011 IETF Trust and the persons identified as
1153
+ authors of the code. All rights reserved.
1154
+
1155
+ Redistribution and use in source and binary forms, with or
1156
+ without modification, are permitted provided that the following
1157
+ conditions are met:
1158
+
1159
+ - Redistributions of source code must retain the above
1160
+ copyright notice, this list of conditions and
1161
+ the following disclaimer.
1162
+
1163
+ - Redistributions in binary form must reproduce the above
1164
+ copyright notice, this list of conditions and the following
1165
+ disclaimer in the documentation and/or other materials provided
1166
+ with the distribution.
1167
+
1168
+ - Neither the name of Internet Society, IETF or IETF Trust, nor
1169
+ the names of specific contributors, may be used to endorse or
1170
+ promote products derived from this software without specific
1171
+ prior written permission.
1172
+
1173
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
1174
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
1175
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
1176
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1177
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
1178
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1179
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1180
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1181
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1182
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1183
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
1184
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
1185
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1186
+
1187
+ ----------------------------------------------------------------------
1188
+
1189
+ The built-in git_fs_path_basename_r() function is based on the
1190
+ Android implementation, BSD licensed:
1191
+
1192
+ Copyright (C) 2008 The Android Open Source Project
1193
+ All rights reserved.
1194
+
1195
+ Redistribution and use in source and binary forms, with or without
1196
+ modification, are permitted provided that the following conditions
1197
+ are met:
1198
+ * Redistributions of source code must retain the above copyright
1199
+ notice, this list of conditions and the following disclaimer.
1200
+ * Redistributions in binary form must reproduce the above copyright
1201
+ notice, this list of conditions and the following disclaimer in
1202
+ the documentation and/or other materials provided with the
1203
+ distribution.
1204
+
1205
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1206
+ AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1207
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
1208
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
1209
+ COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
1210
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
1211
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
1212
+ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
1213
+ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1214
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
1215
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1216
+ SUCH DAMAGE.
0 commit comments