We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My goal is to use melpa stable by default for packages with :type elpa, and use melpa (non stable) for select packages.
:type elpa
The way I tried to do this is to set package-archive-priorities and specify :repo in the receipe of select packages:
package-archive-priorities
:repo
(require 'package) (setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/") ("melpa" . "https://melpa.org/packages/") ("melpa-stable" . "https://stable.melpa.org/packages/")) package-archive-priorities '(("gnu" . 5) ("melpa" . 0) ("melpa-stable" . 10))) (package-initialize) (setq el-get-sources '( (:name magit :type elpa) (:name solarized-theme :type elpa :repo ("melpa" . "https://melpa.org/packages/")))) (el-get 'sync)
Result:
Analysis:
el-get/methods/el-get-elpa.el
Lines 71 to 74 in d76ac84
(el-get-elpa-package-id 'solarized-theme)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My goal is to use melpa stable by default for packages with
:type elpa
, and use melpa (non stable) for select packages.The way I tried to do this is to set
package-archive-priorities
and specify:repo
in the receipe of select packages:Result:
Analysis:
el-get/methods/el-get-elpa.el
Lines 71 to 74 in d76ac84
(el-get-elpa-package-id 'solarized-theme)
returns version 1.3.1 from melpa-stable, ignoring the:repo
I defined in the receipe.The text was updated successfully, but these errors were encountered: