[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/15: gnu: uim: Keep Emacs files in subdirectory.
From: |
guix-commits |
Subject: |
08/15: gnu: uim: Keep Emacs files in subdirectory. |
Date: |
Wed, 1 Nov 2023 15:53:04 -0400 (EDT) |
lilyp pushed a commit to branch emacs-team
in repository guix.
commit b520ad2781b7be1660adeccdc4f7ddc09e7f2b49
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Oct 19 07:16:18 2023 +0200
gnu: uim: Keep Emacs files in subdirectory.
* gnu/packages/xorg.scm (uim)[arguments]<#:configure-flags>: Drop
“--with-lispdir”.
<#:phases>: Drop ‘fix-install-path’. Adjust ‘make-autoloads’ accordingly.
---
gnu/packages/xorg.scm | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index f65ffa7476..bbaa432142 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6298,7 +6298,6 @@ X11 servers, Windows, or macOS.")
(guix build emacs-utils))
#:configure-flags
(list "--with-anthy-utf8"
- (string-append "--with-lispdir=" %output "/share/emacs")
;; Set proper runpath
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")
"CFLAGS=-O2 -g -fcommon")
@@ -6312,21 +6311,11 @@ X11 servers, Windows, or macOS.")
("uim-el-agent" (string-append out "/bin/uim-el-agent"))
("uim-el-helper-agent" (string-append out
"/bin/uim-el-helper-agent"))))
#t))
- ;; Fix installation path by renaming share/emacs/uim-el to
- ;; share/emacs/site-lisp
- (add-after 'install 'fix-install-path
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((share-emacs (string-append (assoc-ref outputs "out")
- "/share/emacs")))
- (rename-file (string-append share-emacs "/uim-el")
- (string-append share-emacs "/site-lisp")))
- #t))
- ;; Generate emacs autoloads for uim.el
(add-after 'fix-install-path 'make-autoloads
(lambda* (#:key outputs #:allow-other-keys)
(emacs-generate-autoloads
,name (string-append (assoc-ref outputs "out")
- "/share/emacs/site-lisp"))
+ "/share/emacs/site-lisp/uim-el"))
#t)))))
(home-page "https://github.com/uim/uim")
(synopsis "Multilingual input method framework")
- branch emacs-team updated (8d6b3dd0b8 -> 60c97924e9), guix-commits, 2023/11/01
- 05/15: gnu: emacs-mew: Adjust to changes in emacs-build-system., guix-commits, 2023/11/01
- 04/15: gnu: translate-shell: Compile emacs bytecode., guix-commits, 2023/11/01
- 06/15: gnu: crm114: Adjust to changes in emacs-build-system., guix-commits, 2023/11/01
- 08/15: gnu: uim: Keep Emacs files in subdirectory.,
guix-commits <=
- 01/15: guix: emacs-build-system: Process package source in build tree., guix-commits, 2023/11/01
- 02/15: gnu: skktools: Build autoloads before installing them., guix-commits, 2023/11/01
- 03/15: gnu: translate-shell: Build autoloads before installing them., guix-commits, 2023/11/01
- 09/15: gnu: emacs-geiser-guile: Process autoloads in-tree., guix-commits, 2023/11/01
- 07/15: gnu: guile-wisp: Build autoloads before installing them., guix-commits, 2023/11/01
- 10/15: gnu: emacs-geiser-gauche: Process autoloads in-tree., guix-commits, 2023/11/01
- 11/15: gnu: emacs-geiser-racket: Process autoloads in-tree., guix-commits, 2023/11/01
- 12/15: gnu: emacs-geiser-chez: Process autoloads in-tree., guix-commits, 2023/11/01
- 15/15: gnu: emacs-pdf-tools: Build autoloads before installing them., guix-commits, 2023/11/01
- 13/15: gnu: emacs-libgit: Adjust to changes in emacs-build-system., guix-commits, 2023/11/01