Skip to content

Commit d32cc8d

Browse files
authored
Merge pull request #2054 from tweag/combined-prs-branch
Combined PRs
2 parents 67b3975 + 9b96e12 commit d32cc8d

File tree

7 files changed

+17
-63
lines changed

7 files changed

+17
-63
lines changed

buildifier/buildifier_test-workspace.patch

Lines changed: 0 additions & 37 deletions
This file was deleted.

haskell/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,10 @@ def rules_haskell_dependencies():
157157
http_archive,
158158
name = "rules_pkg",
159159
urls = [
160-
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.7.1/rules_pkg-0.7.1.tar.gz",
161-
"https://github.com/bazelbuild/rules_pkg/releases/download/0.7.1/rules_pkg-0.7.1.tar.gz",
160+
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.9.1/rules_pkg-0.9.1.tar.gz",
161+
"https://github.com/bazelbuild/rules_pkg/releases/download/0.9.1/rules_pkg-0.9.1.tar.gz",
162162
],
163-
sha256 = "451e08a4d78988c06fa3f9306ec813b836b1d076d0f055595444ba4ff22b867f",
163+
sha256 = "8f9ee2dc10c1ae514ee599a8b42ed99fa262b757058f65ad3c384289ff70c4b8",
164164
)
165165

166166
# For --incompatible_disable_starlark_host_transitions support (default in bazel 7)

non_module_dev_deps.bzl

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,9 @@ def repositories(*, bzlmod):
6666
# no modules are provided at the moment for buildifier
6767
http_archive(
6868
name = "com_github_bazelbuild_buildtools",
69-
sha256 = "42968f9134ba2c75c03bb271bd7bb062afb7da449f9b913c96e5be4ce890030a",
70-
# fix runner.bash.template always returning success, format MODULE.bazel and WORKSPACE.bzlmod too
71-
patches = ["@rules_haskell//buildifier:buildifier_test-workspace.patch"],
72-
patch_args = ["-p1"],
73-
strip_prefix = "buildtools-6.3.3",
74-
urls = ["https://github.com/bazelbuild/buildtools/archive/v6.3.3.tar.gz"],
69+
sha256 = "05c3c3602d25aeda1e9dbc91d3b66e624c1f9fdadf273e5480b489e744ca7269",
70+
strip_prefix = "buildtools-6.4.0",
71+
urls = ["https://github.com/bazelbuild/buildtools/archive/v6.4.0.tar.gz"],
7572
)
7673

7774
nixpkgs_local_repository(

rules_haskell_nix/WORKSPACE.bzlmod

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@ nixpkgs_package(
1313

1414
http_archive(
1515
name = "com_github_bazelbuild_buildtools",
16-
patch_args = ["-p1"],
17-
# fix runner.bash.template always returning success, format MODULE.bazel and WORKSPACE.bzlmod too
18-
patches = ["@rules_haskell//buildifier:buildifier_test-workspace.patch"],
19-
sha256 = "42968f9134ba2c75c03bb271bd7bb062afb7da449f9b913c96e5be4ce890030a",
20-
strip_prefix = "buildtools-6.3.3",
16+
sha256 = "05c3c3602d25aeda1e9dbc91d3b66e624c1f9fdadf273e5480b489e744ca7269",
17+
strip_prefix = "buildtools-6.4.0",
2118
urls = [
22-
"https://github.com/bazelbuild/buildtools/archive/refs/tags/v6.3.3.tar.gz",
19+
"https://github.com/bazelbuild/buildtools/archive/refs/tags/v6.4.0.tar.gz",
2320
],
2421
)

rules_haskell_tests/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ bazel_dep(
7373
)
7474
bazel_dep(
7575
name = "aspect_bazel_lib",
76-
version = "1.37.0",
76+
version = "1.38.1",
7777
)
7878
bazel_dep(
7979
name = "rules_proto",
@@ -234,7 +234,7 @@ use_repo(
234234
# Java dependencies for the //tests/java_classpath test
235235
bazel_dep(
236236
name = "rules_jvm_external",
237-
version = "5.1",
237+
version = "5.3",
238238
)
239239

240240
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")

rules_haskell_tests/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2727
# For testing if bzlmod is enabled
2828
http_archive(
2929
name = "aspect_bazel_lib",
30-
sha256 = "ce259cbac2e94a6dff01aff9455dcc844c8af141503b02a09c2642695b7b873e",
31-
strip_prefix = "bazel-lib-1.37.0",
32-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.37.0/bazel-lib-v1.37.0.tar.gz",
30+
sha256 = "262e3d6693cdc16dd43880785cdae13c64e6a3f63f75b1993c716295093d117f",
31+
strip_prefix = "bazel-lib-1.38.1",
32+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.38.1/bazel-lib-v1.38.1.tar.gz",
3333
)
3434

3535
load("@os_info//:os_info.bzl", "is_nix_shell", "is_windows")

rules_haskell_tests/non_module_deps.bzl

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,9 @@ def repositories(*, bzlmod):
6565
# no modules are provided at the moment for buildifier
6666
http_archive(
6767
name = "com_github_bazelbuild_buildtools",
68-
sha256 = "42968f9134ba2c75c03bb271bd7bb062afb7da449f9b913c96e5be4ce890030a",
69-
# fix runner.bash.template always returning success, format MODULE.bazel and WORKSPACE.bzlmod too
70-
patches = ["@rules_haskell//buildifier:buildifier_test-workspace.patch"],
71-
patch_args = ["-p1"],
72-
strip_prefix = "buildtools-6.3.3",
73-
urls = ["https://github.com/bazelbuild/buildtools/archive/v6.3.3.tar.gz"],
68+
sha256 = "05c3c3602d25aeda1e9dbc91d3b66e624c1f9fdadf273e5480b489e744ca7269",
69+
strip_prefix = "buildtools-6.4.0",
70+
urls = ["https://github.com/bazelbuild/buildtools/archive/v6.4.0.tar.gz"],
7471
)
7572

7673
http_archive(

0 commit comments

Comments
 (0)