Skip to content

Commit

Permalink
DONOTMERGE: bazel: Update bazeldnf for CentOS Stream 9
Browse files Browse the repository at this point in the history
The version of bazeldnf we currently use doesn't handle
gracefully the fact that, in CentOS Stream 9, ld-linux-aarch64.so
lives under /usr/lib instead of /usr/lib64. The latter is still
used for ld-linux-x86_64.so even in CentOS Stream 9, and was used
for both in CentOS Stream 8, hence why we hadn't encountered this
limitation until now.

I'm pointing to a branch in my personal fork of bazeldnf that
contains the necessary fixes to demonstrate things, but we'll
have to wait until

  rmohr/bazeldnf#22

is merged and a new bazeldnf release is tagged before we can
merge these changes.

Signed-off-by: Andrea Bolognani <[email protected]>
  • Loading branch information
andreabolognani committed Sep 2, 2022
1 parent 593e425 commit 61ffb95
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,10 @@ http_file(

http_archive(
name = "bazeldnf",
sha256 = "c37709d05ad7eae4d32d7a525f098fd026483ada5e11cdf84d47028222796605",
strip_prefix = "bazeldnf-0.5.2",
sha256 = "788f5eed575a45bb39cae970f9eda24b9286ae2b3efbb8d5d0ade800beeb95c9",
strip_prefix = "bazeldnf-ldd-aarch64",
urls = [
"https://github.com/rmohr/bazeldnf/archive/v0.5.2.tar.gz",
"https://storage.googleapis.com/builddeps/c37709d05ad7eae4d32d7a525f098fd026483ada5e11cdf84d47028222796605",
"https://github.com/andreabolognani/bazeldnf/archive/refs/heads/ldd-aarch64.tar.gz",
],
)

Expand Down

0 comments on commit 61ffb95

Please sign in to comment.