mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Add extra package info to archive index entry
This commit is contained in:
parent
b7d29cb544
commit
d1df88461f
1 changed files with 4 additions and 2 deletions
|
@ -634,12 +634,14 @@ If PKG-INFO is nil, an empty one is created."
|
|||
(let* ((name (intern (aref pkg-info 0)))
|
||||
(requires (aref pkg-info 1))
|
||||
(desc (or (aref pkg-info 2) "No description available."))
|
||||
(version (aref pkg-info 3)))
|
||||
(version (aref pkg-info 3))
|
||||
(extras (aref pkg-info 4)))
|
||||
(cons name
|
||||
(vector (version-to-list version)
|
||||
requires
|
||||
desc
|
||||
type))))
|
||||
type
|
||||
extras))))
|
||||
|
||||
(defun pb/archive-file-name (archive-entry)
|
||||
"Return the path of the file in which the package for ARCHIVE-ENTRY is stored."
|
||||
|
|
Loading…
Reference in a new issue