Skip to content

Commit

Permalink
fix: fix foonathan_memory include path
Browse files Browse the repository at this point in the history
add "include/foonathan_memory" include path instead of "include"
  • Loading branch information
daohu527 committed Jul 14, 2024
1 parent 083b7d4 commit 8f65952
Show file tree
Hide file tree
Showing 8 changed files with 91 additions and 8 deletions.
10 changes: 10 additions & 0 deletions modules/foonathan_memory/0.7.3.bcr.1/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module(
name = "foonathan_memory",
version = "0.7.3.bcr.1",
compatibility_level = 1,
)

bazel_dep(
name = "rules_foreign_cc",
version = "0.10.1",
)
35 changes: 35 additions & 0 deletions modules/foonathan_memory/0.7.3.bcr.1/patches/add_build_file.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
diff --git BUILD.bazel BUILD.bazel
new file mode 100644
index 0000000..cf703cd
--- /dev/null
+++ BUILD.bazel
@@ -0,0 +1,29 @@
+""" Builds foonathan_memory.
+"""
+
+load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake")
+
+filegroup(
+ name = "all_srcs",
+ srcs = glob(["**"]),
+)
+
+cache_entries = {
+ "CMAKE_POSITION_INDEPENDENT_CODE": "ON", # Must be set!
+ "BUILD_SHARED_LIBS": "OFF",
+ # foonathan_memory specific options.
+ "FOONATHAN_MEMORY_BUILD_EXAMPLES": "OFF",
+ "FOONATHAN_MEMORY_BUILD_TESTS": "OFF",
+}
+
+cmake(
+ name = "foonathan_memory",
+ build_args = [
+ "--",
+ "-j4",
+ ],
+ cache_entries = cache_entries,
+ lib_source = ":all_srcs",
+ lib_name = "libfoonathan_memory-0.7.3",
+ visibility = ["//visibility:public"],
+)
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
diff --git MODULE.bazel MODULE.bazel
new file mode 100644
index 0000000..362cdcd
--- /dev/null
+++ MODULE.bazel
@@ -0,0 +1,10 @@
+module(
+ name = "foonathan_memory",
+ version = "0.7.3.bcr.1",
+ compatibility_level = 1,
+)
+
+bazel_dep(
+ name = "rules_foreign_cc",
+ version = "0.10.1",
+)
13 changes: 13 additions & 0 deletions modules/foonathan_memory/0.7.3.bcr.1/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
# - macos_arm64
# - windows
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
build_targets:
- '@foonathan_memory//:foonathan_memory'
10 changes: 10 additions & 0 deletions modules/foonathan_memory/0.7.3.bcr.1/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"url": "https://github.com/foonathan/memory/archive/refs/tags/v0.7-3.tar.gz",
"integrity": "sha256-QgPRXbIqlKOXjusa+1mjfTXFfA8UhzPw8aU6YoHLdN0=",
"strip_prefix": "memory-0.7-3",
"patch_strip": 0,
"patches": {
"add_build_file.patch": "sha256-3E5tTlWOtN3MR5BuTgykSkgwV6Bh5qogxI8bMMagmxY=",
"module_dot_bazel.patch": "sha256-Vil9DymRxv47rWW3FJSFkyjwEDJ39kALv/Tf78S/4iM="
}
}
10 changes: 4 additions & 6 deletions modules/foonathan_memory/0.7.3/patches/add_build_file.patch
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
diff --git BUILD.bazel BUILD.bazel
new file mode 100644
index 0000000..cf703cd
--- /dev/null
+++ BUILD.bazel
@@ -0,0 +1,29 @@
@@ -0,0 +1,30 @@
+""" Builds foonathan_memory.
+"""
+
Expand All @@ -23,13 +20,14 @@ index 0000000..cf703cd
+}
+
+cmake(
+ name = "foonathan_memory",
+ name = "foonathan_memory_139",
+ build_args = [
+ "--",
+ "-j4",
+ ],
+ cache_entries = cache_entries,
+ lib_source = ":all_srcs",
+ lib_name = "libfoonathan_memory-0.7.3",
+ visibility = ["//visibility:public"],
+ out_include_dir = "include/foonathan_memory",
+ visibility = ["//visibility:public"]
+)
2 changes: 1 addition & 1 deletion modules/foonathan_memory/0.7.3/source.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"strip_prefix": "memory-0.7-3",
"patch_strip": 0,
"patches": {
"add_build_file.patch": "sha256-3E5tTlWOtN3MR5BuTgykSkgwV6Bh5qogxI8bMMagmxY=",
"add_build_file.patch": "sha256-BgMwUReB5K1RF5z8/Tqf787mb3rkHIbH55RpSswt8z8=",
"module_dot_bazel.patch": "sha256-6zvz86XsNVF3LalsXNUKohCKqrvrbo21TF9W071FVvY="
}
}
3 changes: 2 additions & 1 deletion modules/foonathan_memory/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"github:foonathan/memory"
],
"versions": [
"0.7.3"
"0.7.3",
"0.7.3.bcr.1"
],
"yanked_versions": {}
}

0 comments on commit 8f65952

Please sign in to comment.