From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fG6fi-0003mN-NV for guix-patches@gnu.org; Tue, 08 May 2018 13:45:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fG6fe-0002NN-Hb for guix-patches@gnu.org; Tue, 08 May 2018 13:45:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46574) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fG6fe-0002NH-CU for guix-patches@gnu.org; Tue, 08 May 2018 13:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fG6fe-0002fC-6l for guix-patches@gnu.org; Tue, 08 May 2018 13:45:02 -0400 Subject: [bug#31387] [PATCH] Add emacs-orgalist Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46685) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fG6fI-0003AP-6S for guix-patches@gnu.org; Tue, 08 May 2018 13:44:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fG6fF-0002EC-4B for guix-patches@gnu.org; Tue, 08 May 2018 13:44:40 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:58557) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fG6fE-0002DU-S3 for guix-patches@gnu.org; Tue, 08 May 2018 13:44:37 -0400 Received: from saiph (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 05DD31BF206 for ; Tue, 8 May 2018 19:44:39 +0200 (CEST) Received: from ngz by saiph with local (Exim 4.89) (envelope-from ) id 1fG6f9-0003BW-F2 for guix-patches@gnu.org; Tue, 08 May 2018 19:44:31 +0200 From: Nicolas Goaziou Date: Tue, 08 May 2018 19:44:31 +0200 Message-ID: <87fu32rqio.fsf@nicolasgoaziou.fr> 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: 31387@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, This patch adds an Emacs library: Orgalist. Thank you for the review. Regards, -- Nicolas Goaziou 0x80A93738 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-emacs-orgalist.patch Content-Description: add emacs-orgalist >From f6773669037429dcf53f0132d03f65fa96aef750 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 8 May 2018 19:42:44 +0200 Subject: [PATCH] gnu: Add emacs-orgalist * gnu/packages/emacs.scm (emacs-orgalist): 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 9b6ccf57a..fd6446f8e 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4722,6 +4722,30 @@ used for reverse direction.") distribution, primarily targeting Clojure users") (license license:gpl3+))) +(define-public emacs-orgalist + (package + (name "emacs-orgalist") + (version "1.7") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/" + "orgalist-" version ".el")) + (sha256 + (base32 + "13dl0l727vlny3y88gqpngcy90ly5r719s1pbmkva5gmcryb68xr")))) + (build-system emacs-build-system) + (home-page "http://elpa.gnu.org/packages/orgalist.html") + (synopsis "Manage Org-like lists in non-Org buffers") + (description "Write Org mode's plain lists in non-Org buffers. + +More specifically, it supports syntax for numbered, unnumbered, +description items, checkboxes, and counter cookies. + +The library also implements radio lists, i.e., lists written in Org +syntax later translated into the host format, e.g., @LaTeX{} or HTML.") + (license license:gpl3+))) + (define-public emacs-writegood-mode (package (name "emacs-writegood-mode") -- 2.17.0 --=-=-=--