aboutsummaryrefslogtreecommitdiffstats
path: root/oni-package.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-08-18 17:11:21 -0700
committerGravatar Tom Willemse2019-08-18 17:11:21 -0700
commit8386052858797203cb95bbdcf5ebd97d7b0f5681 (patch)
tree27f18e86097f6c394b9ef32eb5fdb64746a7a660 /oni-package.el
parent52797d3917c594a5ffe96efe954630212e414748 (diff)
downloademacs-config-8386052858797203cb95bbdcf5ebd97d7b0f5681.tar.gz
emacs-config-8386052858797203cb95bbdcf5ebd97d7b0f5681.zip
Work around the “Bad Request” error with elpa.gnu.org
Diffstat (limited to 'oni-package.el')
-rw-r--r--oni-package.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/oni-package.el b/oni-package.el
index f47147a..6c104b4 100644
--- a/oni-package.el
+++ b/oni-package.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 20190622162418
+;; Version: 20190818171115
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -33,6 +33,7 @@
;;; Code:
+(require 'gnutls)
(require 'package)
(require 'package-x)
@@ -67,6 +68,10 @@
(setq package-archive-upload-base
"bin/")
+;;; To fix "Bad Request" errors when downoading from elpa.gnu.org. This turns
+;;; off TLS1.3 it seems to me.
+(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
+
;;; Temporary fix for `package-maint-add-news-item', until I get my
;;; Copyright assignment back in order.
(defun package-maint-add-news-item (title description archive-url)