Upgrade packages

This commit is contained in:
Marcus Kammer 2020-03-04 18:59:26 +01:00
parent e1c6b4f64d
commit f94a4d3ecf
142 changed files with 113 additions and 38 deletions

View file

@ -1,2 +1,2 @@
;;; -*- no-byte-compile: t -*-
(define-package "alert" "20191126.2032" "Growl-style notification system for Emacs" '((gntp "0.1") (log4e "0.3.0") (cl-lib "0.5")) :commit "a73ede85c9cdd7d1a7593d4674cde8eec66c098b" :keywords '("notification" "emacs" "message") :authors '(("John Wiegley" . "jwiegley@gmail.com")) :maintainer '("John Wiegley" . "jwiegley@gmail.com") :url "https://github.com/jwiegley/alert")
(define-package "alert" "20200303.2118" "Growl-style notification system for Emacs" '((gntp "0.1") (log4e "0.3.0") (cl-lib "0.5")) :commit "7046393272686c7a1a9b3e7f7b1d825d2e5250a6" :keywords '("notification" "emacs" "message") :authors '(("John Wiegley" . "jwiegley@gmail.com")) :maintainer '("John Wiegley" . "jwiegley@gmail.com") :url "https://github.com/jwiegley/alert")

View file

@ -6,7 +6,7 @@
;; Created: 24 Aug 2011
;; Updated: 16 Mar 2015
;; Version: 1.2
;; Package-Version: 20191126.2032
;; Package-Version: 20200303.2118
;; Package-Requires: ((gntp "0.1") (log4e "0.3.0") (cl-lib "0.5"))
;; Keywords: notification emacs message
;; X-URL: https://github.com/jwiegley/alert
@ -407,7 +407,7 @@ For user customization, see `alert-user-configuration'.")
:group 'alert)
(defface alert-trivial-face
'((t (:foreground "Dark Purple")))
'((t (:foreground "Dark Violet")))
"Trivial alert face."
:group 'alert)

View file

@ -206,7 +206,7 @@
(:maintainer "Raffael Stocker" . "r.stocker@mnet-mail.de")
(:url . "https://gitlab.com/rstocker/emacs-bluetooth"))])
(bnf-mode .
[(0 4 3)
[(0 4 4)
((cl-lib
(0 5))
(emacs
@ -2005,7 +2005,9 @@
(timerfunctions .
[(1 4 2)
((cl-lib
(0 5)))
(0 5))
(emacs
(24)))
"Enhanced versions of some timer.el functions" single
((:url . "http://elpa.gnu.org/packages/timerfunctions.html")
(:authors

View file

@ -1 +1 @@
Good signature from 066DAFCB81E42C40 GNU ELPA Signing Agent (2019) <elpasign@elpa.gnu.org> (trust undefined) created at 2020-03-02T11:05:02+0100 using RSA
Good signature from 066DAFCB81E42C40 GNU ELPA Signing Agent (2019) <elpasign@elpa.gnu.org> (trust undefined) created at 2020-03-04T11:05:02+0100 using RSA

View file

@ -1,4 +1,4 @@
(define-package "graphviz-dot-mode" "20200203.1919" "Mode for the dot-language used by graphviz (att)."
(define-package "graphviz-dot-mode" "20200304.432" "Mode for the dot-language used by graphviz (att)."
'((emacs "25.0"))
:keywords
'("mode" "dot" "dot-language" "dotlanguage" "graphviz" "graphs" "att")

View file

@ -771,8 +771,6 @@ then indent this and each subgraph in it."
(message command-result)
(progn
(sleep-for 0 graphviz-dot-revert-delay)
(when (= (length windows) 1)
(split-window-sensibly))
(with-selected-window (selected-window)
(switch-to-buffer-other-window (find-file-noselect f-name t))
;; I get "changed on disk; really edit the buffer?" prompt w/o this

View file

@ -70,9 +70,9 @@
(define-infix-argument magit-merge:--strategy ()
:description "Strategy"
:class 'transient-option
;; key for merge: "-s"
;; key for merge and rebase: "-s"
;; key for cherry-pick and revert: "=s"
;; shortarg for merge: "-s"
;; shortarg for merge and rebase: "-s"
;; shortarg for cherry-pick and revert: none
:key "-s"
:argument "--strategy="

View file

@ -71,15 +71,23 @@ changes introduced by that commit (unlike 'git format-patch'
which creates patches for all commits that are reachable from
`HEAD' but not from the specified commit)."
:man-page "git-format-patch"
:incompatible '(("--subject-prefix=" "--rfc"))
["Mail arguments"
(magit-format-patch:--in-reply-to)
(magit-format-patch:--thread)
(6 magit-format-patch:--in-reply-to)
(6 magit-format-patch:--thread)
(6 magit-format-patch:--from)
(6 magit-format-patch:--to)
(6 magit-format-patch:--cc)]
["Patch arguments"
(magit-format-patch:--base)
(magit-format-patch:--reroll-count)
(5 magit-format-patch:--interdiff)
(magit-format-patch:--range-diff)
(magit-format-patch:--subject-prefix)
("C-m r " "RFC subject prefix" "--rfc")
("C-m l " "Add cover letter" "--cover-letter")
(magit-format-patch:--from)
(magit-format-patch:--to)
(magit-format-patch:--cc)
(5 magit-format-patch:--cover-from-description)
(5 magit-format-patch:--notes)
(magit-format-patch:--output-directory)]
["Diff arguments"
(magit-diff:-U)
@ -124,14 +132,32 @@ which creates patches for all commits that are reachable from
(define-infix-argument magit-format-patch:--in-reply-to ()
:description "In reply to"
:class 'transient-option
:key "C-m r "
:key "C-m C-r"
:argument "--in-reply-to=")
(define-infix-argument magit-format-patch:--thread ()
:description "Thread style"
:class 'transient-option
:key "C-m s "
:argument "--thread=")
:argument "--thread="
:reader #'magit-format-patch-select-thread-style)
(defun magit-format-patch-select-thread-style (&rest _ignore)
(magit-read-char-case "Thread style " t
(?d "[d]eep" "deep")
(?s "[s]hallow" "shallow")))
(define-infix-argument magit-format-patch:--base ()
:description "Insert base commit"
:class 'transient-option
:key "C-m b "
:argument "--base="
:reader #'magit-format-patch-select-base)
(defun magit-format-patch-select-base (prompt initial-input history)
(or (magit-completing-read prompt (cons "auto" (magit-list-refnames))
nil nil initial-input history "auto")
(user-error "Nothing selected")))
(define-infix-argument magit-format-patch:--reroll-count ()
:description "Reroll count"
@ -141,12 +167,50 @@ which creates patches for all commits that are reachable from
:argument "--reroll-count="
:reader 'transient-read-number-N+)
(define-infix-argument magit-format-patch:--interdiff ()
:description "Insert interdiff"
:class 'transient-option
:key "C-m d i"
:argument "--interdiff="
:reader #'magit-transient-read-revision)
(define-infix-argument magit-format-patch:--range-diff ()
:description "Insert range-diff"
:class 'transient-option
:key "C-m d r"
:argument "--range-diff="
:reader #'magit-format-patch-select-range-diff)
(defun magit-format-patch-select-range-diff (prompt _initial-input _history)
(magit-read-range-or-commit prompt))
(define-infix-argument magit-format-patch:--subject-prefix ()
:description "Subject Prefix"
:class 'transient-option
:key "C-m p "
:argument "--subject-prefix=")
(define-infix-argument magit-format-patch:--cover-from-description ()
:description "Use branch description"
:class 'transient-option
:key "C-m D "
:argument "--cover-from-description="
:reader #'magit-format-patch-select-description-mode)
(defun magit-format-patch-select-description-mode (&rest _ignore)
(magit-read-char-case "Use description as " t
(?m "[m]essage" "message")
(?s "[s]ubject" "subject")
(?a "[a]uto" "auto")
(?n "[n]othing" "none")))
(define-infix-argument magit-format-patch:--notes ()
:description "Insert commentary from notes"
:class 'transient-option
:key "C-m n "
:argument "--notes="
:reader #'magit-notes-read-ref)
(define-infix-argument magit-format-patch:--from ()
:description "From"
:class 'transient-option

View file

@ -1,4 +1,4 @@
(define-package "magit" "20200228.1207" "A Git porcelain inside Emacs."
(define-package "magit" "20200303.124" "A Git porcelain inside Emacs."
'((emacs "25.1")
(async "20180527")
(dash "20180910")

View file

@ -502,6 +502,7 @@ This discards all changes made since the sequence started."
:if-not magit-rebase-in-progress-p
("-k" "Keep empty commits" "--keep-empty")
("-p" "Preserve merges" ("-p" "--preserve-merges"))
(7 magit-merge:--strategy)
("-d" "Lie about committer date" "--committer-date-is-author-date")
("-a" "Autosquash" "--autosquash")
("-A" "Autostash" "--autostash")

Some files were not shown because too many files have changed in this diff Show more