From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50662) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxaCg-0006G6-DQ for guix-patches@gnu.org; Sat, 23 Feb 2019 11:31:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxaCf-0002no-HP for guix-patches@gnu.org; Sat, 23 Feb 2019 11:31:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36006) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gxaCc-0002mH-Ih for guix-patches@gnu.org; Sat, 23 Feb 2019 11:31:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gxaCc-0000w1-EI for guix-patches@gnu.org; Sat, 23 Feb 2019 11:31:02 -0500 Subject: [bug#34633] [PATCH] gnu: fossil: Update to 2.8. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:50520) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxaC5-00069C-3s for guix-patches@gnu.org; Sat, 23 Feb 2019 11:30:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxaC2-0002PF-3N for guix-patches@gnu.org; Sat, 23 Feb 2019 11:30:28 -0500 Received: from mx1.riseup.net ([198.252.153.129]:52062) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gxaBv-0002JJ-Lh for guix-patches@gnu.org; Sat, 23 Feb 2019 11:30:20 -0500 Received: from bell.riseup.net (unknown [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id A233E1A057B for ; Sat, 23 Feb 2019 08:30:12 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 3788B22002F for ; Sat, 23 Feb 2019 08:30:09 -0800 (PST) Date: Sat, 23 Feb 2019 11:30:04 -0500 From: "Jovany Leandro G.C" Message-ID: <20190223112249.0619338f@riseup.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable 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: 34633@debbugs.gnu.org =46rom 6f8d5108e98378e0fbabd4b193829b1becfcb86f Mon Sep 17 00:00:00 2001 From: "Jovany Leandro G.C" Date: Sat, 23 Feb 2019 11:13:47 -0500 Subject: [PATCH 1/1] gnu: fossil: Update to 2.8. * gnu/packages/version-control.scm (fossil): Update to 2.8. --- gnu/packages/version-control.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 5ca9471a4..82a481a10 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1867,7 +1867,7 @@ repository\" with git-annex.") (define-public fossil (package (name "fossil") - (version "2.5") + (version "2.8") (source (origin (method url-fetch) @@ -1881,7 +1881,7 @@ repository\" with git-annex.") "fossil-src-" version ".tar.gz"))) (sha256 (base32 - "1lxawkhr1ki9fqw8076fxib2b1w673449yzb6vxjshqzh5h77c7r")))) + "0pbinf8d2kj1j7niblhzjd2l2khg6r2pn2xvig6gavz27p3vwcka")))) (build-system gnu-build-system) (native-inputs `(("tcl" ,tcl) ;for configuration only @@ -1890,12 +1890,17 @@ repository\" with git-annex.") (inputs `(("openssl" ,openssl) ("zlib" ,zlib) - ("sqlite" ,sqlite))) + ("sqlite" ,sqlite-3.26.0))) (arguments `(#:configure-flags (list "--with-openssl=3Dauto" "--disable-internal-sqlite") #:test-target "test" #:phases (modify-phases %standard-phases + (add-after 'patch-source-shebangs 'patch-sh + (lambda _ + (substitute* '("auto.def") + (("/bin/sh") (which "sh"))) + #t)) (replace 'configure (lambda* (#:key outputs (configure-flags '()) #:allow-other-keys) --=20 2.19.0