]> git.eshelyaron.com Git - emacs.git/commitdiff
Display commit in package description, if available (Bug#28637)
authorDavid Glasser <glasser@davidglasser.net>
Tue, 10 Oct 2017 22:46:53 +0000 (15:46 -0700)
committerNoam Postavsky <npostavs@gmail.com>
Tue, 24 Oct 2017 23:14:30 +0000 (19:14 -0400)
MELPA includes a :commit field in its
packages (https://github.com/melpa/package-build/pull/6).  You can use
this to tell if MELPA has processed a recently-merged change.  This
commit adds that metadata to the package description buffer.

* lisp/emacs-lisp/package.el: Display commit in package description.

Copyright-paperwork-exempt: yes

lisp/emacs-lisp/package.el

index 8b101c1323c42919ee525a4c3f42fa889db6b132..dd05c70dc8e90e5c044dfe3ce65fbcdbd0069118 100644 (file)
@@ -2260,6 +2260,7 @@ Otherwise no newline is inserted."
          (archive (if desc (package-desc-archive desc)))
          (extras (and desc (package-desc-extras desc)))
          (homepage (cdr (assoc :url extras)))
+         (commit (cdr (assoc :commit extras)))
          (keywords (if desc (package-desc--keywords desc)))
          (built-in (eq pkg-dir 'builtin))
          (installable (and archive (not built-in)))
@@ -2332,6 +2333,8 @@ Otherwise no newline is inserted."
     (and version
          (package--print-help-section "Version"
            (package-version-join version)))
+    (when commit
+      (package--print-help-section "Commit" commit))
     (when desc
       (package--print-help-section "Summary"
         (package-desc-summary desc)))