From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fyCbg-0004OG-Fe for guix-patches@gnu.org; Fri, 07 Sep 2018 04:59:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fyCbY-0006he-TL for guix-patches@gnu.org; Fri, 07 Sep 2018 04:59:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43735) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fyCbX-0006g3-47 for guix-patches@gnu.org; Fri, 07 Sep 2018 04:59:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fyCbX-0003cd-1y for guix-patches@gnu.org; Fri, 07 Sep 2018 04:59:03 -0400 Subject: bug#32648: [PATCH] Update emacs-ess to 17.11 Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87o9davaq7.fsf@antelope.i-did-not-set--mail-host-address--so-tickle-me> Date: Fri, 07 Sep 2018 10:58:37 +0200 In-Reply-To: <87o9davaq7.fsf@antelope.i-did-not-set--mail-host-address--so-tickle-me> (alex branham's message of "Thu, 06 Sep 2018 18:42:24 +0200") Message-ID: <87d0tpk7k2.fsf@gnu.org> 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: alex.branham@gmail.com Cc: 32648-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, alex.branham@gmail.com skribis: >>>From 3e548acbff2159c90c09ef778c74c1de3b6dc319 Mon Sep 17 00:00:00 2001 > From: Alex Branham > Date: Thu, 6 Sep 2018 18:35:36 +0200 > Subject: [PATCH] gnu: emacs-ess: Update to 17.11 > > * gnu/packages/emacs.scm (emacs-ess): Update to 17.11 > [url]: Use github for https > [snippet]: update julia-mode substitution, only build info doc, bypass fa= iling test > [propagated-inputs]: Add emacs-julia-mode > [description]: Mention that ESS supports Julia and JAGS (which replaces O= penBUGS) Applied with the minor change below to satisfy =E2=80=98guix lint=E2=80=99 = and with a tweaked commit log. Usually we=E2=80=99d rather split this in several patches (one that removes TeXLive, one that does the actual update), but I think it=E2=80=99s OK here. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 34c407019..1f64a5e84 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -38,6 +38,7 @@ ;;; Copyright =C2=A9 2018 Tim Gesthuizen ;;; Copyright =C2=A9 2018 Jack Hill ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby +;;; Copyright =C2=A9 2018 Alex Branham ;;; ;;; This file is part of GNU Guix. ;;; @@ -4131,6 +4132,7 @@ programming language.") (sha256 (base32 "0cbilbsiwvcyf6d5y24mymp57m3ana5dkzab3knfs83w4a3a4c5c")) + (file-name (string-append name "-" version ".tar.gz")) (modules '((guix build utils))) (snippet '(begin --=-=-=--