This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b670a1ed28 gnu: Add emacs-markov-text.
b670a1ed28 is described below
commit b670a1ed28d8e9e31a8f698066eda39200ad5f5d
Author: ColdSideOfYourPillow <[email protected]>
AuthorDate: Sat Dec 27 02:22:48 2025 +0400
gnu: Add emacs-markov-text.
* gnu/packages/emacs-xyz.scm (emacs-markov-text): New variable.
Merges guix/guix#5153
Change-Id: Ie95b9f592aa1df8d5091a8c82b4cabaf30229482
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e54aa3ebd2..36a025ba8b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31213,6 +31213,38 @@ It replaces the standard completions buffer with Ido
prompt.")
(description "Makes ido-mode display prospects vertically.")
(license license:gpl3+)))
+(define-public emacs-markov-text
+ ;; No release upstream. Extract version from main file.
+ (let ((commit "a35c26853b368885072da21f1e2768c85944d55b")
+ (revision "0"))
+ (package
+ (name "emacs-markov-text")
+ (version (git-version "1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/skeeto/markov-text")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0clc0m3wmjym2x320d7scpz19pl3mwppwifmzcxb3mgj2p1p199x"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f ;no tests
+ #:include #~(cons "^data/" %default-include))) ;default seed text
+ (home-page "https://github.com/skeeto/markov-text")
+ (synopsis "Markov-chain text generator and Lorem Ipsum inserter")
+ ;; TRANSLATORS: "Lorem Ipsum" should not be translated.
+ (description
+ "This package provides commands to produce paragraph-like output.
+@code{markov-text} generates pseudo-random text from sample input using a
+Markov chain; paragraph and sentence lengths follow the chain states and are
+not directly controlled. It also includes a separate Lorem Ipsum generator
+with its own database and an interactive @code{lorem-ipsum-insert} command.")
+ (license license:unlicense))))
+
(define-public emacs-wordgen
(package
(name "emacs-wordgen")