SERVER-65886 delete PEG parser library

This commit is contained in:
Kyle Suarez 2022-05-04 02:12:43 +00:00 committed by Evergreen Agent
parent f462237ac1
commit f41717849f
6 changed files with 1 additions and 4074 deletions

View File

@ -38,7 +38,6 @@ a notice will be included in
| [MurmurHash3] | Public Domain | Unknown + changes | ✗ | ✗ |
| [ocspbuilder] | MIT | 0.10.2 | | |
| [ocspresponder] | Apache-2.0 | 0.5.0 | | |
| [peglib] | MIT | 0.1.12 | | ✗ |
| [Pcre] | BSD-3-Clause | 8.42 | | ✗ |
| [pcre2] | BSD-3-Clause | 10.39 | | ✗ |
| [S2] | Apache-2.0 | Unknown | ✗ | ✗ |
@ -73,7 +72,6 @@ a notice will be included in
[MurmurHash3]: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp
[ocspbuilder]: https://github.com/wbond/ocspbuilder
[ocspresponder]: https://github.com/threema-ch/ocspresponder
[peglib]: https://github.com/yhirose/cpp-peglib
[Pcre]: http://www.pcre.org/
[pcre2]: http://www.pcre.org/
[S2]: https://github.com/google/s2geometry

View File

@ -1663,32 +1663,7 @@ Copyright 2014 Diego Ongaro.
Some of our TLA+ specifications are based on the Raft TLA+ specification by Diego Ongaro.
28) License Notice for peglib
------------------------------
The MIT License (MIT)
Copyright (c) 2020 yhirose
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.
29) License Notice for libunwind
28) License Notice for libunwind
------------------------------
Permission is hereby granted, free of charge, to any person obtaining

View File

@ -333,15 +333,6 @@ components:
is_test_only: true
team_owner: "Wiredtiger"
yhirose/cpp-peglib:
homepage_url: https://github.com/yhirose/cpp-peglib
open_hub_url: N/A
release_monitoring_id: -1
local_directory_path: src/third_party/peglib
team_owner: "Query"
# Note: peglib exists in Black Duck, but not OpenHub
upgrade_suppression: TODO SERVER-57940
zlib:
homepage_url: https://www.zlib.net/
open_hub_url: https://www.openhub.net/p/zlib

View File

@ -1,22 +0,0 @@
The MIT License (MIT)
Copyright (c) 2020 yhirose
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.

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +0,0 @@
#!/bin/bash
set -o verbose
set -o errexit
# This script downloads and imports peglib.
PEGLIB_GIT_URL="https://raw.githubusercontent.com/mongodb-forks/cpp-peglib"
PEGLIB_GIT_REV=v0.1.12
PEGLIB_GIT_DIR="$(git rev-parse --show-toplevel)/src/third_party/peglib"
mkdir -p "${PEGLIB_GIT_DIR}"
wget "${PEGLIB_GIT_URL}/${PEGLIB_GIT_REV}/peglib.h" \
-O "${PEGLIB_GIT_DIR}/peglib.h"