From 0baea9d7df5fb7bf6594975748a7520fac58f9c4 Mon Sep 17 00:00:00 2001 From: Thomas Neil James Shadwell Date: Fri, 13 Sep 2024 19:00:17 -0700 Subject: [PATCH] Move all http_archive rules into MODULE.bazel --- MODULE.bazel | 265 ++++++++++++++++++++++++++++++++++++++++++++++++++ bzl/deps.bzl | 266 +-------------------------------------------------- 2 files changed, 266 insertions(+), 265 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 469cc6c9c4..fcdb93b304 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -119,3 +119,268 @@ use_repo( bazel_dep(name = "rules_python_gazelle_plugin", version = "0.35.0") bazel_dep(name = "aspect_rules_py", version = "0.8.0") + +http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +http_archive( + name = "com_github_factoriolab", + strip_prefix = "factoriolab-4ac80cb416e779819a73b871dd3e32ab7e0cda0c", + url = "https://github.com/factoriolab/factoriolab/archive/4ac80cb416e779819a73b871dd3e32ab7e0cda0c.zip", + build_file_content = """ +exports_files(glob(["**/*"])) + + """, +) +http_archive( + name = "io_bazel_rules_docker", + sha256 = "b1e80761a8a8243d03ebca8845e9cc1ba6c82ce7c5179ce2b295cd36f7e394bf", + strip_prefix = "rules_docker-0.25.0", + urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.25.0/rules_docker-v0.25.0.tar.gz"], +) + +http_archive( + name = "rules_proto", + sha256 = "6fb6767d1bef535310547e03247f7518b03487740c11b6c6adb7952033fe1295", + strip_prefix = "rules_proto-6.0.2", + url = "https://github.com/bazelbuild/rules_proto/archive/refs/tags/6.0.2.tar.gz", +) + +http_archive( + name = "com_google_protobuf", + sha256 = "3b8bf6e96499a744bd014c60b58f797715a758093abf859f1d902194b8e1f8c9", + strip_prefix = "protobuf-28.1", + urls = [ + "https://github.com/protocolbuffers/protobuf/archive/v28.1.tar.gz", + ], +) + +http_archive( + name = "com_google_protobuf", + sha256 = "3b8bf6e96499a744bd014c60b58f797715a758093abf859f1d902194b8e1f8c9", + strip_prefix = "protobuf-28.1", + urls = [ + "https://github.com/protocolbuffers/protobuf/archive/v28.1.tar.gz", + ], +) + +http_archive( + name = "com_github_bazelbuild_buildtools", + sha256 = "051951c10ff8addeb4f10be3b0cf474b304b2ccd675f2cc7683cdd9010320ca9", + strip_prefix = "buildtools-7.3.1", + urls = [ + "https://github.com/bazelbuild/buildtools/archive/refs/tags/v7.3.1.tar.gz", + ], +) + +http_archive( + name = "pulumi_cli_linux_x64", + sha256 = "107129c599230b3cb6624c085182099ab181f0c3f54223a34282b9703a5699fa", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-linux-x64.tar.gz", + ], + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "pulumi_cli_darwin_arm64", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-darwin-arm64.tar.gz", + ], + sha256 = "85adc24e4da345df0ed9a4848f543e180e78ac2a8ee568b42ca331a9a6607572", + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "pulumi_cli_darwin_x64", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-darwin-x64.tar.gz", + ], + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "pulumi_cli_linux_arm64", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-linux-arm64.tar.gz", + ], + sha256 = "1eeed9a9e1b5e3bb0b3eb5e7f6cb53b43dfb8710952146039b2c7ec3a5e6c1db", + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "pulumi_cli_windows_arm64", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-windows-arm64.zip", + ], + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "pulumi_cli_windows_x64", + urls = [ + "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-windows-x64.zip", + ], + build_file_content = """ +exports_files(glob(["**/*"])) +""", +) + +http_archive( + name = "cultistsimulator", + strip_prefix = "cultistsimulator-visible-2022.3.n.1", + urls = [ + "https://github.com/weatherfactory/cultistsimulator-visible/archive/refs/tags/v2022.3.n.1.tar.gz", + ], + sha256 = "c640c454db8bd2ef4b53cf00edffa959d6c6147718bafce9a43f48db286f2ea2", + build_file_content = """ +filegroup( +name = "core", +srcs = glob(["Assets/StreamingAssets/content/core/**/*.json"]), +visibility = [ "//visibility:public" ] +) +exports_files(glob(["**/*"], exclude_directories=0)) + """, + # exports_files(glob(["**/*"]), visibility=["//visibility:public"]) +) + +http_archive( + name = "rules_rust", + sha256 = "319b1c35c11204ef56b1d94a549f6b9d3532813b778f02d709ef68c837036cf1", + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.50.1/rules_rust-v0.50.1.tar.gz"], +) + +# Got no idea why but MS doesn't publish versions of this... +http_archive( + name = "microsoft_json_schemas", + url = "https://github.com/microsoft/json-schemas/archive/dfbce6a8227ec94f09ded077f5c0bfbb93570c5b.zip", + strip_prefix = "json-schemas-dfbce6a8227ec94f09ded077f5c0bfbb93570c5b", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "45a7ed2d7a8cf2bb3dbb5c3cef2ec920f2b8bac94cf649ad3f141d61301fe3fa", +) + +########## +# FFMPEG # +########## + +http_archive( + name = "ffmpeg_linux_x64", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-amd64-static.tar.xz", + strip_prefix = "ffmpeg-5.1.1-amd64-static", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "2d848c37f7f276be0262d9123a84fbfe72bb159921ffcce3bd7106f143d29f42", +) + +http_archive( + name = "ffmpeg_linux_i686", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-i686-static.tar.xz", + strip_prefix = "ffmpeg-6.0-i686-static", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "df4ff17a39758f9e3af2aafe337f2661711161ebade6b20516110ed207c6a94e", +) + +http_archive( + name = "ffmpeg_linux_arm64", + url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-arm64-static.tar.xz", + strip_prefix = "ffmpeg-5.1.1-arm64-static", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "49f9beb7690afcbd4832d3577d9f0c87374d63c39cde5097dfd52d61b24b4855", +) + +http_archive( + name = "ffmpeg_macos_x64", + url = "https://evermeet.cx/pub/ffmpeg/ffmpeg-6.0.zip", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "9a810d222862a7230fd7035c91e32beb605af7501c3517580f2bc1eb8faddacc", +) + +http_archive( + name = "ffmpeg_macos_arm64", + url = "https://www.osxexperts.net/ffmpeg6arm.zip", + build_file_content = """ +exports_files(glob(["**/*"])) + """, + sha256 = "15e67ff413d3d2436ddb3efd282344e50b8f1c6f834979b984371b90ebaf0449", +) + +chromedriver_buildfile = """ +load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin") + +copy_to_bin( +name = "in_bin", +srcs = [ "chromedriver" ], +visibility = [ "//visibility:public" ] +) +""" + +http_archive( + name = "com_googleapis_storage_chromedriver_linux_x64", + sha256 = "a7787ef8b139170cab4abfca4a0284fd5d006bfd979624b4af25b64d583a6f44", + url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_linux64.zip", + build_file_content = chromedriver_buildfile, +) + +http_archive( + name = "com_googleapis_storage_chromedriver_mac64", + sha256 = "6abdc9d358c2bc4668bef7b23048de2a9dbd3ad82cfbc6dfe322e74d4cff1650", + url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac64.zip", + build_file_content = chromedriver_buildfile, +) + +http_archive( + name = "com_googleapis_storage_chromedriver_mac_arm64", + sha256 = "14eb3a1642a829fcbc11ef22e113b2f6a2340c4f4e235e5494b414c4834fa47c", + url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac_arm64.zip", + build_file_content = chromedriver_buildfile, +) + +http_archive( + name = "com_googleapis_storage_chromedriver_win32", + sha256 = "14eb3a1642a829fcbc11ef22e113b2f6a2340c4f4e235e5494b414c4834fa47c", + url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac_arm64.zip", + build_file_content = chromedriver_buildfile, +) + +chromium_buildfile = """ +load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin") +load("@bazel_skylib//rules:native_binary.bzl", "native_binary") + +copy_to_bin( +name = "in_bin", +srcs = [ ":binary" ], +visibility = [ "//visibility:public" ] +) + +native_binary( +name = "binary", +src = "chrome-linux64/chrome", +data = glob(["**/*"], ["chrome-linux64/chrome"]), +out = "chromium" +) +""" + +http_archive( + name = "com_googleapis_storage_chromium_linux_x64", + sha256 = "cc8ae96ccba9010425abf2481ecdca343d53623151e0b4f2c180f58ec55b66a4", + url = "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/114.0.5735.90/linux64/chrome-linux64.zip", + build_file_content = chromium_buildfile, +) diff --git a/bzl/deps.bzl b/bzl/deps.bzl index 38c82bdcb9..7cb2917004 100644 --- a/bzl/deps.bzl +++ b/bzl/deps.bzl @@ -1,49 +1,8 @@ # Install the nodejs "bootstrap" package # This provides the basic tools for running and packaging nodejs programs in Bazel -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") def fetch_dependencies(): - http_archive( - name = "io_bazel_rules_docker", - sha256 = "b1e80761a8a8243d03ebca8845e9cc1ba6c82ce7c5179ce2b295cd36f7e394bf", - strip_prefix = "rules_docker-0.25.0", - urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.25.0/rules_docker-v0.25.0.tar.gz"], - ) - - http_archive( - name = "rules_proto", - sha256 = "6fb6767d1bef535310547e03247f7518b03487740c11b6c6adb7952033fe1295", - strip_prefix = "rules_proto-6.0.2", - url = "https://github.com/bazelbuild/rules_proto/archive/refs/tags/6.0.2.tar.gz", - ) - - http_archive( - name = "com_google_protobuf", - sha256 = "3b8bf6e96499a744bd014c60b58f797715a758093abf859f1d902194b8e1f8c9", - strip_prefix = "protobuf-28.1", - urls = [ - "https://github.com/protocolbuffers/protobuf/archive/v28.1.tar.gz", - ], - ) - - http_archive( - name = "com_google_protobuf", - sha256 = "3b8bf6e96499a744bd014c60b58f797715a758093abf859f1d902194b8e1f8c9", - strip_prefix = "protobuf-28.1", - urls = [ - "https://github.com/protocolbuffers/protobuf/archive/v28.1.tar.gz", - ], - ) - - http_archive( - name = "com_github_bazelbuild_buildtools", - sha256 = "051951c10ff8addeb4f10be3b0cf474b304b2ccd675f2cc7683cdd9010320ca9", - strip_prefix = "buildtools-7.3.1", - urls = [ - "https://github.com/bazelbuild/buildtools/archive/refs/tags/v7.3.1.tar.gz", - ], - ) - http_file( name = "inkscape_linux", sha256 = "b7a99b6c0ee2817706e77803643f4a6caf9e35bdec928e963c1d2ae86e5e4beb", @@ -51,226 +10,3 @@ def fetch_dependencies(): executable = True, downloaded_file_path = "bin", ) - - http_archive( - name = "pulumi_cli_linux_x64", - sha256 = "107129c599230b3cb6624c085182099ab181f0c3f54223a34282b9703a5699fa", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-linux-x64.tar.gz", - ], - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "pulumi_cli_darwin_arm64", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-darwin-arm64.tar.gz", - ], - sha256 = "85adc24e4da345df0ed9a4848f543e180e78ac2a8ee568b42ca331a9a6607572", - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "pulumi_cli_darwin_x64", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-darwin-x64.tar.gz", - ], - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "pulumi_cli_linux_arm64", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.132.0/pulumi-v3.132.0-linux-arm64.tar.gz", - ], - sha256 = "1eeed9a9e1b5e3bb0b3eb5e7f6cb53b43dfb8710952146039b2c7ec3a5e6c1db", - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "pulumi_cli_windows_arm64", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-windows-arm64.zip", - ], - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "pulumi_cli_windows_x64", - urls = [ - "https://github.com/pulumi/pulumi/releases/download/v3.59.0/pulumi-v3.59.0-windows-x64.zip", - ], - build_file_content = """ -exports_files(glob(["**/*"])) -""", - ) - - http_archive( - name = "cultistsimulator", - strip_prefix = "cultistsimulator-visible-2022.3.n.1", - urls = [ - "https://github.com/weatherfactory/cultistsimulator-visible/archive/refs/tags/v2022.3.n.1.tar.gz", - ], - sha256 = "c640c454db8bd2ef4b53cf00edffa959d6c6147718bafce9a43f48db286f2ea2", - build_file_content = """ -filegroup( - name = "core", - srcs = glob(["Assets/StreamingAssets/content/core/**/*.json"]), - visibility = [ "//visibility:public" ] -) -exports_files(glob(["**/*"], exclude_directories=0)) - """, - # exports_files(glob(["**/*"]), visibility=["//visibility:public"]) - ) - - http_archive( - name = "rules_rust", - sha256 = "319b1c35c11204ef56b1d94a549f6b9d3532813b778f02d709ef68c837036cf1", - urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.50.1/rules_rust-v0.50.1.tar.gz"], - ) - - # Got no idea why but MS doesn't publish versions of this... - http_archive( - name = "microsoft_json_schemas", - url = "https://github.com/microsoft/json-schemas/archive/dfbce6a8227ec94f09ded077f5c0bfbb93570c5b.zip", - strip_prefix = "json-schemas-dfbce6a8227ec94f09ded077f5c0bfbb93570c5b", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "45a7ed2d7a8cf2bb3dbb5c3cef2ec920f2b8bac94cf649ad3f141d61301fe3fa", - ) - - ########## - # FFMPEG # - ########## - - http_archive( - name = "ffmpeg_linux_x64", - url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-amd64-static.tar.xz", - strip_prefix = "ffmpeg-5.1.1-amd64-static", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "2d848c37f7f276be0262d9123a84fbfe72bb159921ffcce3bd7106f143d29f42", - ) - - http_archive( - name = "ffmpeg_linux_i686", - url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-i686-static.tar.xz", - strip_prefix = "ffmpeg-6.0-i686-static", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "df4ff17a39758f9e3af2aafe337f2661711161ebade6b20516110ed207c6a94e", - ) - - http_archive( - name = "ffmpeg_linux_arm64", - url = "https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-arm64-static.tar.xz", - strip_prefix = "ffmpeg-5.1.1-arm64-static", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "49f9beb7690afcbd4832d3577d9f0c87374d63c39cde5097dfd52d61b24b4855", - ) - - http_archive( - name = "ffmpeg_macos_x64", - url = "https://evermeet.cx/pub/ffmpeg/ffmpeg-6.0.zip", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "9a810d222862a7230fd7035c91e32beb605af7501c3517580f2bc1eb8faddacc", - ) - - http_archive( - name = "ffmpeg_macos_arm64", - url = "https://www.osxexperts.net/ffmpeg6arm.zip", - build_file_content = """ -exports_files(glob(["**/*"])) - """, - sha256 = "15e67ff413d3d2436ddb3efd282344e50b8f1c6f834979b984371b90ebaf0449", - ) - - chromedriver_buildfile = """ -load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin") - -copy_to_bin( - name = "in_bin", - srcs = [ "chromedriver" ], - visibility = [ "//visibility:public" ] -) - """ - - http_archive( - name = "com_googleapis_storage_chromedriver_linux_x64", - sha256 = "a7787ef8b139170cab4abfca4a0284fd5d006bfd979624b4af25b64d583a6f44", - url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_linux64.zip", - build_file_content = chromedriver_buildfile, - ) - - http_archive( - name = "com_googleapis_storage_chromedriver_mac64", - sha256 = "6abdc9d358c2bc4668bef7b23048de2a9dbd3ad82cfbc6dfe322e74d4cff1650", - url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac64.zip", - build_file_content = chromedriver_buildfile, - ) - - http_archive( - name = "com_googleapis_storage_chromedriver_mac_arm64", - sha256 = "14eb3a1642a829fcbc11ef22e113b2f6a2340c4f4e235e5494b414c4834fa47c", - url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac_arm64.zip", - build_file_content = chromedriver_buildfile, - ) - - http_archive( - name = "com_googleapis_storage_chromedriver_win32", - sha256 = "14eb3a1642a829fcbc11ef22e113b2f6a2340c4f4e235e5494b414c4834fa47c", - url = "https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac_arm64.zip", - build_file_content = chromedriver_buildfile, - ) - - chromium_buildfile = """ -load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin") -load("@bazel_skylib//rules:native_binary.bzl", "native_binary") - -copy_to_bin( - name = "in_bin", - srcs = [ ":binary" ], - visibility = [ "//visibility:public" ] -) - -native_binary( - name = "binary", - src = "chrome-linux64/chrome", - data = glob(["**/*"], ["chrome-linux64/chrome"]), - out = "chromium" -) - """ - - http_archive( - name = "com_googleapis_storage_chromium_linux_x64", - sha256 = "cc8ae96ccba9010425abf2481ecdca343d53623151e0b4f2c180f58ec55b66a4", - url = "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/114.0.5735.90/linux64/chrome-linux64.zip", - build_file_content = chromium_buildfile, - ) - - http_archive( - name = "com_github_factoriolab", - strip_prefix = "factoriolab-4ac80cb416e779819a73b871dd3e32ab7e0cda0c", - url = "https://github.com/factoriolab/factoriolab/archive/4ac80cb416e779819a73b871dd3e32ab7e0cda0c.zip", - build_file_content = """ -exports_files(glob(["**/*"])) - - """, - )