From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44026) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iNl0Z-0000lg-0g for guix-patches@gnu.org; Thu, 24 Oct 2019 17:51:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iNl0Y-0005v9-2T for guix-patches@gnu.org; Thu, 24 Oct 2019 17:51:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56479) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iNl0X-0005v3-VR for guix-patches@gnu.org; Thu, 24 Oct 2019 17:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iNl0X-0007Gh-Rp for guix-patches@gnu.org; Thu, 24 Oct 2019 17:51:01 -0400 Subject: [bug#37912] [PATCH] gnu: elixir: Update to 1.9.2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:37780) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iNjz4-0004gy-C7 for guix-patches@gnu.org; Thu, 24 Oct 2019 16:45:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iNjz2-00021C-SF for guix-patches@gnu.org; Thu, 24 Oct 2019 16:45:26 -0400 Received: from w4.tutanota.de ([81.3.6.165]:43758) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iNjz2-00020y-Kr for guix-patches@gnu.org; Thu, 24 Oct 2019 16:45:24 -0400 Received: from w2.tutanota.de (unknown [192.168.1.163]) by w4.tutanota.de (Postfix) with ESMTP id 7DBE8106019A for ; Thu, 24 Oct 2019 20:45:22 +0000 (UTC) Date: Thu, 24 Oct 2019 22:45:22 +0200 (CEST) From: Oskar =?UTF-8?Q?K=C3=B6=C3=B6k?= Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_35629_460654715.1571949922364" 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: 37912@debbugs.gnu.org ------=_Part_35629_460654715.1571949922364 Content-Type: multipart/alternative; boundary="----=_Part_35630_275881169.1571949922364" ------=_Part_35630_275881169.1571949922364 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit ------=_Part_35630_275881169.1571949922364 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

------=_Part_35630_275881169.1571949922364-- ------=_Part_35629_460654715.1571949922364 Content-Type: text/x-patch; charset=us-ascii; name=0001-gnu-elixir-Update-to-1.9.2.patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-elixir-Update-to-1.9.2.patch >From bfbd16af6aaf3d2685f01fa8059a220485e830ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20K=C3=B6=C3=B6k?= Date: Thu, 24 Oct 2019 23:37:38 +0300 Subject: [PATCH] gnu: elixir: Update to 1.9.2. * gnu/packages/elixir.scm (elixir): Update to 1.9.2. --- gnu/packages/elixir.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/elixir.scm b/gnu/packages/elixir.scm index 88ada71aea..d3f30c624e 100644 --- a/gnu/packages/elixir.scm +++ b/gnu/packages/elixir.scm @@ -33,7 +33,7 @@ (define-public elixir (package (name "elixir") - (version "1.8.2") + (version "1.9.2") (source (origin (method git-fetch) @@ -42,7 +42,7 @@ (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1n77cpcl2b773gmj3m9s24akvj9gph9byqbmj2pvlsmby4aqwckq")) + (base32 "19yn6nx6r627f5zbyc7ckgr96d6b45sgwx95n2gp2imqwqvpj8wc")) (patches (search-patches "elixir-path-length.patch")))) (build-system gnu-build-system) (arguments -- 2.21.0 ------=_Part_35629_460654715.1571949922364--