From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:54502) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmzgT-0000Wx-U6 for guix-patches@gnu.org; Fri, 25 Jan 2019 06:30:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmzgR-00011H-MZ for guix-patches@gnu.org; Fri, 25 Jan 2019 06:30:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:45314) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gmzgR-00011B-JP for guix-patches@gnu.org; Fri, 25 Jan 2019 06:30:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gmzgQ-00038h-DN for guix-patches@gnu.org; Fri, 25 Jan 2019 06:30:02 -0500 Subject: [bug#34194] [PATCH] gnu: Add emacs-mkmcc-gnuplot-mode. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:54196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmzfl-0000F5-8i for guix-patches@gnu.org; Fri, 25 Jan 2019 06:29:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmzfk-0000do-1Z for guix-patches@gnu.org; Fri, 25 Jan 2019 06:29:21 -0500 Received: from vultr.systemreboot.net ([45.77.148.100]:48776) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gmzfj-0000cN-HM for guix-patches@gnu.org; Fri, 25 Jan 2019 06:29:19 -0500 Received: from [14.139.128.10] (helo=steel) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1gmzfc-0004Vs-Kh for guix-patches@gnu.org; Fri, 25 Jan 2019 16:59:13 +0530 From: Arun Isaac Date: Fri, 25 Jan 2019 16:59:04 +0530 Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" 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: 34194@debbugs.gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain I have packaged mkmcc's gnuplot-mode. We already have another gnuplot-mode (bruceravel's gnuplot-mode) packaged for Guix. But bruceravel's gnuplot-mode does not seem to be maintained. mkmcc's gnuplot-mode is a separate project and is somewhat better maintained. So, it could be of use to Guix users. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-emacs-mkmcc-gnuplot-mode.patch Content-Transfer-Encoding: quoted-printable From=2040f6d899c87923a5967a2aa9138b490e7b119229 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 25 Jan 2019 16:52:40 +0530 Subject: [PATCH] gnu: Add emacs-mkmcc-gnuplot-mode. * gnu/packages/emacs-xyz.scm (emacs-mkmcc-gnuplot-mode): New variable. =2D-- gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index bd084bd2d8..2db372fe07 100644 =2D-- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16,7 +16,7 @@ ;;; Copyright =C2=A9 2016 Alex Griffin ;;; Copyright =C2=A9 2016, 2017, 2018, 2019 Nicolas Goaziou ;;; Copyright =C2=A9 2016, 2017, 2018 Alex Vong =2D;;; Copyright =C2=A9 2016, 2017, 2018 Arun Isaac +;;; Copyright =C2=A9 2016, 2017, 2018, 2019 Arun Isaac ;;; Copyright =C2=A9 2017 Christopher Baines ;;; Copyright =C2=A9 2017, 2018 Mathieu Othacehe ;;; Copyright =C2=A9 2017, 2018, 2019 Cl=C3=A9ment Lassieur @@ -12970,3 +12970,25 @@ comments.") (description "This package provides an Emacs major mode which acts a= s a front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).") (license license:gpl3+)))) + +(define-public emacs-mkmcc-gnuplot-mode + (package + (name "emacs-mkmcc-gnuplot-mode") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mkmcc/gnuplot-mode") + (commit "601f6392986f0cba332c87678d31ae0d0a496ce7"))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb")))) + (build-system emacs-build-system) + (home-page "https://mkmcc.github.io/software/gnuplot-mode.html") + (synopsis "Minimal emacs major mode for editing gnuplot scripts") + (description "@code{emacs-mkmcc-gnuplot-mode} is a minimal emacs major +mode for editing gnuplot scripts. It only provides syntax highlighting, +indentation and a command to plot the file.") + (license license:gpl3+))) =2D-=20 2.19.2 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAlxK8wAACgkQLiXui2GA K7OzlQgAj7bdbKHlRpfdupc6Qt79ftiizmIdJmcSv0ogrCkNh1I69jBc53ksG3f1 7iBJmoAW7L6tHFZQUnX8Uww3eAB+p0XblZ0cte/w5a9tV1mbUK18xHJ927FX34O9 wEX2dMEfHj5PoyYyA9CLdhwiYk0++j5Jaiy05zOllsCfoaE+0LAWfu2CxKN7yMS6 7Hlo+AZM887F7CPVfS8R/+jDll5wIxWgp2CJg0TRHK9qkJ3RfKk+1LixbvkfHQBk OwiMtXhA0/VKaUSI5U+h5vaHUk2Q0ReijqT1CJF6n+GKMb7YzVVoPm8lH2APBS/x Dl3ntIh/AoUlj0cky87FvoaJdHKFVA== =G7KN -----END PGP SIGNATURE----- --==-=-=--