2020-03-18 12:14:30 +01:00
|
|
|
;;; package-management.el --- Initialize package management -*- lexical-binding: t; -*-
|
2019-10-14 17:38:14 +02:00
|
|
|
|
2020-11-18 18:10:59 +01:00
|
|
|
;; Time-stamp: <2020-11-18T18:09:44+0100>
|
2019-10-14 17:38:14 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
2020-03-18 12:14:30 +01:00
|
|
|
;; * Set up straight
|
2020-02-27 03:02:19 +01:00
|
|
|
;; * Set up use-package.
|
2019-10-14 17:38:14 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-03-18 12:14:30 +01:00
|
|
|
;; Workaround for < 26.3 <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341>.
|
|
|
|
(when (and (< emacs-major-version 27)
|
|
|
|
(not (string= emacs-version "26.3")))
|
|
|
|
(defvar gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
|
|
|
|
|
|
|
|
;; Define variables for straight.
|
2020-03-15 23:38:06 +01:00
|
|
|
(customize-set-variable
|
|
|
|
'straight-use-package-by-default t
|
|
|
|
"Makes use-package invoke straight.el to install the package.")
|
|
|
|
(customize-set-variable 'straight-cache-autoloads t
|
|
|
|
"Cache the autoloads of all packages in a single file.")
|
2020-04-10 14:47:01 +02:00
|
|
|
|
|
|
|
;; Use shallow clones if available disk space is under 5 GiB.
|
2020-04-16 15:05:19 +02:00
|
|
|
(when (or (< emacs-major-version 27) ; file-system-info was introduced in 27.
|
|
|
|
(< (nth 2 (file-system-info user-emacs-directory))
|
|
|
|
(* 1024 1024 1024 5))) ; 5 GiB.
|
2020-04-10 14:47:01 +02:00
|
|
|
(customize-set-variable 'straight-vc-git-default-clone-depth 1
|
|
|
|
"Make shallow clones to save space."))
|
2020-03-15 23:38:06 +01:00
|
|
|
|
2020-04-10 14:20:46 +02:00
|
|
|
(customize-set-variable 'straight-repository-branch "master")
|
2020-03-18 12:14:30 +01:00
|
|
|
;; Bootstrap straight.
|
2020-03-15 23:38:06 +01:00
|
|
|
(defvar bootstrap-version)
|
|
|
|
(let ((bootstrap-file
|
2020-03-18 12:14:30 +01:00
|
|
|
(expand-file-name "straight/repos/straight.el/bootstrap.el"
|
|
|
|
user-emacs-directory))
|
2020-03-15 23:38:06 +01:00
|
|
|
(bootstrap-version 5))
|
|
|
|
(unless (file-exists-p bootstrap-file)
|
|
|
|
(with-current-buffer
|
|
|
|
(url-retrieve-synchronously
|
|
|
|
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
|
|
|
|
'silent 'inhibit-cookies)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(eval-print-last-sexp)))
|
|
|
|
(load bootstrap-file nil 'nomessage))
|
2020-11-10 22:30:12 +01:00
|
|
|
(require 'straight)
|
2019-10-14 17:38:14 +02:00
|
|
|
|
2020-03-15 23:38:06 +01:00
|
|
|
;; Isolate package configurations.
|
|
|
|
(straight-use-package 'use-package)
|
2020-05-24 22:17:02 +02:00
|
|
|
(customize-set-variable 'use-package-always-defer t)
|
2020-11-10 22:30:12 +01:00
|
|
|
(require 'use-package)
|
2020-03-15 23:38:06 +01:00
|
|
|
|
2020-11-10 22:30:12 +01:00
|
|
|
(use-package straight
|
2020-11-18 18:10:59 +01:00
|
|
|
:config (progn
|
|
|
|
(defun my/straight-update-repos ()
|
|
|
|
"Update recipe repositories."
|
|
|
|
(interactive)
|
|
|
|
(dolist (package straight-recipe-repositories)
|
|
|
|
(straight-pull-package package)))
|
|
|
|
|
|
|
|
(defun my/straight-check-last-update ()
|
|
|
|
"Update recipe repositories after 7 days have passed since the last package was built."
|
|
|
|
(let ((days 7)
|
|
|
|
(mtime-seconds (time-to-seconds
|
|
|
|
(file-attribute-modification-time
|
|
|
|
(file-attributes (straight--build-dir))))))
|
|
|
|
(when (> (- (time-to-seconds) mtime-seconds)
|
|
|
|
(* 60 60 24 days))
|
|
|
|
(my/straight-update-repos)))))
|
2020-11-10 22:30:12 +01:00
|
|
|
:hook ((emacs-startup . my/straight-check-last-update)
|
|
|
|
((after-init . straight-prune-build))))
|
2020-03-29 21:17:22 +02:00
|
|
|
|
2019-10-14 17:38:14 +02:00
|
|
|
(provide 'basics/package-management)
|
|
|
|
;;; package-management.el ends here
|