bug-guix
[Top][All Lists]
Advanced

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

bug#45316: [PATCH 15/26] gnu: guile-wisp: Adjust following emacs-build-s


From: Maxim Cournoyer
Subject: bug#45316: [PATCH 15/26] gnu: guile-wisp: Adjust following emacs-build-system changes.
Date: Fri, 18 Dec 2020 17:17:12 -0500

* gnu/packages/guile-xyz.scm (guile-wisp)[phases]{compile-emacs-files}: Move
after 'make-autoloads.
{create-pkg.el}: New phase.
---
 gnu/packages/guile-xyz.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index dfffbfc62f..349dce73d3 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -16,7 +16,7 @@
 ;;; Copyright ?? 2017 Theodoros Foradis <theodoros@foradis.org>
 ;;; Copyright ?? 2017 Nikita <nikita@n0.is>
 ;;; Copyright ?? 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright ?? 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright ?? 2018, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright ?? 2018, 2019, 2020 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright ?? 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
 ;;; Copyright ?? 2018 Eric Bavier <bavier@member.fsf.org>
@@ -1746,10 +1746,12 @@ The library is shipped with documentation in Info 
format and usage examples.")
                #t)))
          (add-after 'install 'install-emacs-files
            (assoc-ref emacs:%standard-phases 'install))
-         (add-after 'install-emacs-files 'compile-emacs-files
-           (assoc-ref emacs:%standard-phases 'build))
-         (add-after 'compile-emacs-files 'make-autoloads
-           (assoc-ref emacs:%standard-phases 'make-autoloads)))))
+         (add-after 'install-emacs-files 'create-pkg.el
+           (assoc-ref emacs:%standard-phases 'create-pkg.el))
+         (add-after 'create-pkg.el 'make-autoloads
+           (assoc-ref emacs:%standard-phases 'make-autoloads))
+         (add-after 'make-autoloads 'compile-emacs-files
+           (assoc-ref emacs:%standard-phases 'build)))))
     (home-page "https://www.draketo.de/english/wisp";)
     (inputs
      `(("guile" ,guile-3.0)))
-- 
2.29.2






reply via email to

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