From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49481) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYN8R-0007Dy-9f for guix-patches@gnu.org; Fri, 22 Nov 2019 23:35:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYN8Q-00058W-1y for guix-patches@gnu.org; Fri, 22 Nov 2019 23:35:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46948) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iYN8P-00058Q-V3 for guix-patches@gnu.org; Fri, 22 Nov 2019 23:35:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iYN8P-0000NF-Pn for guix-patches@gnu.org; Fri, 22 Nov 2019 23:35:01 -0500 Subject: [bug#38340] [PATCH] gnu: Add emacs-org-present. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49435) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYN83-0007CQ-OB for guix-patches@gnu.org; Fri, 22 Nov 2019 23:34:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYN82-0004zW-Ic for guix-patches@gnu.org; Fri, 22 Nov 2019 23:34:39 -0500 Received: from mout02.posteo.de ([185.67.36.66]:55165) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iYN82-0004vH-2f for guix-patches@gnu.org; Fri, 22 Nov 2019 23:34:38 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5AEA72400E6 for ; Sat, 23 Nov 2019 05:34:35 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 47KgS95Lzpz9rxG for ; Sat, 23 Nov 2019 05:34:33 +0100 (CET) From: Brett Gilio Date: Fri, 22 Nov 2019 22:34:41 -0600 Message-ID: <87o8x3gqhq.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-org-present.patch Content-Description: [PATCH] gnu: Add emacs-org-present. 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: 38340@debbugs.gnu.org >From c007a92689004917fa422b668f8ab55b2a49af22 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Fri, 22 Nov 2019 22:32:46 -0600 Subject: [PATCH] gnu: Add emacs-org-present. * gnu/packages/emacs-xyz.scm (emacs-org-present): New variable. --- gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0caf12a423..963aa4d96f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19943,3 +19943,27 @@ Google guidelines.") (description "Helm Fish Completion is a Helm interface for Emacs fish-completion. It can be used in both Eshell and M-x shell.") (license license:gpl3+)))) + +(define-public emacs-org-present + (let ((commit "d13acd70eff6a1608bc991920232146a0de76b21")) + (package + (name "emacs-org-present") + (version "0.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rlister/org-present.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q")))) + (build-system emacs-build-system) + (synopsis "Ultra-minimalist presentation minor-mode for Emacs org-mode") + (description "Org-present is an extremely minimalist presentation tool +for Emacs org-mode. Simply layout your presentation with each slide under a +top-level header, start the minor mode with @code{org-present}, and page through +each slide with left/right keys.") + (home-page "https://github.com/rlister/org-present") + (license license:gpl2)))) -- 2.24.0