From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60876) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1czIy8-0001Ao-He for guix-patches@gnu.org; Sat, 15 Apr 2017 04:22:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1czIy3-0001Sx-Gy for guix-patches@gnu.org; Sat, 15 Apr 2017 04:22:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49614) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1czIy3-0001SJ-CQ for guix-patches@gnu.org; Sat, 15 Apr 2017 04:22:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1czIy1-0006AP-Tu for guix-patches@gnu.org; Sat, 15 Apr 2017 04:22:01 -0400 Subject: bug#26510: [PATCH] Update wireshark to 2.2.6. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60678) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1czIx3-00014t-Gk for guix-patches@gnu.org; Sat, 15 Apr 2017 04:21:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1czIwy-0000lc-K7 for guix-patches@gnu.org; Sat, 15 Apr 2017 04:21:01 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:33642) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1czIwy-0000k9-DB for guix-patches@gnu.org; Sat, 15 Apr 2017 04:20:56 -0400 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by relay7-d.mail.gandi.net (Postfix) with ESMTPS id 38AE7D32 for ; Sat, 15 Apr 2017 10:20:50 +0200 (CEST) Received: from saiph.selenimh (00004301000000000000074b.ipv6.commingeshautdebit.fr [IPv6:2a03:a0a0:0:4301::74b]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 1608FA80C7 for ; Sat, 15 Apr 2017 10:20:49 +0200 (CEST) Received: from ngz by saiph.selenimh with local (Exim 4.88) (envelope-from ) id 1czIwq-0003ua-4j for guix-patches@gnu.org; Sat, 15 Apr 2017 10:20:48 +0200 From: Nicolas Goaziou Date: Sat, 15 Apr 2017 10:20:48 +0200 Message-ID: <874lxqhyjj.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 26510@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, The following patch updates wireshark to the latest and greatest. Regards, -- Nicolas Goaziou 0x80A93738 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-wireshark-Update-to-2.2.6.patch >From b47412d53e00ceb52974ecb9032c3c20df16da52 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 15 Apr 2017 10:18:04 +0200 Subject: [PATCH] gnu: wireshark: Update to 2.2.6. * gnu/packages/networking.scm (wireshark): Update to 2.2.6. --- gnu/packages/networking.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 0c7dcd0fc..82e7cea65 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -470,7 +470,7 @@ which can be used to encrypt a password with @code{crypt(3)}.") (define-public wireshark (package (name "wireshark") - (version "2.2.5") + (version "2.2.6") (synopsis "Network traffic analyzer") (source (origin @@ -479,7 +479,7 @@ which can be used to encrypt a password with @code{crypt(3)}.") version ".tar.bz2")) (sha256 (base32 - "1j4sc3pmy8l6k41007spglcqiabjlzc7f85pn3jmjr9ksv9qipbm")))) + "0jd89i9si43lyv3hsl6p1lkjmz4zagvc37wcbigsxxc5v8gda9zn")))) (build-system glib-or-gtk-build-system) (inputs `(("bison" ,bison) ("c-ares" ,c-ares) -- 2.12.0 --=-=-=--