Skip to content

Commit

Permalink
Merge pull request #8 from theteamatx/feature/remove_submodule_signed
Browse files Browse the repository at this point in the history
Rewired to public git repos, removed submodules
  • Loading branch information
mikael-s-persson authored Oct 9, 2023
2 parents c27f67d + ad8b608 commit 8a76c9d
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 19 deletions.
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
[submodule "third_party/eigenmath"]
path = third_party/eigenmath
url = https://github.com/theteamatx/x-edr-eigenmath.git
[submodule "third_party/genit"]
path = third_party/genit
url = https://github.com/theteamatx/x-edr-genit.git
26 changes: 19 additions & 7 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,29 @@ http_archive(
http_archive(
name = "eigen",
build_file = "//third_party:eigen.BUILD",
sha256 = "8586084f71f9bde545ee7fa6d00288b264a2b7ac3607b974e54d13e7162c1c72",
url = "https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz",
strip_prefix="eigen-3.4.0",
)

local_repository(
name = "genit",
path = "third_party/genit",
# GenIt
_GENIT_VERSION = "1.0.0"
http_archive(
name = "x_edr_genit",
sha256 = "ab1bbb15ecbe86c5c3888a12c56fe88fac416f2f305acaf1bbf7f68c3d429851",
strip_prefix = "x-edr-genit-%s" % _GENIT_VERSION,
urls = [
"https://github.com/theteamatx/x-edr-genit/archive/refs/tags/v%s.tar.gz" % _GENIT_VERSION,
],
)

local_repository(
name = "eigenmath",
path = "third_party/eigenmath",
# Eigenmath
_EIGENMATH_VERSION = "1.0.0"
http_archive(
name = "x_edr_eigenmath",
sha256 = "180bf186214b37190e3f26204a271d214b503b25bd22d4228d8f32e7c7151e05",
strip_prefix = "x-edr-eigenmath-%s" % _EIGENMATH_VERSION,
urls = [
"https://github.com/theteamatx/x-edr-eigenmath/archive/refs/tags/v%s.tar.gz" % _EIGENMATH_VERSION,
],
)

2 changes: 1 addition & 1 deletion eigenmath_tf2/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cc_library(
"circular_buffer.h",
],
deps = [
"@genit//genit:iterators",
"@x_edr_genit//genit:iterators",
],
)

Expand Down
1 change: 0 additions & 1 deletion third_party/eigenmath
Submodule eigenmath deleted from 708042
6 changes: 3 additions & 3 deletions third_party/eigenmath_tf2/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cc_library(
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
"@eigenmath//eigenmath",
"@x_edr_eigenmath//eigenmath",
],
)

Expand All @@ -58,9 +58,9 @@ cc_test(
srcs = ["time_cache_test.cc"],
deps = [
":eigenmath_tf2",
"@eigenmath//eigenmath",
"@eigenmath//eigenmath:matchers",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
"@x_edr_eigenmath//eigenmath",
"@x_edr_eigenmath//eigenmath:matchers",
],
)
1 change: 0 additions & 1 deletion third_party/genit
Submodule genit deleted from 542a05

0 comments on commit 8a76c9d

Please sign in to comment.