From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJlpl-0005xO-TV for guix-patches@gnu.org; Sat, 10 Jun 2017 15:14:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJlpi-00008A-PO for guix-patches@gnu.org; Sat, 10 Jun 2017 15:14:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36693) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dJlpi-000086-Ld for guix-patches@gnu.org; Sat, 10 Jun 2017 15:14:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dJlpi-0000W7-HC for guix-patches@gnu.org; Sat, 10 Jun 2017 15:14:02 -0400 Subject: bug#27316: [PATCH] gnu: Fix libgxps origin uri. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55943) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJlp5-0005vd-4v for guix-patches@gnu.org; Sat, 10 Jun 2017 15:13:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJlp2-0008Nk-0h for guix-patches@gnu.org; Sat, 10 Jun 2017 15:13:23 -0400 Received: from cock.li ([185.100.85.212]:51760) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dJlp1-0008HT-Ou for guix-patches@gnu.org; Sat, 10 Jun 2017 15:13:19 -0400 From: nee Message-ID: <5e7bd56f-a70b-4a5c-9900-2bde035814e4@cock.li> Date: Sat, 10 Jun 2017 21:13:12 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------EA56A46F03BAE6E7CAB2CADA" Content-Language: en-GB 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: 27316@debbugs.gnu.org This is a multi-part message in MIME format. --------------EA56A46F03BAE6E7CAB2CADA Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit There is a slash missing in the uri of libgxps. --------------EA56A46F03BAE6E7CAB2CADA Content-Type: text/x-patch; name="0001-gnu-Fix-libgxps-origin-uri.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-Fix-libgxps-origin-uri.patch" >From 0b5155822f92d0e48b57a09148026053b94dfb03 Mon Sep 17 00:00:00 2001 From: nee Date: Sat, 10 Jun 2017 20:55:19 +0200 Subject: [PATCH] gnu: Fix libgxps origin uri. * gnu/packages/gnome.scm (libgxps)[src]: Fix origin uri. --- gnu/packages/gnome.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 293df870e..d3f734450 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -294,7 +294,7 @@ access the common Google services, and has full asynchronous support.") (version "0.2.5") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources" name "/" + (uri (string-append "mirror://gnome/sources/" name "/" (version-major+minor version) "/" name "-" version ".tar.xz")) (sha256 -- 2.13.1 --------------EA56A46F03BAE6E7CAB2CADA--