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 3995e51f75 gnu: Add emacs-agitjo.
3995e51f75 is described below

commit 3995e51f75a947640a9d8e5e850045ad0e4b344c
Author: Alvin Hsu <[email protected]>
AuthorDate: Fri Aug 29 22:59:31 2025 -0400

    gnu: Add emacs-agitjo.
    
    * gnu/packages/emacs-xyz.scm (emacs-agitjo): New variable.
    
    Change-Id: I2b7597b337e7f46ec062860818d142762faefeb2
    Signed-off-by: Cayetano Santos <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e92c9876e9..28d1c6a70a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -148,7 +148,7 @@
 ;;; Copyright © 2024, 2025 Spencer King <[email protected]>
 ;;; Copyright © 2024 emma thompson <[email protected]>
 ;;; Copyright © 2024-2025 Liam Hupfer <[email protected]>
-;;; Copyright © 2024-2025 aurtzy <[email protected]>
+;;; Copyright © 2024-2025 Alvin Hsu <[email protected]>
 ;;; Copyright © 2024 Olivier Rojon <[email protected]>
 ;;; Copyright © 2024 Divya Ranjan Pattanaik <[email protected]>
 ;;; Copyright © 2025 Arjan Adriaanse <[email protected]>
@@ -2336,6 +2336,32 @@ before interacting with non-free LLMs.")
 @acronym{Large Language Models, LLM} clients in Emacs.")
       (license license:gpl3+))))
 
+(define-public emacs-agitjo
+  (package
+    (name "emacs-agitjo")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://codeberg.org/halvin/agitjo";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1wbhi4lbqk0vf0di86a9wljvva3a9vhb2wvsn1s44h53xslhrj0n"))))
+    (build-system emacs-build-system)
+    (arguments (list #:tests? #f))      ;no tests
+    (propagated-inputs (list emacs-magit emacs-markdown-mode emacs-transient))
+    (home-page "https://codeberg.org/halvin/agitjo";)
+    (synopsis "Manage Forgejo PRs with AGit-Flow in Emacs")
+    (description
+     "AGitjo is a GNU Emacs package that extends Magit with a new menu for
+AGit-Flow operations, to make them more convenient for users.  The AGit 
workflow
+enables users to create and edit pull requests using just the @code{git push}
+command.  This package is intended specifically for use with
+Forgejo-based (e.g. Codeberg) repositories.")
+    (license license:gpl3+)))
+
 (define-public emacs-magit
   (package
     (name "emacs-magit")

Reply via email to