dimitri/el-get

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

Opened this issue · 0 comments

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)