From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: OpenSSH update Date: Tue, 1 Mar 2016 15:14:08 -0500 Message-ID: <20160301201408.GA31256@jasmine> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Nq2Wo0NMKNjxTN9z" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aaqgP-00078G-Q6 for guix-devel@gnu.org; Tue, 01 Mar 2016 15:14:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aaqgM-00049O-KJ for guix-devel@gnu.org; Tue, 01 Mar 2016 15:14:13 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:42133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aaqgM-00049I-Fu for guix-devel@gnu.org; Tue, 01 Mar 2016 15:14:10 -0500 Received: from localhost (unknown [172.56.2.144]) by mail.messagingengine.com (Postfix) with ESMTPA id B842A68009C for ; Tue, 1 Mar 2016 15:14:09 -0500 (EST) Content-Disposition: inline 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 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline OpenSSH has released a new version, 7.2p1: http://www.openssh.com/txt/release-7.2 There are some new features and many fixed bugs. Here are the incompatible changes, copied from the link above. If there are no objections I will apply the update. Potentially-incompatible changes ================================ This release disables a number of legacy cryptographic algorithms by default in ssh: * Several ciphers blowfish-cbc, cast128-cbc, all arcfour variants and the rijndael-cbc aliases for AES. * MD5-based and truncated HMAC algorithms. These algorithms are already disabled by default in sshd. --Nq2Wo0NMKNjxTN9z Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-gnu-openssh-Update-to-7.2p1.patch" >From 955072eb588ed948e420afaad386bf4ecc60c90a Mon Sep 17 00:00:00 2001 Message-Id: <955072eb588ed948e420afaad386bf4ecc60c90a.1456863131.git.leo@famulari.name> In-Reply-To: References: From: Leo Famulari Date: Tue, 1 Mar 2016 15:04:47 -0500 Subject: [PATCH 1/1] gnu: openssh: Update to 7.2p1. * gnu/packages/ssh.scm (openssh): Update to 7.2p1. --- gnu/packages/ssh.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 1b4a4b4..307ac70 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -115,7 +115,7 @@ a server that supports the SSH-2 protocol.") (define-public openssh (package (name "openssh") - (version "7.1p2") + (version "7.2p1") (source (origin (method url-fetch) (uri (let ((tail (string-append name "-" version ".tar.gz"))) @@ -126,7 +126,7 @@ a server that supports the SSH-2 protocol.") (string-append "http://ftp2.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/" tail)))) (sha256 (base32 - "1gbbvszz74lkc7b2mqr3ccgpm65zj0k5h7a2ssh0c7pjvhjg0xfx")))) + "1hsa1f3641pdj57a55gmnvcya3wwww2fc2cvb77y95rm5xxw6g4p")))) (build-system gnu-build-system) (inputs `(("groff" ,groff) ("openssl" ,openssl) -- 2.7.1 --Nq2Wo0NMKNjxTN9z--