This is an automated email from the ASF dual-hosted git repository.
junchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/master by this push:
new d8b0da0d add version
d8b0da0d is described below
commit d8b0da0dc7d81f231efccc24757afa07bd31fb6f
Author: Ubuntu <[email protected]>
AuthorDate: Sun May 5 21:24:40 2024 +0000
add version
---
INSTALL_MAC.sh | 40 ----------------------------------------
LICENSE | 26 +++++++++++++-------------
repositories.bzl | 8 --------
third_party/civetweb.BUILD | 30 ------------------------------
4 files changed, 13 insertions(+), 91 deletions(-)
diff --git a/INSTALL_MAC.sh b/INSTALL_MAC.sh
deleted file mode 100644
index de1fdfc9..00000000
--- a/INSTALL_MAC.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-!/bin/sh
-
-sudo apt update
-sudo apt install g++ -y
-sudo apt install apt-transport-https curl gnupg -y
-sudo apt install protobuf-compiler -y
-
-wget
https://github.com/bazelbuild/bazelisk/releases/download/v1.8.1/bazelisk-linux-arm64
-chmod +x bazelisk-linux-arm64
-sudo mv bazelisk-linux-arm64 /usr/local/bin/bazel
-
-sudo apt install clang-format -y
-rm -rf $PWD/.git/hooks/pre-push
-ln -s $PWD/hooks/pre-push $PWD/.git/hooks/pre-push
-
-bazel build @com_github_bazelbuild_buildtools//buildifier:buildifier
-
-# for jemalloc
-sudo apt-get install autoconf automake libtool -y
-
-sudo apt install rapidjson-dev -y
diff --git a/LICENSE b/LICENSE
index d66266ab..981d17e9 100644
--- a/LICENSE
+++ b/LICENSE
@@ -224,7 +224,7 @@ MIT licenses
The following components are provided under the MIT License. See project link
for details.
The text of each license is also included in licenses/LICENSE-[project].txt
-* eEVM (https://github.com/microsoft/eEVM)
+* eEVM-118a9355d023748318a318bc07fc79063f015a94
(https://github.com/microsoft/eEVM)
================================================================
BSD-3-Clause licenses
@@ -233,10 +233,10 @@ The following components are provided under the
BSD-3-Clause License. See projec
The text of each license is also included in licenses/LICENSE-[project].txt.
-* glog (https://github.com/google/glog)
-* leveldb (https://github.com/google/leveldb)
-* gtest (https://github.com/google/googletest)
-* gflag (https://github.com/gflags/gflags)
+* glog-0.5.0 (https://github.com/google/glog)
+* leveldb-1.23 (https://github.com/google/leveldb)
+* gtest-1.13.0 (https://github.com/google/googletest)
+* gflag-2.2.2 (https://github.com/gflags/gflags)
================================================================
Public Domain
@@ -245,13 +245,13 @@ The following components are placed in the public domain.
The author hereby disclaims copyright to this source code.
See project link for details.
-* protobuf (https://github.com/protocolbuffers/protobuf)
-* snappy (https://github.com/google/snappy)
-* zlib (https://github.com/madler/zlib)
-* pybind (https://github.com/pybind/pybind11_bazel)
-* nlohmann_json (https://github.com/nlohmann/json)
-* CrowCpp (https://github.com/CrowCpp/Crow)
-* Asio (https://github.com/chriskohlhoff/asio)
+* protobuf-3.10.0 (https://github.com/protocolbuffers/protobuf)
+* snappy-1.1.9 (https://github.com/google/snappy)
+* zlib-1.2.11 (https://github.com/madler/zlib)
+* pybind-2.11.1 (https://github.com/pybind/pybind11_bazel)
+* nlohmann_json-3.9.1 (https://github.com/nlohmann/json)
+* CrowCpp-1.0-5 (https://github.com/CrowCpp/Crow)
+* Asio-1-26-0 (https://github.com/chriskohlhoff/asio)
* Prometheus-cpp (https://github.com/jupp0r/prometheus-cpp)
-* Cryptopp (https://github.com/weidai11/cryptopp)
+* Cryptopp-8-7-0 (https://github.com/weidai11/cryptopp)
diff --git a/repositories.bzl b/repositories.bzl
index 6b69cbf1..aff78ed5 100644
--- a/repositories.bzl
+++ b/repositories.bzl
@@ -73,14 +73,6 @@ def nexres_repositories():
"https://storage.googleapis.com/bazel-mirror/zlib.net/zlib-1.2.12.tar.gz",
],
)
- maybe(
- http_archive,
- name = "civetweb",
- build_file = "@com_resdb_nexres//third_party:civetweb.BUILD",
- sha256 =
"88574f0cffd6047e22fafa3bdc748dd878a4928409d4f880332e2b0f262b9f62",
- strip_prefix = "civetweb-1.15",
- url =
"https://github.com/civetweb/civetweb/archive/refs/tags/v1.15.zip",
- )
def _data_deps_extension_impl(ctx):
nexres_repositories()
diff --git a/third_party/civetweb.BUILD b/third_party/civetweb.BUILD
deleted file mode 100644
index a91b3c44..00000000
--- a/third_party/civetweb.BUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-package(default_visibility = ["//visibility:public"])
-
-cc_library(
- name = "civetweb",
- srcs = [
- "src/CivetServer.cpp",
- "src/civetweb.c",
- "src/response.inl",
- ],
- hdrs = [
- "include/CivetServer.h",
- "include/civetweb.h",
- ],
- copts = [
- "-DUSE_IPV6",
- "-DNDEBUG",
- "-DNO_CGI",
- "-DNO_CACHING",
- "-DNO_SSL",
- "-DNO_FILES",
- ],
- textual_hdrs = [
- "src/md5.inl",
- "src/handle_form.inl",
- ],
- includes = [
- "include",
- ],
- visibility = ["//visibility:public"],
-)