all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Steve George <steve@futurile.net>
To: 67024@debbugs.gnu.org
Cc: Steve George <steve@futurile.net>, efraim@flashner.co.il
Subject: [bug#67024] [PATCH 54/54] gnu: Add stgit-2.
Date: Thu,  9 Nov 2023 19:38:51 +0000	[thread overview]
Message-ID: <cf368564f8aa03686336c4919fc737dc0bc411c6.1699556976.git.steve@futurile.net> (raw)
In-Reply-To: <20231109184212.173223-1-steve@futurile.net>

* gnu/packages/version-control.scm (stgit-2): New variable.

Change-Id: Ic5f29a5f0e3b5caa6c2aee4daf65d7e5dc09a6d5
---
 gnu/packages/version-control.scm | 60 ++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 1cc870e3c6a..1a3fe24fe1b 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -74,6 +74,7 @@ (define-module (gnu packages version-control)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix hg-download)
+  #:use-module (guix build-system cargo)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
@@ -91,6 +92,7 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages check)
   #:use-module (gnu packages cook)
+  #:use-module (gnu packages crates-io)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages docbook)
@@ -1517,6 +1519,64 @@ (define-public git-flow
 lot easier.")
     (license license:bsd-2)))
 
+(define-public stgit-2
+  (package
+    (name "stgit")
+    (version "2.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/stacked-git/stgit")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0cgv7chxqkjaqmzi4691in26j2fm8r0vanw8xzb9cqnz6350wvvj"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-anstyle" ,rust-anstyle-1)
+                       ("rust-anyhow" ,rust-anyhow-1)
+                       ("rust-bstr" ,rust-bstr-1)
+                       ("rust-bzip2-rs" ,rust-bzip2-rs-0.1)
+                       ("rust-clap" ,rust-clap-4)
+                       ("rust-ctrlc" ,rust-ctrlc-3)
+                       ("rust-curl" ,rust-curl-0.4)
+                       ("rust-encoding_rs" ,rust-encoding-rs-0.8)
+                       ("rust-flate2" ,rust-flate2-1)
+                       ("rust-gix" ,rust-gix-0.54)
+                       ("rust-indexmap" ,rust-indexmap-2)
+                       ("rust-is-terminal" ,rust-is-terminal-0.4)
+                       ("rust-nom" ,rust-nom-7)
+                       ("rust-serde" ,rust-serde-1)
+                       ("rust-serde-json" ,rust-serde-json-1)
+                       ("rust-strsim" ,rust-strsim-0.10)
+                       ("rust-tar" ,rust-tar-0.4)
+                       ("rust-tempfile" ,rust-tempfile-3)
+                       ("rust-termcolor" ,rust-termcolor-1)
+                       ("rust-thiserror" ,rust-thiserror-1)
+                       ("rust-time" ,rust-time-0.3))))
+    (native-inputs (list pkg-config))
+    (inputs (list openssl zlib curl))
+    (home-page "https://stacked-git.github.io/")
+    (synopsis "Stacked Git (StGit) manages Git commits as a stack of patches")
+    (description "StGit uses a patch stack workflow.  Each individual patch
+focuses on a single concern, while a stack of patches forms a series of commits.
+Patches are stored as normal git commits, allowing easy merging of StGit
+patches into other repositories using standard Git.
+
+Features include:
+@itemize
+@item Import and export patches from Git with @command{stg commit} and
+@command{stg uncommit}
+@item Create new patches and add them to the stack with @command{stg new}
+@item Update a patch from the working tree with @command{stg refresh} and
+@command{stg edit}
+@item See information about the stack or patch with @command{stg series} and
+@command{stg show}
+@item Export and send a series of patches by email using @command{stg email}
+@end itemize")
+    (license license:gpl2)))
+
 (define-public stgit
   (package
     (name "stgit")
-- 
2.41.0





  parent reply	other threads:[~2023-11-09 19:45 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-09 18:39 [bug#67024] [PATCH 00/54] Series to add StackedGit 2.4 Steve George
2023-11-09 19:37 ` [bug#67024] [PATCH 01/54] gnu: Add rust-gix-hash-0.13 Steve George
2023-11-09 19:37 ` [bug#67024] [PATCH 02/54] gnu: Add rust-prodash-26 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 03/54] gnu: Add rust-gix-features-0.35 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 04/54] gnu: Add rust-byteyarn-0.2 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 05/54] gnu: Add rust-gix-path-0.10 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 06/54] gnu: Add rust-gix-glob-0.13 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 07/54] gnu: Add rust-gix-attributes-0.19 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 08/54] gnu: Add rust-gix-date-0.8 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 09/54] gnu: Add rust-gix-actor-0.27 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 10/54] gnu: Add rust-gix-validate-0.8 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 11/54] gnu: Add rust-gix-object-0.37 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 12/54] gnu: Add rust-gix-packetline-blocking-0.16 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 13/54] gnu: Add rust-gix-filter-0.5 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 14/54] gnu: Add rust-gix-fs-0.7 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 15/54] gnu: Add rust-gix-tempfile-10 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 16/54] gnu: Add rust-gix-lock-10 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 17/54] gnu: Add rust-gix-commitgraph-0.21 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 18/54] gnu: Add rust-gix-hashtable-0.4 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 19/54] gnu: Add rust-gix-revwalk-0.8 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 20/54] gnu: Add rust-gix-traverse-0.33 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 21/54] gnu: Add rust-gix-index-0.25 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 22/54] gnu: Add rust-gix-ignore-0.8 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 23/54] gnu: Add rust-gix-worktree-0.26 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 24/54] gnu: Add rust-gix-worktree-state-0.3 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 25/54] gnu: Add rust-gix-worktree-stream-0.5 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 26/54] gnu: rust-libtest-mimic-0.6: Update to 0.6.1 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 27/54] gnu: Add rust-gix-url-0.24 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 28/54] gnu: Add rust-gix-config-value-0.14 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 29/54] gnu: Add rust-gix-prompt-0.7 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 30/54] gnu: Add rust-gix-sec-0.10 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 31/54] gnu: Add rust-gix-credentials-0.20 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 32/54] gnu: Add rust-gix-transport-0.37 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 33/54] gnu: Add rust-gix-pathspec-0.3 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 34/54] gnu: Add rust-gix-status-0.1 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 35/54] gnu: Add rust-gix-revision-0.22 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 36/54] gnu: Add rust-gix-refspec-0.18 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 37/54] gnu: Add rust-gix-ref-0.37 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 38/54] gnu: Add rust-gix-protocol-0.40 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 39/54] gnu: Add rust-gix-diff-0.36 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 40/54] gnu: Add rust-gix-pack-0.43 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 41/54] gnu: Add rust-gix-odb-0.53 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 42/54] gnu: Add rust-gix-negotiate-0.8 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 43/54] gnu: Add rust-gix-mailmap-0.19 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 44/54] gnu: Add rust-gix-macros-0.1 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 45/54] gnu: Add rust-gix-discover-0.25 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 46/54] gnu: Add rust-gix-config-0.30 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 47/54] gnu: rust-zip-0.6: Update to 0.6.6 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 48/54] gnu: Add rust-gix-archive-0.5 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 49/54] gnu: Add rust-gix-submodule-0.4 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 50/54] gnu: Add rust-gix-0.54 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 51/54] gnu: rust-caps-0.5: Update to 0.5.5 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 52/54] gnu: Add rust-nix-0.27 Steve George
2023-11-09 19:38 ` [bug#67024] [PATCH 53/54] gnu: rust-ctrlc-3: Update to 3.2.5 Steve George
2023-11-09 19:38 ` Steve George [this message]
2023-11-28 10:33 ` bug#67024: [PATCH 00/54] Series to add StackedGit 2.4 Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cf368564f8aa03686336c4919fc737dc0bc411c6.1699556976.git.steve@futurile.net \
    --to=steve@futurile.net \
    --cc=67024@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.