From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ezlhI-0002ur-OX for guix-patches@gnu.org; Sat, 24 Mar 2018 12:08:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ezldG-0002fd-RA for guix-patches@gnu.org; Sat, 24 Mar 2018 12:07:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43718) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ezldG-0002fX-Nf for guix-patches@gnu.org; Sat, 24 Mar 2018 12:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ezldG-0002bf-Fk for guix-patches@gnu.org; Sat, 24 Mar 2018 12:03:02 -0400 Subject: [bug#30925] [PATCH] gnu: Add emacs-puppet-mode. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45145) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ezlam-0000Xd-BD for guix-patches@gnu.org; Sat, 24 Mar 2018 12:01:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ezlZi-0008Mm-Ea for guix-patches@gnu.org; Sat, 24 Mar 2018 12:00:28 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:38604 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ezlZi-0008MA-7g for guix-patches@gnu.org; Sat, 24 Mar 2018 11:59:22 -0400 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id B42CB13D064 for ; Sat, 24 Mar 2018 15:59:20 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 67606f0d for ; Sat, 24 Mar 2018 15:59:20 +0000 (UTC) From: Christopher Baines Date: Sat, 24 Mar 2018 15:59:20 +0000 Message-Id: <20180324155920.970-1-mail@cbaines.net> 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: 30925@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-puppet-mode): New variable. --- gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index de0ee358d..a6dc5d866 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2772,6 +2772,30 @@ This provides a basic API and common UI widgets such as popup tooltips and popup menus.") (license license:gpl3+))) +(define-public emacs-puppet-mode + (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2") + (revision "1")) + (package + (name "emacs-puppet-mode") + (version (git-version "0.3" revision commit)) + (source + (origin + (method url-fetch) + (uri (string-append + "https://raw.githubusercontent.com/voxpupuli/puppet-mode/" + commit "/puppet-mode.el")) + (sha256 + (base32 + "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm")))) + (build-system emacs-build-system) + (home-page "https://github.com/voxpupuli/puppet-mode") + (synopsis "Emacs major mode for the Puppet configuration language") + (description + "This package provides support for the Puppet configuration language, +including syntax highlighting, indentation of expressions and statements, +linting of manifests and integration with Puppet Debugger.") + (license license:gpl3+)))) + (define-public emacs-god-mode (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964") (revision "1")) -- 2.16.2