From unknown Fri Jun 20 07:10:28 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#71813 <71813@debbugs.gnu.org> To: bug#71813 <71813@debbugs.gnu.org> Subject: Status: [PATCH v3] gnu: Add got. Reply-To: bug#71813 <71813@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:10:28 +0000 retitle 71813 [PATCH v3] gnu: Add got. reassign 71813 guix-patches submitter 71813 ashish.is@lostca.se severity 71813 normal tag 71813 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 28 02:04:26 2024 Received: (at submit) by debbugs.gnu.org; 28 Jun 2024 06:04:26 +0000 Received: from localhost ([127.0.0.1]:51426 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sN4if-0000n2-Mw for submit@debbugs.gnu.org; Fri, 28 Jun 2024 02:04:26 -0400 Received: from lists.gnu.org ([209.51.188.17]:51160) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sN4ic-0000mL-6F for submit@debbugs.gnu.org; Fri, 28 Jun 2024 02:04:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sN3wK-0002aM-LN for guix-patches@gnu.org; Fri, 28 Jun 2024 01:14:30 -0400 Received: from anamika.lostca.se ([65.21.75.227]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1sN3wI-0003kv-FM for guix-patches@gnu.org; Fri, 28 Jun 2024 01:14:28 -0400 Received: from localhost.localdomain (99.red-81-34-48.dynamicip.rima-tde.net [81.34.48.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: abbe) by anamika.lostca.se (Postfix) with ESMTPSA id 2C3C615540; Fri, 28 Jun 2024 05:14:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1719551662; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=20L30TABRIyQr7I5UQPvq40jXniIMMqBFkil9oM28tQ=; b=FVl3KugImbleHMMdFXbZBF2M6SCis1bjTtfTMBlObr12+28urypnlo81pOT99yugppw32O e72RCHpRE0qSytLbCdzb8Q7jZ1skq/VO3eGNSzh5snMv2z+ZQLDmlwq/Thl41S8Rw5Z8cv nCdkeyH5jQ7N8XlXw++KKcHwZT69IhU= From: ashish.is@lostca.se To: 71764@debbugs.gnu.org Subject: [PATCH v3] gnu: Add got. Date: Fri, 28 Jun 2024 07:13:15 +0200 Message-ID: X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=65.21.75.227; envelope-from=ashish.is@lostca.se; helo=anamika.lostca.se X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Ashish SHUKLA , guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Ashish SHUKLA * gnu/packages/version-control.scm (got): New variable. Change-Id: I309a975c1abfad1461cf475136eae39fe31e3097 --- This revision adds a workaround for hardcoded paths of ssh, ssh-keygen, and signify executables by switching to execvp from execv. gnu/packages/version-control.scm | 50 ++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index da02d0e4ea..4a063cd221 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -52,6 +52,7 @@ ;;; Copyright © 2023 Steve George ;;; Copyright © 2023 Josselin Poiret ;;; Copyright © 2024 Hilton Chain +;;; Copyright © 2024 Ashish SHUKLA ;;; ;;; 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,52 @@ (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 perl)) + (arguments + `(;; disable runpath validation, courtesy: libbsd's special + ;; treatment of libmd + #:validate-runpath? #f + #:configure-flags + '("CFLAGS=-DGOT_DIAL_PATH_SSH=\\\"ssh\\\" -DGOT_TAG_PATH_SSH_KEYGEN=\\\"ssh-keygen\\\" -DGOT_TAG_PATH_SIGNIFY=\\\"signify\\\"") + #:phases ,#~(modify-phases %standard-phases + (add-after 'unpack 'patch-execv-to-execvp + (lambda _ + ;; got sources has paths hardcoded to /usr/bin + (substitute* "lib/dial.c" + (("execv\\(GOT_DIAL_") "execvp(GOT_DIAL_") + (("execv %s\", GOT_DIAL") "execvp %s\", GOT_DIAL")) + (substitute* "lib/sigs.c" + (("execv\\(GOT_TAG") "execvp(GOT_TAG") + (("execv %s\", GOT_TAG") "execvp %s\", GOT_TAG")) + #t))))) + (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: 78b881722f08325c76096557313a0faee847c66f -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 28 06:02:35 2024 Received: (at control) by debbugs.gnu.org; 28 Jun 2024 10:02:35 +0000 Received: from localhost ([127.0.0.1]:44715 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sN8R9-0000nK-3E for submit@debbugs.gnu.org; Fri, 28 Jun 2024 06:02:35 -0400 Received: from anamika.lostca.se ([65.21.75.227]:39804) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sN8R6-0000n5-TK for control@debbugs.gnu.org; Fri, 28 Jun 2024 06:02:33 -0400 Received: from email.lostca.se (localhost [IPv6:::1]) by anamika.lostca.se (Postfix) with ESMTP id ED21D15794 for ; Fri, 28 Jun 2024 08:45:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lostca.se; s=anamika; t=1719564343; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=ZqbTxHUSDoAjZOYSqaucmc1ISxRwFzpfXSlOaMc3DGE=; b=nLbz1qU4KXvhPTdEJf8E05LnmYC4SLbHecx0IHD4fPckHouB4crJV4foT75ts+tuLG4Ltd GyuF3jU/VoQUylkY1EF3TQXezWD4gmBatdPzzFwk+z5A5zTGlZMbXNGUAIZTMTWiJyOJoq D/gzEwN41kOongQUlAX7THEH/m3otDI= MIME-Version: 1.0 Date: Fri, 28 Jun 2024 10:45:35 +0200 From: Ashish SHUKLA To: control@debbugs.gnu.org Subject: bugs changes User-Agent: Roundcube Webmail/1.6.5 Message-ID: <4cb829c78a3b3e0edf7c5920d9ada348@lostca.se> X-Sender: ashish.is@lostca.se Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 71813 retitle 71764 [PATCH v3] gnu: Add got. quit From unknown Fri Jun 20 07:10:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 26 Jul 2024 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator