GNU bug report logs - #71764
[PATCH v7] gnu: Add got.

Previous Next

Package: guix-patches;

Reported by: ashish.is <at> lostca.se

Date: Mon, 24 Jun 2024 23:03:02 UTC

Severity: normal

Tags: patch

Done: Andreas Enge <andreas <at> enge.fr>

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: ashish.is <at> lostca.se
Subject: bug#71764: closed (Close)
Date: Mon, 30 Sep 2024 12:21:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#71764: [PATCH v7] gnu: Add got.

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 71764 <at> debbugs.gnu.org.

-- 
71764: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71764
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Andreas Enge <andreas <at> enge.fr>
To: 71764-done <at> debbugs.gnu.org
Subject: Close
Date: Mon, 30 Sep 2024 14:19:40 +0200
Pushed after correcting the license (it is isc, not bsd-3) and truncating
a long line.

Thanks!

Andreas


[Message part 3 (message/rfc822, inline)]
From: ashish.is <at> lostca.se
To: guix-patches <at> gnu.org
Cc: Ashish SHUKLA <ashish.is <at> lostca.se>
Subject: [PATCH] gnu: Add got.
Date: Tue, 25 Jun 2024 01:01:12 +0200
From: Ashish SHUKLA <ashish.is <at> lostca.se>

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

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

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index da02d0e4ea..8be76eafa0 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -52,6 +52,7 @@
 ;;; Copyright © 2023 Steve George <steve <at> futurile.net>
 ;;; Copyright © 2023 Josselin Poiret <dev <at> jpoiret.xyz>
 ;;; Copyright © 2024 Hilton Chain <hako <at> ultrarare.space>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is <at> lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -98,6 +99,7 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages cook)
   #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crates-vcs)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages docbook)
@@ -120,6 +122,8 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages guile-xyz)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages libbsd)
+  #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mail)
   #:use-module (gnu packages man)
@@ -830,6 +834,39 @@ (define-public git-cal
 to GitHub contributions calendar.")
     (license license:expat)))
 
+(define-public got
+  (package
+   (name "got")
+   (version "0.100")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "https://gameoftrees.org/releases/portable/got-portable-"
+                                version ".tar.gz"))
+            (sha256
+             (base32
+              "04jhaqzskr26akmy963yc8gaw1pqbsxhgsxzd0yrssgzcwh8lfpw"))))
+   (inputs
+    `(("libevent" ,libevent)
+      ("libuuid" ,util-linux "lib")
+      ("zlib" ,zlib)
+      ("libressl" ,libressl)
+      ("libmd" ,libmd)
+      ("libbsd" ,libbsd)
+      ("ncurses" ,ncurses)))
+   (native-inputs
+    (list pkg-config))
+   (arguments
+     ;; disable runpath validation, courtesy: libbsd's special
+     ;; treatment of libmd
+     (list #:validate-runpath? #f))
+   (build-system gnu-build-system)
+   (synopsis "Distributed version control system")
+   (description
+     "Game of Trees (Got) is a version control system which prioritizes ease of use
+and simplicity over flexibility.")
+    (license license:bsd-3)
+    (home-page "https://gameoftrees.org/")))
+
 (define-public xdiff
   (let ((revision "0")
         (commit "a137bc7ee6c76618ed1737c257548eaa10ac0089"))

base-commit: 78d946b01162fbe986c6768800e8cfd6e70e67e5
-- 
2.45.2




This bug report was last modified 295 days ago.

Previous Next


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