From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] 1 of 2: emacs-lua-mode [v2] Date: Tue, 14 Jun 2016 13:07:05 +0000 Message-ID: <20160614130704.GA5248@khazad-dum> References: <20160613213653.GB25440@khazad-dum> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Yylu36WmvOXNoKYn" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCo3r-00067m-CU for guix-devel@gnu.org; Tue, 14 Jun 2016 09:07:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCo3n-0006u8-3u for guix-devel@gnu.org; Tue, 14 Jun 2016 09:07:18 -0400 Received: from 93-95-228-168.1984.is ([93.95.228.168]:45808 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCo3m-0006ts-LZ for guix-devel@gnu.org; Tue, 14 Jun 2016 09:07:15 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id 04aebca7 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Tue, 14 Jun 2016 13:07:09 +0000 (UTC) Content-Disposition: inline In-Reply-To: <20160613213653.GB25440@khazad-dum> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --Yylu36WmvOXNoKYn Content-Type: multipart/mixed; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable =46rom 8788b9c676b2fc0738325c055176e07ce9f88788 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Tue, 14 Jun 2016 13:00:59 +0000 Subject: [PATCH] gnu: Add emacs-lua-mode. * gnu/packages/emacs.scm (emacs-lua-mode): New Variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 6a79412..dfe2e23 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2016 David Thompson ;;; Copyright =C2=A9 2016 Matthew Jordan ;;; Copyright =C2=A9 2016 Roel Janssen +;;; Copyright =C2=A9 2016 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -2112,3 +2113,24 @@ There are plenty of differences between CIDER and SL= IME, but the core ideas are pretty much the same (and SLIME served as the principle inspiration for CIDER).") (license license:gpl3+))) + +(define-public emacs-lua-mode + (package + (name "emacs-lua-mode") + (version "20151025") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/immerrr/lua-mode/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v")))) + (build-system emacs-build-system) + (home-page "http://github.com/immerrr/lua-mode/") + (synopsis "Major mode for lua") + (description + "This Emacs package provides a mode for @uref{https://www.lua.org/, +Lua programing language}.") + (license license:gpl2+))) -- 2.8.4 --Dxnq1zWXvFF0Q93v Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-emacs-lua-mode.patch" Content-Transfer-Encoding: quoted-printable =46rom 8788b9c676b2fc0738325c055176e07ce9f88788 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Tue, 14 Jun 2016 13:00:59 +0000 Subject: [PATCH] gnu: Add emacs-lua-mode. * gnu/packages/emacs.scm (emacs-lua-mode): New Variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 6a79412..dfe2e23 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2016 David Thompson ;;; Copyright =C2=A9 2016 Matthew Jordan ;;; Copyright =C2=A9 2016 Roel Janssen +;;; Copyright =C2=A9 2016 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -2112,3 +2113,24 @@ There are plenty of differences between CIDER and SL= IME, but the core ideas are pretty much the same (and SLIME served as the principle inspiration for CIDER).") (license license:gpl3+))) + +(define-public emacs-lua-mode + (package + (name "emacs-lua-mode") + (version "20151025") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/immerrr/lua-mode/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v")))) + (build-system emacs-build-system) + (home-page "http://github.com/immerrr/lua-mode/") + (synopsis "Major mode for lua") + (description + "This Emacs package provides a mode for @uref{https://www.lua.org/, +Lua programing language}.") + (license license:gpl2+))) --=20 2.8.4 --Dxnq1zWXvFF0Q93v-- --Yylu36WmvOXNoKYn Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- iF4EARYKAAYFAldgAXgACgkQhhoAchyzrCCiWQEAhvKpbRb8ZZzMwUEA+ht6ulT8 aiP5zcRor3MEdbHVK0gA/2FJhGtlCMYrQqrVeMTN9Si0QEVfnzpIT/Ii+qDZ1PMB =H7aB -----END PGP SIGNATURE----- --Yylu36WmvOXNoKYn--