fix issues associated with updated builtin dependencies

per https://github.com/melpa/melpa/pull/9131
This commit is contained in:
riscy 2024-09-02 11:21:12 -07:00
parent 6ee358727b
commit b099fc75df
2 changed files with 2 additions and 1 deletions

View file

@ -30,7 +30,7 @@
(melpazoid--remove-no-compile)
(ignore-errors (kill-buffer "*Compile-Log*"))
(let ((inhibit-message t)
(load-path (append load-path (melpazoid--package-load-paths))))
(load-path (append (melpazoid--package-load-paths) load-path)))
(byte-compile-file filename))
(with-current-buffer (get-buffer-create "*Compile-Log*")
(if (melpazoid--buffer-almost-empty-p)

View file

@ -246,6 +246,7 @@ def _write_requirements(files: list[Path]) -> None:
+ "(package-initialize)\n"
+ """(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))\n"""
+ "(package-refresh-contents)\n"
+ "(setq package-install-upgrade-built-in t)\n"
+ "(package-install 'pkg-info)\n"
+ "(package-install 'package-lint)\n"
)