From e90e5cfbc6ca58c26a91a6b449b017b1102069be Mon Sep 17 00:00:00 2001 From: Astounds Date: Fri, 7 Aug 2026 15:19:06 -0500 Subject: fix: emacs 27 TLS failure and package bootstrap Extend GnuTLS TLS 1.3 workaround to Emacs < 28, fix use-package archive check in init-elpa.el, --- init.el | 6 +++--- modules/init-elpa.el | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/init.el b/init.el index 68cbc96..6011957 100644 --- a/init.el +++ b/init.el @@ -10,9 +10,9 @@ ;;; Time Mark (setq emacs-load-start-time (current-time)) -;;; Fix TLS emacs 26.x -(if (version<= emacs-version "26.2") - (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) +;;; Fix TLS for Emacs 26/27 (GnuTLS TLS 1.3 handshake bug on Debian/Ubuntu) +(when (version< emacs-version "28") + (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) ;;; Welcome message (setq-default initial-scratch-message diff --git a/modules/init-elpa.el b/modules/init-elpa.el index 16756fe..56a4e55 100644 --- a/modules/init-elpa.el +++ b/modules/init-elpa.el @@ -26,11 +26,10 @@ (setq package-native-compile t) (setq package-check-signature 'allow-unsigned) -(setq read-process-output-max (* 1024 1024)) (package-initialize) (unless (package-installed-p 'use-package) - (unless (assoc 'melpa package-archives) + (unless (assoc 'use-package package-archive-contents) (package-refresh-contents)) (package-install 'use-package)) -- cgit v1.2.3