Skip to content

Commit

Permalink
Revert "Reorder protocol buffer and µpb dependencies."
Browse files Browse the repository at this point in the history
This reverts commit a0fe313.

This doesn't fix anything.
  • Loading branch information
phst committed Nov 5, 2022
1 parent ee1513a commit 10b4ba9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ go_register_toolchains(
version = "1.19.1",
)

load("@upb//bazel:workspace_deps.bzl", "upb_deps")

upb_deps()

load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

protobuf_deps()

load("@upb//bazel:workspace_deps.bzl", "upb_deps")

upb_deps()

http_archive(
name = "com_grail_bazel_compdb",
build_file = "@//:compdb.BUILD",
Expand Down
16 changes: 8 additions & 8 deletions elisp/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,20 @@ def rules_elisp_dependencies():
)
maybe(
http_archive,
name = "upb",
sha256 = "13f99a9b2591fdb6dc2997c619e0cf77655047b23fa8fd30c139ae4e8669e391",
strip_prefix = "upb-83f4988561baf5951bce6f07ddaa1cb325ba0241/",
name = "com_google_protobuf",
sha256 = "f10a175c9492847729a4eef787e85698b8f3ee83394a1a1d1d9f48f8835b74cf",
strip_prefix = "protobuf-21.6/",
urls = [
"https://github.com/protocolbuffers/upb/archive/83f4988561baf5951bce6f07ddaa1cb325ba0241.zip", # 2022-06-23
"https://github.com/protocolbuffers/protobuf/archive/refs/tags/v21.6.zip", # 2022-09-13
],
)
maybe(
http_archive,
name = "com_google_protobuf",
sha256 = "f10a175c9492847729a4eef787e85698b8f3ee83394a1a1d1d9f48f8835b74cf",
strip_prefix = "protobuf-21.6/",
name = "upb",
sha256 = "13f99a9b2591fdb6dc2997c619e0cf77655047b23fa8fd30c139ae4e8669e391",
strip_prefix = "upb-83f4988561baf5951bce6f07ddaa1cb325ba0241/",
urls = [
"https://github.com/protocolbuffers/protobuf/archive/refs/tags/v21.6.zip", # 2022-09-13
"https://github.com/protocolbuffers/upb/archive/83f4988561baf5951bce6f07ddaa1cb325ba0241.zip", # 2022-06-23
],
)
_toolchains(name = "phst_rules_elisp_toolchains")
Expand Down

0 comments on commit 10b4ba9

Please sign in to comment.