1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

* lisp/emacs-lisp/package.el (package-buffer-info):

Add author and maintainers to `package-buffer-info'.
This commit is contained in:
Artur Malabarba 2015-07-17 19:24:15 +01:00
parent ca66737c53
commit 86814e7a80
2 changed files with 16 additions and 5 deletions

View File

@ -996,7 +996,9 @@ boundaries."
(package--prepare-dependencies
(package-read-from-string requires-str)))
:kind 'single
:url homepage))))
:url homepage
:maintainer (lm-maintainer)
:authors (lm-authors)))))
(defun package--read-pkg-desc (kind)
"Read a `define-package' form in current buffer.

View File

@ -50,7 +50,9 @@
:version '(1 3)
:summary "A single-file package with no dependencies"
:kind 'single
:extras '((:url . "http://doodles.au")))
:extras '((:authors ("J. R. Hacker" . "jrh@example.com"))
(:maintainer "J. R. Hacker" . "jrh@example.com")
(:url . "http://doodles.au")))
"Expected `package-desc' parsed from simple-single-1.3.el.")
(defvar simple-depend-desc
@ -58,7 +60,9 @@
:version '(1 0)
:summary "A single-file package with a dependency."
:kind 'single
:reqs '((simple-single (1 3))))
:reqs '((simple-single (1 3)))
:extras '((:authors ("J. R. Hacker" . "jrh@example.com"))
(:maintainer "J. R. Hacker" . "jrh@example.com")))
"Expected `package-desc' parsed from simple-depend-1.0.el.")
(defvar multi-file-desc
@ -216,6 +220,8 @@ Must called from within a `tar-mode' buffer."
"(define-package \"simple-single\" \"1.3\" "
"\"A single-file package "
"with no dependencies\" 'nil "
":authors '((\"J. R. Hacker\" . \"jrh@example.com\")) "
":maintainer '(\"J. R. Hacker\" . \"jrh@example.com\") "
":url \"http://doodles.au\""
")\n"))))
(should (file-exists-p autoloads-file))
@ -480,7 +486,9 @@ Must called from within a `tar-mode' buffer."
(package-make-ac-desc '(1 3) nil
"A single-file package with no dependencies"
'single
'((:url . "http://doodles.au"))))
'((:authors ("J. R. Hacker" . "jrh@example.com"))
(:maintainer "J. R. Hacker" . "jrh@example.com")
(:url . "http://doodles.au"))))
"Expected contents of the archive entry from the \"simple-single\" package.")
(defvar package-x-test--single-archive-entry-1-4
@ -488,7 +496,8 @@ Must called from within a `tar-mode' buffer."
(package-make-ac-desc '(1 4) nil
"A single-file package with no dependencies"
'single
nil))
'((:authors ("J. R. Hacker" . "jrh@example.com"))
(:maintainer "J. R. Hacker" . "jrh@example.com"))))
"Expected contents of the archive entry from the updated \"simple-single\" package.")
(ert-deftest package-x-test-upload-buffer ()