Skip to content

Commit e37e774

Browse files
authored
bazel-registry: Add libcircllhist@0.3.2.envoy (#3682)
fix typo in BCR module Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent f426575 commit e37e774

File tree

6 files changed

+82
-0
lines changed

6 files changed

+82
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module(
2+
name = "libcircllhist",
3+
version = "0.3.2.envoy",
4+
bazel_compatibility = [">=7.2.1"],
5+
compatibility_level = 1,
6+
)
7+
8+
bazel_dep(name = "platforms", version = "0.0.9")
9+
bazel_dep(name = "rules_cc", version = "0.2.14")
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
load("@rules_cc//cc:defs.bzl", "cc_library")
2+
3+
licenses(["notice"]) # Apache 2
4+
5+
config_setting(
6+
name = "windows_x86_64",
7+
constraint_values = [
8+
"@platforms//os:windows",
9+
"@platforms//cpu:x86_64",
10+
],
11+
)
12+
13+
cc_library(
14+
name = "libcircllhist",
15+
srcs = ["src/circllhist.c"],
16+
hdrs = [
17+
"src/circllhist.h",
18+
],
19+
copts = select({
20+
"//:windows_x86_64": ["-DWIN32"],
21+
"//conditions:default": [],
22+
}),
23+
includes = ["src"],
24+
visibility = ["//visibility:public"],
25+
)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module(
2+
name = "libcircllhist",
3+
version = "0.3.2.envoy",
4+
bazel_compatibility = [">=7.2.1"],
5+
compatibility_level = 1,
6+
)
7+
8+
bazel_dep(name = "platforms", version = "0.0.9")
9+
bazel_dep(name = "rules_cc", version = "0.2.14")
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- ubuntu2004
5+
- macos
6+
- macos_arm64
7+
- windows
8+
tasks:
9+
verify_targets:
10+
name: Verify build targets
11+
platform: ${{ platform }}
12+
build_targets:
13+
- '@libcircllhist//:libcircllhist'
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"url": "https://github.com/openhistogram/libcircllhist/archive/refs/tags/py-0.3.2.tar.gz",
3+
"integrity": "sha256-bfvWSf3jgPeiJW3vQ7nGN0xtb+doF4sJ457t+HSxOfQ=",
4+
"strip_prefix": "libcircllhist-py-0.3.2",
5+
"overlay": {
6+
"BUILD.bazel": "sha256-6+2LkE1pKJ4ZXJXy++MW4fEBkxqzGrmKJD3f/x7lZZc=",
7+
"MODULE.bazel": "sha256-CT5Q7GelYVIpRThwxHcxCYX2/q8oLWotu07XBZvgCF0="
8+
}
9+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"homepage": "https://github.com/openhistogram/libcircllhist",
3+
"maintainers": [
4+
{
5+
"email": "maintainers@envoyproxy.io",
6+
"github": "envoyproxy",
7+
"name": "Envoy Proxy Maintainers"
8+
}
9+
],
10+
"repository": [
11+
"github:openhistogram/libcircllhist"
12+
],
13+
"versions": [
14+
"0.3.2.envoy"
15+
],
16+
"yanked_versions": {}
17+
}

0 commit comments

Comments
 (0)