[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28322] [PATCH] gnu: Add stgit.
From: |
Stefan Reichör |
Subject: |
[bug#28322] [PATCH] gnu: Add stgit. |
Date: |
Fri, 01 Sep 2017 22:37:02 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) |
>From 8c5fbd1e136fde447d8fdc26d9fcc0aacb54a07b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <address@hidden>
Date: Fri, 1 Sep 2017 22:35:17 +0200
Subject: [PATCH] gnu: Add stgit.
* gnu/packages/version-control.scm (stgit): New variable.
---
gnu/packages/version-control.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 36a6b7c..0b98dcf 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -16,6 +16,7 @@
;;; Copyright © 2017 Clément Lassieur <address@hidden>
;;; Copyright © 2017 André <address@hidden>
;;; Copyright © 2017 Marius Bakke <address@hidden>
+;;; Copyright © 2017 Stefan Reichör <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -639,6 +640,33 @@ subcommands helps automate some parts of the flow to make
working with it a
lot easier.")
(license license:bsd-2)))
+(define-public stgit
+ (package
+ (name "stgit")
+ (version "0.18")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/ctmarinas/stgit/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "19fk6vw3pgp2a98wpd4j3kyiyll5dy9bi4921wq1mrky0l53mj00"))))
+ (build-system python-build-system)
+ (inputs
+ `(("git" ,git)))
+ (arguments
+ `(#:python ,python-2))
+ (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.")
+ (license license:gpl2)))
+
(define-public git-test-sequence
(let ((commit "48e5a2f5a13a5f30452647237e23362b459b9c76"))
(package
--
2.7.4
- [bug#28322] [PATCH] gnu: Add stgit.,
Stefan Reichör <=