From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2snQ-0008NQ-1x for guix-patches@gnu.org; Fri, 13 Oct 2017 01:46:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2snL-0001Pe-5Q for guix-patches@gnu.org; Fri, 13 Oct 2017 01:46:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56161) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e2snL-0001PX-2U for guix-patches@gnu.org; Fri, 13 Oct 2017 01:46:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e2snK-0004sW-NJ for guix-patches@gnu.org; Fri, 13 Oct 2017 01:46:02 -0400 Subject: [bug#28805] [PATCH] gnu: Add emacs-org-plus-contrib. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53992) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2sn6-0008M2-B8 for guix-patches@gnu.org; Fri, 13 Oct 2017 01:45:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2sn1-0001J1-Fw for guix-patches@gnu.org; Fri, 13 Oct 2017 01:45:48 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:41059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2sn1-0001Io-AW for guix-patches@gnu.org; Fri, 13 Oct 2017 01:45:43 -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 5E232154C77 for ; Fri, 13 Oct 2017 06:45:42 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id b31725cb for ; Fri, 13 Oct 2017 05:45:42 +0000 (UTC) From: Christopher Baines Date: Fri, 13 Oct 2017 06:45:42 +0100 Message-Id: <20171013054542.2032-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: 28805@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-org-plus-contrib): 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 b29436154..de2b89370 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4005,6 +4005,30 @@ also is an authoring system with unique support for literate programming and reproducible research.") (license license:gpl3+))) +(define-public emacs-org-plus-contrib + (package + (name "emacs-org-plus-contrib") + (version "20170917") + (source (origin + (method url-fetch) + (uri (string-append "http://orgmode.org/elpa/org-plus-contrib-" + version ".tar")) + (sha256 + (base32 + "1ya4kah8kg13ka3gpsw8hn6y8358843g986p1bgw5w77n9bgbwsl")))) + (build-system emacs-build-system) + (home-page "http://orgmode.org/") + (synopsis "Outline-based notes management and organizer (with contrib files)") + (description "Org is an Emacs mode for keeping notes, maintaining TODO +lists, and project planning with a fast and effective plain-text system. It +also is an authoring system with unique support for literate programming and +reproducible research. + +This package includes all the functionality of the @code{emacs-org} package, +plus all files that you would find in @file{contrib/} from the git +repository.") + (license license:gpl3+))) + (define-public emacs-flx (package (name "emacs-flx") -- 2.14.2