;;; package-management.el --- Initialize package management. -*- lexical-binding: t; -*- ;; Time-stamp: <2020-02-27T05:25:23+0100> ;;; Commentary: ;; * Set up package sources and their priorities. ;; * Set up use-package. ;; * Compile elisp files. ;; * Update keyring. ;; * Update packages. ;; * Set up quelpa. ;;; Code: (require 'package) (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (setq package-archive-priorities '(("melpa-stable" . 30) ("gnu" . 20) ("melpa" . 10))) ;; Workaround for 26.2 . (when (< emacs-major-version 27) (defvar gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) (when (< emacs-major-version 27) (package-initialize)) ;; Add path for custom packages. (add-to-list 'load-path (concat user-emacs-directory "custom-packages/")) ;; Install use-package if necessary. (unless (package-installed-p 'use-package) (package-refresh-contents) (package-install 'use-package)) (eval-when-compile (require 'use-package)) ;; Always install packages if they are not present. (use-package use-package :custom (use-package-always-ensure t) ) ;; Autocompile files on load. (use-package auto-compile :custom (load-prefer-newer t) ; Use uncompiled file if it is newer. :config (auto-compile-on-load-mode)) ;; Tool for updating the GNU ELPA keyring. (use-package gnu-elpa-keyring-update :config (defvar my/keyring-last-access (time-to-seconds (file-attribute-access-time (file-attributes gnu-elpa-keyring-update--keyring))) "Last access time for the GNU ELPA keyring.") ;; Only update keyring if atime (mtime with relatime) is > 1 week ago. (if (> (- (time-to-seconds) my/keyring-last-access) (* 60 60 24 7)) (gnu-elpa-keyring-update)) ) ;; Update packages if at least 7 days have passed. (use-package auto-package-update :custom ((auto-package-update-delete-old-versions t) (auto-package-update-interval 7) (auto-package-update-hide-results nil)) :config (auto-package-update-maybe) ) ;; Install Emacs packages directly from source. (use-package quelpa :demand t :custom ((quelpa-self-upgrade-p nil) (quelpa-update-melpa-p nil) (quelpa-checkout-melpa-p nil)) :config (defun my/quelpa-upgrade-all-maybe (&optional force) "Run `quelpa-upgrade-all' if at least 7 days passed since the last run. With prefix FORCE, packages will all be upgraded discarding local changes." (interactive "P") (let ((timestamp (expand-file-name "last_upgrade" quelpa-dir)) (days 7)) (when (or (not (file-exists-p timestamp)) (> (- (time-to-seconds) ; Current time - file modification time. (time-to-seconds (nth 5 (file-attributes timestamp)))) (* 60 60 24 days))) (let ((current-prefix-arg force)) (quelpa-upgrade-all)) (write-region "" nil timestamp)))) :hook (after-init . my/quelpa-upgrade-all-maybe) ) ;; Use :quelpa in use-package configurations. (use-package quelpa-use-package ; Override `use-package-always-ensure' for quelpa-packages. :config (quelpa-use-package-activate-advice) ) (provide 'basics/package-management) ;;; package-management.el ends here