gnu: emacs-company-posframe: Update to 0.5.0.

* gnu/packages/emacs-xyz.scm (emacs-company-posframe): Update to 0.5.0.
This commit is contained in:
Nicolas Goaziou 2021-02-08 08:21:49 +01:00
parent 0580fd1bae
commit d30ea0cf24
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -5280,33 +5280,30 @@ (define-public emacs-company-box
(license license:gpl3+))))
(define-public emacs-company-posframe
(let ((version "0.1.0")
(revision "2")
(commit "4bfb8bccef4b64479f4147de6bf6fbd05df2a67e"))
(package
(name "emacs-company-posframe")
(version (git-version version revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tumashu/company-posframe")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0k19gkh8xbap4j1jjqw6lnkp1v2q76fz3ryrns7kvbzmca3y5599"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-company" ,emacs-company)
("emacs-posframe" ,emacs-posframe)))
(home-page "https://github.com/tumashu/company-posframe")
(synopsis "Use a posframe for @code{emacs-company}'s candidate menu")
(description
"Allows @code{emacs-company} to use child frames for its candidate menus.
(package
(name "emacs-company-posframe")
(version "0.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tumashu/company-posframe")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"05ays6xkqbxcfplvx7wfc2slflmwc3aw7vkixvabk0ilvisndvgm"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-company" ,emacs-company)
("emacs-posframe" ,emacs-posframe)))
(home-page "https://github.com/tumashu/company-posframe")
(synopsis "Use a posframe for @code{emacs-company}'s candidate menu")
(description
"Allows @code{emacs-company} to use child frames for its candidate menus.
@code{emacs-company-posframe} is fast enough for daily use and supports CJK
languages.")
(license license:gpl3+))))
(license license:gpl3+)))
(define-public emacs-irony-mode
(package