-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package-initialize fixes "Package X is not installable" errors #153
Comments
Yeah, the flip side is that there's no real way for us to know if it's appropriate for us to call it for you. We could potentially have a specific error/warning for when no packages appear to be installable. |
I've dealt with this in |
I think this is the third time I've randomly bumped into @gonewest818 (we met at a SF emacs meetup :-)) and with his good advice; thanks! |
For background, and maybe other people coming here from doom, as a dev, perhaps I chose to use ... actually, as I was literally writing this message, I found that Would it be possible to have some logic in |
Me too. I ignore this error in interactive mode and run thorough linting in batch mode. You could use makem.sh for example, but I am also developing an alternative. |
Oh, hi @akirak! I also use a lot of your packages and am a big fan of yours :-D |
@seanfarley Thanks. You seem to be using org-starter, and it's interesting to find an actual configuration example of the package. |
I had the same issue, and it comes from It can be fixed by adding Here is the relevant snippet for DOOM: (after! savehist
(add-to-list 'savehist-additional-variables 'package-archive-contents)) |
package-lint does not work with straight package manager. purcell/package-lint#153 Use package-lint through elisp-lint. elisp-lint has solved the issue. See issue 153. Signed-off-by: Sean Hutchings <[email protected]>
I find it strange that I have to manually run
(package-initialize)
in a non-batch emacs instance to fix thePackage X is not installable.
errors/warnings in the output ofpackage-lint-current-buffer
.It would be nice if this could be done automatically by package-lint.
Tested using emacs27
The text was updated successfully, but these errors were encountered: