[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: global: Adjust order of phases.
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: global: Adjust order of phases. |
Date: |
Wed, 24 Jan 2024 15:23:03 -0500 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 143e0fde17 gnu: global: Adjust order of phases.
143e0fde17 is described below
commit 143e0fde17ee739ab9c87a15485cae37461d8ef9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jan 24 22:02:54 2024 +0200
gnu: global: Adjust order of phases.
* gnu/packages/code.scm (global)[arguments]: Adjust the order of the
phases so that they get read in the correct order.
Change-Id: I149ccd249821c64aa5a508048d995e9963ea4c08
---
gnu/packages/code.scm | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index b11a86d5cc..c27da995b4 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -217,22 +217,6 @@ highlighting your own code that seemed comprehensible when
you wrote it.")
(substitute* "globash/globash.in"
(("/bin/echo")
(search-input-file inputs "bin/echo")))))
- (add-after 'post-install 'install-plugins
- (lambda _
- (with-directory-excursion "plugin-factory"
- (invoke "make" "install"))))
- (add-before 'install 'dont-install-to-/var
- (lambda _
- (substitute* "gozilla/Makefile"
- (("DESTDIR\\)\\$\\{localstatedir\\}")
- "TMPDIR)"))))
- (add-after 'install-plugins 'wrap-program
- (lambda _
- (wrap-program
- (string-append #$output
- "/share/gtags/script/pygments_parser.py")
- `("GUIX_PYTHONPATH" ":" prefix
- (,(getenv "GUIX_PYTHONPATH"))))))
(add-after 'install 'post-install
(lambda _
;; Install the plugin files in the right place.
@@ -250,7 +234,23 @@ highlighting your own code that seemed comprehensible when
you wrote it.")
(rename-file (string-append data "/gtags.vim")
(string-append vim "/gtags.vim"))
(rename-file (string-append data "/gtags-cscope.vim")
- (string-append vim
"/gtags-cscope.vim"))))))))
+ (string-append vim "/gtags-cscope.vim")))))
+ (add-after 'post-install 'install-plugins
+ (lambda _
+ (with-directory-excursion "plugin-factory"
+ (invoke "make" "install"))))
+ (add-before 'install 'dont-install-to-/var
+ (lambda _
+ (substitute* "gozilla/Makefile"
+ (("DESTDIR\\)\\$\\{localstatedir\\}")
+ "TMPDIR)"))))
+ (add-after 'install-plugins 'wrap-program
+ (lambda _
+ (wrap-program
+ (string-append #$output
+ "/share/gtags/script/pygments_parser.py")
+ `("GUIX_PYTHONPATH" ":" prefix
+ (,(getenv "GUIX_PYTHONPATH")))))))))
(inputs
(list bash-minimal ; for wrap-program
coreutils
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: global: Adjust order of phases.,
guix-commits <=