summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAlec Scott <hi@alecbcs.com>2023-04-20 15:53:11 -0700
committerGitHub <noreply@github.com>2023-04-20 15:53:11 -0700
commit5c5f3c00a3f63e77497596aae08ff033cc496664 (patch)
treeb08b4b92115cb51a2dfbd1171ac0ab4406ceb20b /var
parentd5c549f1e695f2c2933b4a2a094f7fd6306505c8 (diff)
downloadspack-5c5f3c00a3f63e77497596aae08ff033cc496664.tar.gz
spack-5c5f3c00a3f63e77497596aae08ff033cc496664.tar.bz2
spack-5c5f3c00a3f63e77497596aae08ff033cc496664.tar.xz
spack-5c5f3c00a3f63e77497596aae08ff033cc496664.zip
emacs: default to +tls true (#37038)
* emacs: default to +tls true * Add myself as a maintainer for emacs pkg
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/emacs/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/emacs/package.py b/var/spack/repos/builtin/packages/emacs/package.py
index f237568b0d..524f7ef8d9 100644
--- a/var/spack/repos/builtin/packages/emacs/package.py
+++ b/var/spack/repos/builtin/packages/emacs/package.py
@@ -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")