mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Revert "Start handling extra package properties such as URL, keywords"
This reverts commit b65bdcfa2b
.
This commit is contained in:
parent
a555fea6d9
commit
bd34c21623
1 changed files with 4 additions and 8 deletions
|
@ -469,8 +469,7 @@ Optionally PRETTY-PRINT the data."
|
|||
(lambda (elt)
|
||||
(list (car elt)
|
||||
(package-version-join (cadr elt))))
|
||||
(aref pkg-info 1))
|
||||
,(and (>= (length pkg-info) 5) (aref pkg-info 4)))
|
||||
(aref pkg-info 1)))
|
||||
pkg-file
|
||||
t))
|
||||
|
||||
|
@ -596,14 +595,12 @@ 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))
|
||||
(extras (and (>= (length pkg-info) 5) (aref pkg-info 4))))
|
||||
(version (aref pkg-info 3)))
|
||||
(cons name
|
||||
(vector (version-to-list version)
|
||||
requires
|
||||
desc
|
||||
type
|
||||
extras))))
|
||||
type))))
|
||||
|
||||
(defun pb/archive-file-name (archive-entry)
|
||||
"Return the path of the file in which the package for ARCHIVE-ENTRY is stored."
|
||||
|
@ -797,8 +794,7 @@ and a cl struct in Emacs HEAD. This wrapper normalises the results."
|
|||
(vector (package-desc-name desc)
|
||||
(package-desc-reqs desc)
|
||||
(package-desc-summary desc)
|
||||
(package-desc-version desc)
|
||||
(package-desc-extras desc))
|
||||
(package-desc-version desc))
|
||||
desc)))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue