-
Notifications
You must be signed in to change notification settings - Fork 36
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
Remove outdated editors/emacs/lambdapi-mode-pkg.el #1170
base: master
Are you sure you want to change the base?
Conversation
Thank you very much @tarsius for your PR. We're going to look after this as soon as possible. |
Thanks! |
Thank you @tarsius for the PR. Is that right? However, I have the following error when trying to install the package locally (with Please note, it works when I install from a tar file that contains the |
Also, please update the editors/emacs/Makefile by removing line 16: |
Yes, except ...
... this is the one use case that does require I don't think many people do that, but since you do, I recommend you keep |
Thanks again @tarsius, Indeed, we use this method to test the plugin locally before releasing it. If you know any better way to do so, please let us know. |
Unfortunately I have not prepared any easy to use steps for that. Also see okamsn/loopy#224 (comment). |
The information in
<name>-pkg.el
did not agree with the information in<name>.el
. This pull-requests addresses that be removing the outdated<name>-pkg.el
.While the end-user package manager
package.el
expects a file<name>-pkg.el
, this should only be generate by the package archive (such as GNU ELPA and MELPA), instead of being tracked in the upstream repository.The tools used maintain the various *ELPA, do not use
<name>-pkg.el
as a data source, they only generate it.elpa-admin.el
, the tool used for GNU ELPA and NonGNU ELPA, does not use<name>-pkg.el
as a data source and it never has.package-build.el
, the tool used for Melpa, prefers<name>.el
but currently falls back to get information missing from there from<name>-pkg.el
instead. I am goint to change that; soon<name>-pkg.el
will be ignored as a data source by this tool too.