[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#28322: [PATCH] gnu: Add stgit.
From: |
Ludovic Courtès |
Subject: |
bug#28322: [PATCH] gnu: Add stgit. |
Date: |
Thu, 14 Sep 2017 13:55:26 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Hello,
Stefan Reichör <address@hidden> skribis:
>>From 5affac94ba90854b8a6f302cbf60cf0b36b104ec Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <address@hidden>
> Date: Tue, 5 Sep 2017 22:10:27 +0200
> Subject: [PATCH] gnu: Add stgit.
>
> * gnu/packages/version-control.scm (stgit): New variable.
I went ahead and committed it with the changes below.
Stefan & Marius: you’re welcome to continue the discussion and improve
the package later though. :-)
Thank you!
Ludo’.
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index e6fa886dc..235adef02 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -700,17 +700,17 @@ lot easier.")
(replace 'check
(lambda _
;; two tests will fail -> disable them. TODO: fix the failing
tests
- (system* "mv" "t/t3300-edit.sh" "t/t3300-edit.sh-disabled")
- (system* "mv" "t/t7504-commit-msg-hook.sh"
"t/t7504-commit-msg-hook.sh-disabled")
+ (delete-file "t/t3300-edit.sh")
+ (delete-file "t/t7504-commit-msg-hook.sh")
(zero? (system* "make" "test")))))))
(home-page "http://procode.org/stgit/")
(synopsis "Stacked Git")
(description
"StGit is a command-line application that provides functionality similar
-to Quilt (i.e. pushing/popping patches to/from a stack), but using Git instead
-of diff and patch. StGit stores its patches in a Git repository as normal Git
-commits, and provides a number of commands to manipulate them in various
-ways.")
+to Quilt (i.e., pushing/popping patches to/from a stack), but using Git
+instead of @command{diff} and @command{patch}. StGit stores its patches in a
+Git repository as normal Git commits, and provides a number of commands to
+manipulate them in various ways.")
(license license:gpl2)))
(define-public git-test-sequence