From patchwork Tue Jul 12 21:05:12 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ricardo Wurmus X-Patchwork-Id: 13766 Received: (qmail 45145 invoked by uid 89); 12 Jul 2016 21:08:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.1 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy= X-Spam-Status: No, score=-3.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 12 Jul 2016 21:08:44 +0000 Received: from localhost ([::1]:43512 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN4v3-00034n-Q0 for patchwork@sourceware.org; Tue, 12 Jul 2016 17:08:41 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56054) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN4t4-0000Lk-95 for guix-devel@gnu.org; Tue, 12 Jul 2016 17:06:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bN4t3-0001xj-98 for guix-devel@gnu.org; Tue, 12 Jul 2016 17:06:38 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24753) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN4t3-0001xM-0t for guix-devel@gnu.org; Tue, 12 Jul 2016 17:06:37 -0400 Received: from localhost (xd9ba42ea.dyn.telefonica.de [217.186.66.234]) by mx.zohomail.com with SMTPS id 1468357594503706.0584104724554; Tue, 12 Jul 2016 14:06:34 -0700 (PDT) From: Ricardo Wurmus To: guix-devel@gnu.org Subject: [PATCH 15/17] gnu: Add emacs-tagedit. Date: Tue, 12 Jul 2016 23:05:12 +0200 Message-Id: <20160712210514.21310-16-rekado@elephly.net> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20160712210514.21310-1-rekado@elephly.net> References: <20160712210514.21310-1-rekado@elephly.net> X-ZohoMail: Z_26063301 SPT_1 Z_26062608 SPT_0 X-Zoho-Virus-Status: 2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 74.201.84.163 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" * gnu/packages/emacs.scm (emacs-tagedit): New variable. --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 64192cc..283ed56 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1862,6 +1862,32 @@ identifiers in the MIT-Scheme documentation.") constants and units into an Emacs buffer.") (license license:gpl2+))) +(define-public emacs-tagedit + (package + (name "emacs-tagedit") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/magnars/tagedit/" + "archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq")))) + (build-system emacs-build-system) + (native-inputs + `(("emacs-espuds" ,emacs-espuds))) + (propagated-inputs + `(("emacs-s" ,emacs-s) + ("emacs-dash" ,emacs-dash))) + (home-page "https://github.com/magnars/tagedit") + (synopsis "Some paredit-like features for html-mode") + (description + "This package provides a collection of paredit-like functions for editing +in @code{html-mode}.") + (license license:gpl3+))) + (define-public emacs-slime (package (name "emacs-slime")