emacs: default to +tls true (#37038)

* emacs: default to +tls true
* Add myself as a maintainer for emacs pkg
This commit is contained in:
Alec Scott 2023-04-20 15:53:11 -07:00 committed by GitHub
parent d5c549f1e6
commit 5c5f3c00a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,8 @@ class Emacs(AutotoolsPackage, GNUMirrorPackage):
git = "git://git.savannah.gnu.org/emacs.git"
gnu_mirror_path = "emacs/emacs-24.5.tar.gz"
maintainers("alecbcs")
version("master", branch="master")
version("28.2", sha256="a6912b14ef4abb1edab7f88191bfd61c3edd7085e084de960a4f86485cb7cad8")
version("28.1", sha256="1439bf7f24e5769f35601dbf332e74dfc07634da6b1e9500af67188a92340a28")
@ -35,7 +37,7 @@ class Emacs(AutotoolsPackage, GNUMirrorPackage):
values=("gtk", "athena"),
description="Select an X toolkit (gtk, athena)",
)
variant("tls", default=False, description="Build Emacs with gnutls")
variant("tls", default=True, description="Build Emacs with gnutls")
variant("native", default=False, when="@28:", description="enable native compilation of elisp")
variant("treesitter", default=False, when="@29:", description="Build with tree-sitter support")
variant("json", default=False, when="@27:", description="Build with json support")