GNU bug report logs - #46962
[PATCH] gnu: Add git2cl.

Previous Next

Package: guix-patches;

Reported by: Xinglu Chen <public <at> yoctocell.xyz>

Date: Sat, 6 Mar 2021 09:29:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Xinglu Chen <public <at> yoctocell.xyz>
Subject: bug#46962: closed (Re: bug#46962: [PATCH] gnu: Add git2cl.)
Date: Fri, 19 Mar 2021 20:53:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#46962: [PATCH] gnu: Add git2cl.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 46962 <at> debbugs.gnu.org.

-- 
46962: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46962
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: Xinglu Chen <public <at> yoctocell.xyz>
Cc: 46962-done <at> debbugs.gnu.org
Subject: Re: bug#46962: [PATCH] gnu: Add git2cl.
Date: Fri, 19 Mar 2021 21:52:29 +0100
Hi,

Xinglu Chen <public <at> yoctocell.xyz> skribis:

> * gnu/packages/version-control.scm (git2cl): New variable.

I changed the license to ‘gpl2+’ (meaning “or any later version”),
capitalized “Git”, and committed.

Thanks!

Ludo’.

[Message part 3 (message/rfc822, inline)]
From: Xinglu Chen <public <at> yoctocell.xyz>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add git2cl.
Date: Sat, 06 Mar 2021 10:28:02 +0100
* gnu/packages/version-control.scm (git2cl): New variable.
---
 gnu/packages/version-control.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 8292a5df15..c363aadfdf 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -36,6 +36,7 @@
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2021 Chris Marusich <cmmarusich <at> gmail.com>
 ;;; Copyright © 2021 Léo Le Bouter <lle-bout <at> zaclys.net>
+;;; Copyright © 2021 Xinglu Chen <public <at> yoctocell.xyz>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -599,6 +600,32 @@ everything from small to very large projects with speed and efficiency.")
        ("perl" ,perl)
        ("zlib" ,zlib)))))
 
+(define-public git2cl
+  (let ((commit "1d74d4c0d933fc69ed5cec838c73502584dead05"))
+    (package
+      (name "git2cl")
+      (version (string-append "20120919." (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://git.savannah.nongnu.org/git/git2cl.git")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0wnnbm2sjvfj0qrksj89jlnl69miwl0vk3wrrvgvpclgys3na2g1"))))
+      (build-system copy-build-system)
+      (inputs
+       `(("perl" ,perl)))
+      (arguments
+       `(#:install-plan
+         '(("git2cl" "bin/git2cl"))))
+      (home-page "https://savannah.nongnu.org/projects/git2cl")
+      (synopsis "Convert git logs to GNU ChangeLog format")
+      (description "@code{git2cl} is a command line tool for converting git
+logs to GNU ChangeLog format.")
+      (license license:gpl2))))
+
 (define-public gitless
   (package
     (name "gitless")

base-commit: 112692c0d546d35cd67c5dc70dbd1dc609b18f64
-- 
2.30.0





This bug report was last modified 4 years and 65 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.