From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: [PATCH 1/2] gnu: fish: Update to 2.1.1 Date: Sat, 06 Dec 2014 14:59:46 +0800 Message-ID: <87bnnhxnz1.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xx9La-0005sj-4B for guix-devel@gnu.org; Sat, 06 Dec 2014 02:00:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xx9LQ-000523-8Y for guix-devel@gnu.org; Sat, 06 Dec 2014 02:00:06 -0500 Received: from mail-pa0-x244.google.com ([2607:f8b0:400e:c03::244]:55362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xx9LQ-00051T-22 for guix-devel@gnu.org; Sat, 06 Dec 2014 01:59:56 -0500 Received: by mail-pa0-f68.google.com with SMTP id kq14so955704pab.3 for ; Fri, 05 Dec 2014 22:59:54 -0800 (PST) Received: from akarin ([59.172.247.101]) by mx.google.com with ESMTPSA id kb16sm30641729pbb.34.2014.12.05.22.59.50 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 05 Dec 2014 22:59:53 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This contains security fixes, according to: http://fishshell.com/release_notes.html --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-fish-Update-to-2.1.1.patch >From 894c97a64407bdc8ce5517c48353beb5ad0ccda5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sat, 6 Dec 2014 14:26:29 +0800 Subject: [PATCH 1/2] gnu: fish: Update to 2.1.1. * gnu/packages/fish.scm (fish): Update to 2.1.1. --- gnu/packages/fish.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/fish.scm b/gnu/packages/fish.scm index 6f818b4..ee11124 100644 --- a/gnu/packages/fish.scm +++ b/gnu/packages/fish.scm @@ -28,14 +28,14 @@ (define-public fish (package (name "fish") - (version "2.1.0") + (version "2.1.1") (source (origin (method url-fetch) (uri (string-append "http://fishshell.com/files/" version "/fish-" version ".tar.gz")) (sha256 (base32 - "0i7h3hx8iszli3d4kphw79sz9m07f2lc2c9hr9smdps5s7wpllmg")))) + "096rhi911s3j618cvp8fj9pb4jniy3y6415jvjg8bhszsp1x7r5p")))) (build-system gnu-build-system) (native-inputs `(("doxygen" ,doxygen))) -- 2.1.2 --=-=-=--