gnu: emacs-ansible-doc: Update to 0.4-2.648c844.

Hello,

This patch not updates the package, it also moves it to emacs-xyz
where all other emacs packages are collected too.  Thought it would
fit better there.

Kind regards

* gnu/packages/admin.scm (emacs-ansible-doc): Move variable from here…
* gnu/packages/emacs-xyz.scm: … to here and update to 0.4-2.648c84.
  Update source and homepage URL to maintained fork.

Change-Id: I910e773661d98b13ada374e8f5086448bb4d2586
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Simon Streit 2025-03-20 21:39:46 +01:00 committed by Ian Eure
parent f1e5e9d1ca
commit 0a047df7f5
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2
2 changed files with 31 additions and 29 deletions

View file

@ -119,7 +119,7 @@
;;; Copyright © 2022, 2024, 2025 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2022 Thiago Jung Bauermann <bauermann@kolabnow.com>
;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net>
;;; Copyright © 2023 Simon Streit <simon@netpanic.org>
;;; Copyright © 2023, 2025 Simon Streit <simon@netpanic.org>
;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
;;; Copyright © 2022 Demis Balbach <db@minikn.xyz>
@ -24033,6 +24033,35 @@ literate programming tools for exporting, weaving and tangling.")
"This is an Emacs minor mode for editing Ansible files.")
(license license:gpl2+)))
(define-public emacs-ansible-doc
(let ((commit "648c844ab46f56c2c7ee25687ad2952a5d5eb4c7")
(revision "2")
(version "0.4"))
(package
(name "emacs-ansible-doc")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fredericgiquel/ansible-doc")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"02xnkgsrq54bpk26z9cs352r5rq0scmzw2czlq2pyq1332g6lycd"))))
(build-system emacs-build-system)
(home-page "https://github.com/fredericgiquel/ansible-doc")
(synopsis "Ansible documentation for Emacs")
(description
"This package provides an Ansible documentation for GNU Emacs.
@code{ansible-doc} allows you to view the documentation of an Ansible
module and @code{ansible-doc-mode} minor mode adds documentation
lookup to YAML Mode. You could enable the mode with @code{(add-hook
'yaml-mode-hook #'ansible-doc-mode)}.")
(license license:gpl3+))))
(define-public emacs-polymode-ansible
(package
(name "emacs-polymode-ansible")