
dc4e6b1329
; Update copyright years in more files64b3777631
; Run set-copyright from admin.el8e1c56ae46
; Add 2024 to copyright years # Conflicts: # doc/misc/modus-themes.org # doc/misc/texinfo.tex # etc/NEWS # etc/refcards/ru-refcard.tex # etc/themes/modus-operandi-theme.el # etc/themes/modus-themes.el # etc/themes/modus-vivendi-theme.el # lib/alloca.in.h # lib/binary-io.h # lib/c-ctype.h # lib/c-strcasecmp.c # lib/c-strncasecmp.c # lib/careadlinkat.c # lib/cloexec.c # lib/close-stream.c # lib/diffseq.h # lib/dup2.c # lib/filemode.h # lib/fpending.c # lib/fpending.h # lib/fsusage.c # lib/getgroups.c # lib/getloadavg.c # lib/gettext.h # lib/gettime.c # lib/gettimeofday.c # lib/group-member.c # lib/malloc.c # lib/md5-stream.c # lib/md5.c # lib/md5.h # lib/memmem.c # lib/memrchr.c # lib/nanosleep.c # lib/save-cwd.h # lib/sha1.c # lib/sig2str.c # lib/stdlib.in.h # lib/strtoimax.c # lib/strtol.c # lib/strtoll.c # lib/time_r.c # lib/xalloc-oversized.h # lisp/auth-source-pass.el # lisp/emacs-lisp/lisp-mnt.el # lisp/emacs-lisp/timer.el # lisp/info-look.el # lisp/jit-lock.el # lisp/loadhist.el # lisp/mail/rmail.el # lisp/net/ntlm.el # lisp/net/webjump.el # lisp/progmodes/asm-mode.el # lisp/progmodes/project.el # lisp/progmodes/sh-script.el # lisp/textmodes/flyspell.el # lisp/textmodes/reftex-toc.el # lisp/textmodes/reftex.el # lisp/textmodes/tex-mode.el # lisp/url/url-gw.el # m4/alloca.m4 # m4/clock_time.m4 # m4/d-type.m4 # m4/dirent_h.m4 # m4/dup2.m4 # m4/euidaccess.m4 # m4/fchmodat.m4 # m4/filemode.m4 # m4/fsusage.m4 # m4/getgroups.m4 # m4/getloadavg.m4 # m4/getrandom.m4 # m4/gettime.m4 # m4/gettimeofday.m4 # m4/gnulib-common.m4 # m4/group-member.m4 # m4/inttypes.m4 # m4/malloc.m4 # m4/manywarnings.m4 # m4/mempcpy.m4 # m4/memrchr.m4 # m4/mkostemp.m4 # m4/mktime.m4 # m4/nproc.m4 # m4/nstrftime.m4 # m4/pathmax.m4 # m4/pipe2.m4 # m4/pselect.m4 # m4/pthread_sigmask.m4 # m4/readlink.m4 # m4/realloc.m4 # m4/sig2str.m4 # m4/ssize_t.m4 # m4/stat-time.m4 # m4/stddef_h.m4 # m4/stdint.m4 # m4/stdio_h.m4 # m4/stdlib_h.m4 # m4/stpcpy.m4 # m4/strnlen.m4 # m4/strtoimax.m4 # m4/strtoll.m4 # m4/time_h.m4 # m4/timegm.m4 # m4/timer_time.m4 # m4/timespec.m4 # m4/unistd_h.m4 # m4/warnings.m4 # nt/configure.bat # nt/preprep.c # test/lisp/register-tests.el
213 lines
8 KiB
EmacsLisp
213 lines
8 KiB
EmacsLisp
;;; use-package-ensure.el --- Support for the :ensure and :pin keywords -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2012-2024 Free Software Foundation, Inc.
|
|
|
|
;; Author: John Wiegley <johnw@newartisans.com>
|
|
;; Maintainer: John Wiegley <johnw@newartisans.com>
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Provides support for the :ensure and :pin keywords, which are made
|
|
;; available by default by requiring `use-package'.
|
|
;;
|
|
;; See the `use-package' info manual for more information.
|
|
|
|
;;; Code:
|
|
|
|
(require 'cl-lib)
|
|
(require 'use-package-core)
|
|
|
|
(defgroup use-package-ensure nil
|
|
"Support for :ensure and :pin keywords in `use-package' declarations."
|
|
:group 'use-package
|
|
:link '(custom-manual "(use-package) Installing packages")
|
|
:version "29.1")
|
|
|
|
(eval-when-compile
|
|
(declare-function package-installed-p "package")
|
|
(declare-function package-read-all-archive-contents "package" ()))
|
|
|
|
(defcustom use-package-always-ensure nil
|
|
"Treat every package as though it had specified using `:ensure SEXP'.
|
|
See also `use-package-defaults', which uses this value."
|
|
:type 'sexp
|
|
:group 'use-package-ensure)
|
|
|
|
(defcustom use-package-always-pin nil
|
|
"Treat every package as though it had specified using `:pin SYM'.
|
|
See also `use-package-defaults', which uses this value."
|
|
:type 'symbol
|
|
:group 'use-package-ensure)
|
|
|
|
(defcustom use-package-ensure-function 'use-package-ensure-elpa
|
|
"Function that ensures a package is installed.
|
|
This function is called with three arguments: the name of the
|
|
package declared in the `use-package' form; the arguments passed
|
|
to all `:ensure' keywords (always a list, even if only one); and
|
|
the current `state' plist created by previous handlers.
|
|
|
|
Note that this function is called whenever `:ensure' is provided,
|
|
even if it is nil. It is up to the function to decide on the
|
|
semantics of the various values for `:ensure'.
|
|
|
|
This function should return non-nil if the package is installed.
|
|
|
|
The default value uses package.el to install the package."
|
|
:type '(choice (const :tag "package.el" use-package-ensure-elpa)
|
|
(function :tag "Custom"))
|
|
:group 'use-package-ensure)
|
|
|
|
;;;; :pin
|
|
|
|
(defun use-package-normalize/:pin (_name keyword args)
|
|
(use-package-only-one (symbol-name keyword) args
|
|
#'(lambda (_label arg)
|
|
(cond
|
|
((stringp arg) arg)
|
|
((use-package-non-nil-symbolp arg) (symbol-name arg))
|
|
(t
|
|
(use-package-error
|
|
":pin wants an archive name (a string)"))))))
|
|
|
|
(eval-when-compile
|
|
(defvar package-pinned-packages)
|
|
(defvar package-archives))
|
|
|
|
(defun use-package-archive-exists-p (archive)
|
|
"Check if a given ARCHIVE is enabled.
|
|
|
|
ARCHIVE can be a string or a symbol or `manual' to indicate a
|
|
manually updated package."
|
|
(if (member archive '(manual "manual"))
|
|
't
|
|
(let ((valid nil))
|
|
(dolist (pa package-archives)
|
|
(when (member archive (list (car pa) (intern (car pa))))
|
|
(setq valid 't)))
|
|
valid)))
|
|
|
|
(defun use-package-pin-package (package archive)
|
|
"Pin PACKAGE to ARCHIVE."
|
|
(unless (boundp 'package-pinned-packages)
|
|
(setq package-pinned-packages ()))
|
|
(let ((archive-symbol (if (symbolp archive) archive (intern archive)))
|
|
(archive-name (if (stringp archive) archive (symbol-name archive))))
|
|
(if (use-package-archive-exists-p archive-symbol)
|
|
(add-to-list 'package-pinned-packages (cons package archive-name))
|
|
(error "Archive '%s' requested for package '%s' is not available"
|
|
archive-name package))
|
|
(unless (bound-and-true-p package--initialized)
|
|
(package-initialize t))))
|
|
|
|
(defun use-package-handler/:pin (name _keyword archive-name rest state)
|
|
(let ((body (use-package-process-keywords name rest state))
|
|
(pin-form (if archive-name
|
|
`(use-package-pin-package ',(use-package-as-symbol name)
|
|
,archive-name))))
|
|
;; Pinning should occur just before ensuring
|
|
;; See `use-package-handler/:ensure'.
|
|
(if (bound-and-true-p byte-compile-current-file)
|
|
(eval pin-form) ; Eval when byte-compiling,
|
|
(push pin-form body)) ; or else wait until runtime.
|
|
body))
|
|
|
|
;;;; :ensure
|
|
|
|
(defvar package-archive-contents)
|
|
|
|
;;;###autoload
|
|
(defun use-package-normalize/:ensure (_name keyword args)
|
|
(if (null args)
|
|
(list t)
|
|
(use-package-only-one (symbol-name keyword) args
|
|
#'(lambda (_label arg)
|
|
(cond
|
|
((symbolp arg)
|
|
(list arg))
|
|
((and (listp arg) (= 3 (length arg))
|
|
(symbolp (nth 0 arg))
|
|
(eq :pin (nth 1 arg))
|
|
(or (stringp (nth 2 arg))
|
|
(symbolp (nth 2 arg))))
|
|
(list (cons (nth 0 arg) (nth 2 arg))))
|
|
(t
|
|
(use-package-error
|
|
(concat ":ensure wants an optional package name "
|
|
"(an unquoted symbol name), or (<symbol> :pin <string>)"))))))))
|
|
|
|
(defun use-package-ensure-elpa (name args _state &optional _no-refresh)
|
|
(dolist (ensure args)
|
|
(let ((package
|
|
(or (and (eq ensure t) (use-package-as-symbol name))
|
|
ensure)))
|
|
(when package
|
|
(require 'package)
|
|
(when (consp package)
|
|
(use-package-pin-package (car package) (cdr package))
|
|
(setq package (car package)))
|
|
(unless (package-installed-p package)
|
|
(condition-case-unless-debug err
|
|
(progn
|
|
(when (assoc package (bound-and-true-p
|
|
package-pinned-packages))
|
|
(package-read-all-archive-contents))
|
|
(if (assoc package package-archive-contents)
|
|
(package-install package)
|
|
(package-refresh-contents)
|
|
(when (assoc package (bound-and-true-p
|
|
package-pinned-packages))
|
|
(package-read-all-archive-contents))
|
|
(package-install package))
|
|
t)
|
|
(error
|
|
(display-warning 'use-package
|
|
(format "Failed to install %s: %s"
|
|
name (error-message-string err))
|
|
:error))))))))
|
|
|
|
;;;###autoload
|
|
(defun use-package-handler/:ensure (name _keyword ensure rest state)
|
|
(let* ((body (use-package-process-keywords name rest state))
|
|
(ensure (and (not (plist-member rest :vc)) ensure)))
|
|
;; We want to avoid installing packages when the `use-package' macro is
|
|
;; being macro-expanded by elisp completion (see `lisp--local-variables'),
|
|
;; but still install packages when byte-compiling, to avoid requiring
|
|
;; `package' at runtime.
|
|
(if (bound-and-true-p byte-compile-current-file)
|
|
;; Eval when byte-compiling,
|
|
(funcall use-package-ensure-function name ensure state)
|
|
;; or else wait until runtime.
|
|
(push `(,use-package-ensure-function ',name ',ensure ',state)
|
|
body))
|
|
body))
|
|
|
|
(add-to-list 'use-package-defaults
|
|
'(:ensure (list use-package-always-ensure)
|
|
(lambda (name args)
|
|
(and use-package-always-ensure
|
|
(not (plist-member args :load-path))))) t)
|
|
|
|
(add-to-list 'use-package-defaults
|
|
'(:pin use-package-always-pin use-package-always-pin) t)
|
|
|
|
(add-to-list 'use-package-keywords :ensure)
|
|
(add-to-list 'use-package-keywords :pin)
|
|
|
|
(provide 'use-package-ensure)
|
|
|
|
;;; use-package-ensure.el ends here
|