From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dsSkZ-0000W1-02 for guix-patches@gnu.org; Thu, 14 Sep 2017 07:56:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dsSkV-00034W-0t for guix-patches@gnu.org; Thu, 14 Sep 2017 07:56:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59357) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dsSkU-00034E-TS for guix-patches@gnu.org; Thu, 14 Sep 2017 07:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dsSkU-0006Et-LY for guix-patches@gnu.org; Thu, 14 Sep 2017 07:56:02 -0400 Subject: bug#28322: [PATCH] gnu: Add stgit. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87lglyi2a9.fsf@xsteve.at> <87h8wll64x.fsf@fastmail.com> <87bmmoaocj.fsf@xsteve.at> Date: Thu, 14 Sep 2017 13:55:26 +0200 In-Reply-To: <87bmmoaocj.fsf@xsteve.at> ("Stefan \=\?utf-8\?Q\?Reich\=C3\=B6r\=22\?\= \=\?utf-8\?Q\?'s\?\= message of "Tue, 05 Sep 2017 22:21:16 +0200") Message-ID: <87a81xa40h.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Cc: 28322-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Stefan Reich=C3=B6r skribis: >>>From 5affac94ba90854b8a6f302cbf60cf0b36b104ec Mon Sep 17 00:00:00 2001 > From: =3D?UTF-8?q?Stefan=3D20Reich=3DC3=3DB6r?=3D > 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=E2=80=99re welcome to continue the discussion and impr= ove the package later though. :-) Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline 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 --=-=-=--