From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h6tIj-0005OQ-VX for guix-patches@gnu.org; Thu, 21 Mar 2019 04:43:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h6tF4-0003cl-I2 for guix-patches@gnu.org; Thu, 21 Mar 2019 04:40:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39119) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h6tF4-0003cN-Az for guix-patches@gnu.org; Thu, 21 Mar 2019 04:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h6tF4-0003Fd-78 for guix-patches@gnu.org; Thu, 21 Mar 2019 04:40:02 -0400 Subject: [bug#34928] [PATCH] gnu: emacs-rust-mode: Update to 0.4.0. Resent-Message-ID: References: <87h8bxcibt.fsf@posteo.net> From: Ricardo Wurmus In-reply-to: <87h8bxcibt.fsf@posteo.net> Date: Thu, 21 Mar 2019 09:39:42 +0100 Message-ID: <874l7w8vu9.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Brett Gilio Cc: 34928@debbugs.gnu.org Hi Brett, > From 51d44ab89ebf4e04f0c70574bf20d9b62532b59e Mon Sep 17 00:00:00 2001 > From: Brett Gilio > Date: Wed, 20 Mar 2019 17:02:04 -0500 > Subject: [PATCH] gnu: emacs-rust-mode: Update to 0.4.0. > > * gnu/packages/emacs-xyz.scm (emacs-rust-mode): Update to 0.4.0. > --- > gnu/packages/emacs-xyz.scm | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm > index 9969c7968..916381841 100644 > --- a/gnu/packages/emacs-xyz.scm > +++ b/gnu/packages/emacs-xyz.scm > @@ -12202,13 +12202,11 @@ files. It focuses on highlighting the document= to improve readability.") >=20=20 > (define-public emacs-rust-mode > (let ((commit > - ;; Last release is old (2016), use more recent commit to get bug > - ;; fixes. > - "64b4a2450e4d4c47f6307851c9b2598cd2254d68") > + "106aeab800fb3404baf231845d3e3549ec235afa") > (revision "0")) > (package > (name "emacs-rust-mode") > - (version (git-version "0.3.0" revision commit)) > + (version (git-version "0.4.0" revision commit)) > (source (origin > (method git-fetch) > (uri > @@ -12218,7 +12216,7 @@ files. It focuses on highlighting the document t= o improve readability.") > (file-name (git-file-name name version)) > (sha256 > (base32 > - "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"= )))) > + "0bcrklyicxh032rrp585rl5mxd26nb61dp6r5bl935rlcmxzsczh"= )))) > (build-system emacs-build-system) > (arguments > `(#:phases I would prefer to remove the let binding of =E2=80=9Ccommit=E2=80=9D and = =E2=80=9Crevision=E2=80=9D, to replace the value of the =E2=80=9Cversion=E2=80=9D field with just =E2= =80=9C0.4.0=E2=80=9D, and to replace the git-fetch commit with =E2=80=9Cversion=E2=80=9D. --=20 Ricardo