gnu: emacs-ace-window: Update to 0.10.0

[[PGP Signed Part:No public key for 7C7AFFBEFEF2CB25 created at 2020-04-05T22:27:27+0200 using RSA]]
* gnu/packages/emacs-xyz.scm (emacs-ace-window) Update to 0.10.0.

From c3dc065f9247c98ba90fbf3ec9c51abb06417269 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Sun, 5 Apr 2020 22:15:50 +0200
Subject: [PATCH] gnu: emacs-ace-window: Update to 0.10.0

* gnu/packages/emacs-xyz.scm (emacs-ace-window) Update to 0.10.0.
This commit is contained in:
Michael Rohleder 2020-04-05 22:27:27 +02:00 committed by Nicolas Goaziou
parent 757f2c1eff
commit cf637690aa
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -5976,33 +5976,30 @@ windows.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-ace-window (define-public emacs-ace-window
;; last release version is from 2015 (package
(let ((commit "a5344925e399e1f015721cda6cf5db03c90ab87a") (name "emacs-ace-window")
(revision "1")) (version "0.10.0")
(package (source
(name "emacs-ace-window") (origin
(version (git-version "0.9.0" revision commit)) (method git-fetch)
(source (uri (git-reference
(origin (url "https://github.com/abo-abo/ace-window.git")
(method git-fetch) (commit version)))
(uri (git-reference (file-name (git-file-name name version))
(url "https://github.com/abo-abo/ace-window.git") (sha256
(commit commit))) (base32
(file-name (git-file-name name version)) "0f3r40d5yxp2pm2j0nn86s29nqj8py0jxjbj50v4ci3hsd92d8jl"))))
(sha256 (build-system emacs-build-system)
(base32 (propagated-inputs
"18jm8gfgnf6ja9aarws5650lw2zfi3wdwc5j8r5ijn5fcqhfy7rc")))) `(("emacs-avy" ,emacs-avy)))
(build-system emacs-build-system) (home-page "https://github.com/abo-abo/ace-window")
(propagated-inputs (synopsis "Quickly switch windows in Emacs")
`(("emacs-avy" ,emacs-avy))) (description
(home-page "https://github.com/abo-abo/ace-window") "@code{ace-window} is meant to replace @code{other-window}.
(synopsis "Quickly switch windows in Emacs")
(description
"@code{ace-window} is meant to replace @code{other-window}.
In fact, when there are only two windows present, @code{other-window} is In fact, when there are only two windows present, @code{other-window} is
called. If there are more, each window will have its first character called. If there are more, each window will have its first character
highlighted. Pressing that character will switch to that window.") highlighted. Pressing that character will switch to that window.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public emacs-iedit (define-public emacs-iedit
;; Last release version was in 2016. ;; Last release version was in 2016.