anki/defs.bzl

73 lines
2.1 KiB
Python
Raw Normal View History

load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
load("@bazel_skylib//lib:versions.bzl", "versions")
load("@rules_rust//rust:repositories.bzl", "rust_repositories")
load("@ankidesktop//cargo:crates.bzl", "raze_fetch_remote_crates")
2021-10-18 11:50:40 +02:00
load("//python:python.bzl", "setup_local_python")
load("//proto:protobuf.bzl", "setup_protobuf_binary")
2021-10-15 15:19:43 +02:00
load("//proto:clang_format.bzl", "setup_clang_format")
load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install")
load("@io_bazel_rules_sass//:defs.bzl", "sass_repositories")
load("//python/pyqt:defs.bzl", "install_pyqt")
2021-10-15 07:50:47 +02:00
load("@rules_python//python:pip.bzl", "pip_parse")
2021-10-26 06:14:20 +02:00
anki_version = "2.1.50"
def setup_deps():
bazel_skylib_workspace()
versions.check(minimum_bazel_version = "3.7.0")
rust_repositories(
2021-11-18 11:51:10 +01:00
edition = "2021",
include_rustc_srcs = False,
version = "1.58.1",
)
raze_fetch_remote_crates()
setup_local_python(name = "python")
setup_protobuf_binary(name = "com_google_protobuf")
setup_clang_format(name = "clang_format")
native.register_toolchains("@python//:python3_toolchain")
2021-10-15 07:50:47 +02:00
pip_parse(
name = "py_deps",
2021-10-18 11:50:40 +02:00
requirements_lock = "@ankidesktop//python:requirements.txt",
2021-10-15 07:50:47 +02:00
python_interpreter_target = "@python//:python",
extra_pip_args = ["--require-hashes"],
)
install_pyqt(
name = "pyqt6",
python_runtime = "@python//:python",
requirements = "//python/pyqt:6_2/requirements.txt",
)
install_pyqt(
name = "pyqt515",
python_runtime = "@python//:python",
requirements = "//python/pyqt:5_15/requirements.txt",
)
install_pyqt(
name = "pyqt514",
2021-10-05 01:41:26 +02:00
python_runtime = "@python//:python",
requirements = "//python/pyqt:5_14/requirements.txt",
2021-10-05 01:41:26 +02:00
)
node_repositories(
package_json = ["@ankidesktop//:package.json"],
2022-02-25 07:19:26 +01:00
node_version = "16.13.2",
)
yarn_install(
name = "npm",
package_json = "@ankidesktop//:package.json",
yarn_lock = "@ankidesktop//:yarn.lock",
)
sass_repositories()