guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-treebundel.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-treebundel.
Date: Fri, 27 Oct 2023 09:31:12 -0400

This is an automated email from the git hooks/post-receive script.

abcdw pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new eeb7f88934 gnu: Add emacs-treebundel.
eeb7f88934 is described below

commit eeb7f8893403066f85d79baae994bfc44d584061
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Wed Oct 25 18:06:18 2023 +0200

    gnu: Add emacs-treebundel.
    
    * gnu/packages/emacs-xyz.scm (emacs-treebundel): New variable.
    
    Change-Id: I1b1037b69febd0bab59aae6dd95aeeaa6a5e1e2e
    Signed-off-by: Andrew Tropin <andrew@trop.in>
---
 gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 547cb64878..265749d6df 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -795,6 +795,35 @@ configuration language which makes it trivial to write 
your own themes.")
 Common Lisp or Smalltalk, but for Emacs Lisp.")
       (license license:gpl3+))))
 
+(define-public emacs-treebundel
+  (package
+    (name "emacs-treebundel")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/purplg/treebundel";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1hk2xnjsr85in48h02xbzi8lsccp36li2bp9v9j0r8qn1bis2vv9"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     (list emacs-compat))
+    (home-page "https://github.com/purplg/treebundel";)
+    (synopsis "Bundle related git-worktrees together")
+    (description
+     "This package is used for bundling related git-worktrees from multiple
+repositories together.  This helps switch quickly between repositories and
+ensure you're on the correct branch.  When you're done with your changes, you
+can use the repositories in the workspace and know which ones were modified to
+simplify the process of getting the changes merged in together.  Additionally,
+git metadata is shared between all projects.  You can stash, pop, and pull
+changes in from the same repository in other workspaces thanks to the power of
+git-worktrees.")
+    (license license:expat)))
+
 (define-public emacs-tree-inspector
   (let ((commit "bbb8d2dfe84fbf857fcc1579de5a1324b09a877e"))
     (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]