From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcXf2-0004HS-CK for guix-patches@gnu.org; Mon, 09 Jul 2018 11:01:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcXew-0004Pj-QO for guix-patches@gnu.org; Mon, 09 Jul 2018 11:01:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44715) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcXew-0004PH-MG for guix-patches@gnu.org; Mon, 09 Jul 2018 11:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcXew-0008U0-Ez for guix-patches@gnu.org; Mon, 09 Jul 2018 11:01:02 -0400 Subject: bug#32097: [PATCH 0/3] Add Node.js and Typescript emacs modes Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180708165412.2902-1-mthl@gnu.org> Date: Mon, 09 Jul 2018 17:00:42 +0200 In-Reply-To: <20180708165412.2902-1-mthl@gnu.org> (Mathieu Lirzin's message of "Sun, 8 Jul 2018 18:54:12 +0200") Message-ID: <87in5ofo85.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: Mathieu Lirzin Cc: 32097-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mathieu Lirzin skribis: > Mathieu Lirzin (3): > gnu: Add emacs-nodejs-repl. > gnu: Add emacs-typescript-mode. > gnu: Add emacs-tide. I applied all three patches with the changes below, to placate =E2=80=98guix lint=E2=80=99. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index fcddabc99..c6c7a1df4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4192,7 +4192,8 @@ strings, and code folding.") "/archive/" version ".tar.gz")) (sha256 (base32 - "0sphg1jxi3a5l0gqdp27d0qgyjaiq2p293av9zm8ksm0vwqp3fr9")))) + "0sphg1jxi3a5l0gqdp27d0qgyjaiq2p293av9zm8ksm0vwqp3fr9")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system emacs-build-system) (home-page "https://github.com/abicky/nodejs-repl.el") (synopsis "Node.js REPL inside Emacs") @@ -4218,7 +4219,8 @@ features: "/archive/v" version ".tar.gz")) (sha256 (base32 - "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj")))) + "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system emacs-build-system) (home-page "https://github.com/ananthakumaran/typescript.el") (synopsis "Emacs major mode for editing Typescript code") @@ -4243,7 +4245,8 @@ indentation and filling of comments and C preprocessor fontification.") "/archive/v" version ".tar.gz")) (sha256 (base32 - "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y")))) + "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash) --=-=-=--