Skip to content

Commit

Permalink
Drop support for Emacs 28
Browse files Browse the repository at this point in the history
  • Loading branch information
phst committed Feb 23, 2025
1 parent 2588528 commit a5c2916
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 37 deletions.
22 changes: 0 additions & 22 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,6 @@ use_repo(cc_configure, "local_config_cc", "local_config_cc_toolchains")
# Non-module dependencies
emacs_repository = use_repo_rule("//elisp/private:emacs_repository.bzl", "emacs_repository")

emacs_repository(
name = "gnu_emacs_28.2",
integrity = "sha256-7iEYIjPvMjLcl7SGry2G4UBC27ZbvFNd9WLDqFgjJIg=",
mode = "source",
output = "emacs.tar.xz",
path = "/emacs/emacs-28.2.tar.xz",
strip_prefix = "emacs-28.2",
)

emacs_repository(
name = "gnu_emacs_windows_28.2",
integrity = "sha384-tUs1Z43gBYwoXJS9/dvv+ObDS7AWC4dQ4ceAAvlWOrHwjf667bGu+4d48UEuapxp",
mode = "release",
output = "emacs.zip",
path = "/emacs/windows/emacs-28/emacs-28.2.zip",
strip_prefix = "emacs-28.2",
target_compatible_with = [
"@platforms//os:windows",
"@platforms//cpu:x86_64",
],
)

emacs_repository(
name = "gnu_emacs_29.4",
integrity = "sha384-1LIwxBtAr9RzK3VJ359OfOh/PN83fyfl7uckmMw+Z0mKabbOOsvy00PhXvm5wJtf",
Expand Down
2 changes: 1 addition & 1 deletion check.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function Run-Tests {
}

# All potentially supported Emacs versions.
$versions = '28.2', '29.4', '30.1'
$versions = '29.4', '30.1'

$VerbosePreference = 'Continue'

Expand Down
5 changes: 0 additions & 5 deletions elisp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,6 @@ elisp_toolchain(
use_default_shell_env = True,
)

elisp_toolchain(
name = "emacs_28.2",
emacs = "//emacs:emacs_28.2",
)

elisp_toolchain(
name = "emacs_29.4",
emacs = "//emacs:emacs_29.4",
Expand Down
9 changes: 0 additions & 9 deletions emacs/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,6 @@ alias(
visibility = ["//visibility:public"],
)

alias(
name = "emacs_28.2",
actual = select({
"@platforms//os:windows": "@gnu_emacs_windows_28.2//:emacs",
"//conditions:default": "@gnu_emacs_28.2//:emacs",
}),
visibility = ["//visibility:public"],
)

alias(
name = "emacs_29.4",
actual = select({
Expand Down

0 comments on commit a5c2916

Please sign in to comment.