dimitri / el-get

Manage the external elisp bits and pieces upon which you depend!
http://tapoueh.org/emacs/el-get.html
1.64k stars 457 forks source link

(el-get-bundle elpa:magit) fails to resolve correct dependencies #2859

Open d4gg4d opened 2 years ago

d4gg4d commented 2 years ago

Observed behavior

Noticed that when trying

(el-get-bundle magit :type elpa)

Resolves to .status.el line

...
(magit status "installed" recipe
    (:name magit :type elpa :depends
           (with-editor transient dash))
...

Which misses the dependencies of git-commit and magit-section (see melpa). This causes the magit to fail in the beginning of its usage to message of failure to load magit-section, file not found.

Expected behavior

el-get should resolve correct dependencies for the package.

Workaround

Add following modules manually.

(el-get-bundle elpa:magit-section)
(el-get-bundle elpa:git-commit)