guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: emacs-beancount: Move to (gnu packages finance).


From: guix-commits
Subject: 01/04: gnu: emacs-beancount: Move to (gnu packages finance).
Date: Tue, 7 Apr 2020 12:47:00 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 805d70214a1b22da70a7545cb1eb49bb5d7484d8
Author: Marius Bakke <address@hidden>
AuthorDate: Tue Apr 7 18:41:47 2020 +0200

    gnu: emacs-beancount: Move to (gnu packages finance).
    
    This is a fixup for commit abcac7a52932bdf66c333659679b0a5e6169e34c, as
    inheritance across modules is not safe.  Fixes <https://bugs.gnu.org/40488>.
    Reported by Christopher Baines <address@hidden>.
    
    * gnu/packages/emacs-xyz.scm (emacs-beancount): Move from here ...
    * gnu/packages/finance.scm: ... to here.
---
 gnu/packages/emacs-xyz.scm | 21 +--------------------
 gnu/packages/finance.scm   | 19 +++++++++++++++++++
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a50c149..f6b5406 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2015 Federico Beffa <address@hidden>
 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2016, 2017, 2018, 2019 Chris Marusich <address@hidden>
-;;; Copyright © 2015, 2016, 2018, 2020 Christopher Lemmer Webber 
<address@hidden>
+;;; Copyright © 2015, 2016, 2018 Christopher Lemmer Webber <address@hidden>
 ;;; Copyright © 2016 Adriano Peluso <address@hidden>
 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 David Thompson <address@hidden>
@@ -107,7 +107,6 @@
   #:use-module (gnu packages databases)
   #:use-module (gnu packages dictionaries)
   #:use-module (gnu packages emacs)
-  #:use-module (gnu packages finance)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages gnome)
@@ -22302,21 +22301,3 @@ conventions.")
       (description "Haskell-Snippets is a collection of YASnippet Haskell
 snippets for Emacs.")
       (license license:expat))))
-
-;; The beancount source ships with elisp in a subdirectory
-(define-public emacs-beancount
-  (package
-    (inherit beancount)
-    (name "emacs-beancount")
-    (build-system emacs-build-system)
-    (arguments
-     `(#:tests? #f ;no tests
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'chdir-emacs
-           (lambda _
-             (chdir "editors/emacs")
-             #t)))))
-    (synopsis "Emacs mode for beancount")
-    (description
-      "Emacs-beancount is an Emacs mode for the Beancount accounting tool.")))
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index e666860..b7cd9c0 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -40,6 +40,7 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake)
+  #:use-module (guix build-system emacs)
   #:use-module (guix build-system python)
   #:use-module (guix build-system glib-or-gtk)
   #:use-module (guix build-system go)
@@ -1440,3 +1441,21 @@ a Qt GUI.")
 define financial transaction records in a text file, read them in memory,
 generate a variety of reports from them, and provides a web interface.")
     (license license:gpl2)))
+
+;; The beancount source ships with elisp in a subdirectory
+(define-public emacs-beancount
+  (package
+    (inherit beancount)
+    (name "emacs-beancount")
+    (build-system emacs-build-system)
+    (arguments
+     `(#:tests? #f ;no tests
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'chdir-emacs
+           (lambda _
+             (chdir "editors/emacs")
+             #t)))))
+    (synopsis "Emacs mode for beancount")
+    (description
+      "Emacs-beancount is an Emacs mode for the Beancount accounting tool.")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]