From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48028) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJMOL-0003Xm-Ju for guix-patches@gnu.org; Fri, 09 Jun 2017 12:04:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJMOI-0001Y4-EU for guix-patches@gnu.org; Fri, 09 Jun 2017 12:04:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34594) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dJMOI-0001Xf-Bq for guix-patches@gnu.org; Fri, 09 Jun 2017 12:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dJMOI-0007PP-3p for guix-patches@gnu.org; Fri, 09 Jun 2017 12:04:02 -0400 Subject: bug#27298: fossil 2.2 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47756) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJMNY-0002so-K8 for guix-patches@gnu.org; Fri, 09 Jun 2017 12:03:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJMNV-0001BA-FL for guix-patches@gnu.org; Fri, 09 Jun 2017 12:03:16 -0400 Received: from aibo.runbox.com ([91.220.196.211]:51500) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dJMNV-0001A1-7C for guix-patches@gnu.org; Fri, 09 Jun 2017 12:03:13 -0400 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1dJMNT-0000Ps-DU for guix-patches@gnu.org; Fri, 09 Jun 2017 18:03:11 +0200 Received: from tor-exit1-readme.dfri.se ([171.25.193.77] helo=localhost) by mailfront12.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1dJMNL-0005Bm-52 for guix-patches@gnu.org; Fri, 09 Jun 2017 18:03:03 +0200 Date: Fri, 9 Jun 2017 16:03:00 +0000 From: ng0 Message-ID: <20170609160300.voa4chugt5nxgoia@abyayala> References: <20170609155400.du3ffwgumyp7a5f5@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="thv3bvw74utuq6zs" Content-Disposition: inline In-Reply-To: <20170609155400.du3ffwgumyp7a5f5@abyayala> 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: 27298@debbugs.gnu.org --thv3bvw74utuq6zs Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I just realized I've sent a version with comments in it. Canb someone ng0 transcribed 5.4K bytes: > The appended patch updates fossil to 2.2. >=20 > From c7f91d765a43e9e9c08573bc4b018657ae725b35 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Fri, 3 Mar 2017 13:25:53 +0000 > Subject: [PATCH] gnu: fossil: Update to 2.2. >=20 > * gnu/packages/version-control.scm (fossil): Update to 2.2. > --- > gnu/packages/version-control.scm | 17 +++++++++++------ > 1 file changed, 11 insertions(+), 6 deletions(-) >=20 > diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-cont= rol.scm > index cd2576c51..5e3d78aec 100644 > --- a/gnu/packages/version-control.scm > +++ b/gnu/packages/version-control.scm > @@ -1281,16 +1281,21 @@ repository\" with git-annex.") > (define-public fossil > (package > (name "fossil") > - (version "1.35") > + (version "2.2") > (source > (origin > (method url-fetch) > - (uri (string-append > - "https://www.fossil-scm.org/index.html/uv/download/" > - "fossil-src-" version ".tar.gz")) > + ;; Older downloads are moved to another URL. > + (uri (list > + (string-append > + "https://www.fossil-scm.org/index.html/uv/download/" > + "fossil-src-" version ".tar.gz") > + (string-append > + "https://www.fossil-scm.org/index.html/uv/" > + "fossil-src-" version ".tar.gz"))) > (sha256 > (base32 > - "07ds6rhq69bhydpm9a01mgdhxf88p9b6y5hdnhn8gjc7ba92zyf1")))) > + "0wfgacfg29dkl0c3l1rp5ji0kraa64gcbg5lh8p4m7mqdqcq53wv")))) > (build-system gnu-build-system) > (native-inputs > `(("tcl" ,tcl) ;for configuration only > @@ -1321,7 +1326,7 @@ repository\" with git-annex.") > (setenv "TZ" "UTC") > ;; Fixing the th1 test would require many backport= s, so > ;; just disable for now. > - (delete-file "test/th1.test") > + ;; (delete-file "test/th1.test") Can the person applying this patch delete this line instead of the commenti= ng it? Thanks! > #t))))) > (home-page "https://fossil-scm.org") > (synopsis "Software configuration management system") > --=20 > 2.13.0 >=20 --=20 ng0 OpenPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 --thv3bvw74utuq6zs Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlk6xrQACgkQ4i+bv+40 hYhE6g//UH9fZwPiV5UJNBD7KuVjpgdM4Az13F9+s7ThVEYJ6fP+jw+7LKtn1Z0T nbBs2VjZCZGdBOWs+b1wgqDHWbrgOsNOu0CE3JyF/3lF5xm4XfTGs2UASgR8pC0X WvwzUDGSHoxQyzL+O2ICNO64KfksI0NN83hjpxKG+4ROwm3hlR+qEkSqYyUVRoDT LzwCgOVT4IVbh4R92QNTn9PvGpOaNqBG5Lh/ACwI2dNXFPIqudUkXJcTL9sMMrCf x4xfPZis4cBdJHSObu/NF+mJ1hSiebXF3B6fpX+kP+/bZTxjz8UjCRIy3N0UWQUx iIi6ytg0sEa2LpMsCJIF2/fgmg79b9i+nvZ1NDQHrcDNa+XU+FTiH5fYFHjL9auV QsqZUt9mdPYkLjWPm0kCpvJa+ByRiyoFmj8/f7KYgM3hvvFz3CDpd2bMkNYDJ7Z1 5uVy5GC1p5rHd64xXyzcH4kSlqOXVvU0iZPN1JVxtLA5STlrexL2BnTqyfLjop9U uEvfe9gAGGR2nWr/cDonZptNdoonxpcF0Oc7JYem8I9x5gnPuxmWc1kkQb0duWON dEjuL5i1VuFWXZRRLwYPFrTjWoh936FUpaTHyCtbFOiQxLVZAVQSDDlY65y8dzvm xos2bM2uDR81/L0Iw9b30/eGthFmAnchwK1NetXW71k5/wbz2X4= =Fb4i -----END PGP SIGNATURE----- --thv3bvw74utuq6zs--