GNU bug report logs -
#68556
[PATCH gnome-team 00/25] Update the GNOME Shell extensions
Previous Next
Reported by: Vivien Kraus <vivien <at> planete-kraus.eu>
Date: Wed, 17 Jan 2024 23:13:01 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #260 received at 68556 <at> debbugs.gnu.org (full text, mbox):
The top-level modules that are wrapped are the /extension.js and /prefs.js of
every extension sub-directory.
* gnu/packages/gnome.scm (gnome-shell-extensions) [#:phase
'wrap-applications-menu]: Rename to 'wrap-extensions. Wrap every top-level
module.
[inputs]: Add glib.
[propagated-imputs]: Remove glib.
Change-Id: I88634970321aa8847857e45b369b4ba285caa87d
---
gnu/packages/gnome.scm | 45 +++++++++++++++++++++++++-----------------
1 file changed, 27 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 04fc0500cd..8bc0491230 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10729,32 +10729,41 @@ (define-public gnome-shell-extensions
#:configure-flags #~'("-Dextension_set=all")
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'wrap-applications-menu
+ (add-after 'unpack 'wrap-extensions
(lambda _
(use-modules (ice-9 textual-ports))
- (call-with-output-file "extensions/apps-menu/extension.js-wrapped"
- (lambda (out)
- (format out "'~a'.split(':').forEach("
- (getenv "GI_TYPELIB_PATH"))
- (display
- (string-append "path => imports.gi.GIRepository.Repository"
- ".prepend_search_path(path));\n")
- out)
- (display
- (call-with-input-file "extensions/apps-menu/extension.js"
- get-string-all)
- out)))
- (rename-file "extensions/apps-menu/extension.js-wrapped"
- "extensions/apps-menu/extension.js"))))))
+ (let list-extensions ((dir (opendir "extensions")))
+ (let ((extension (readdir dir)))
+ (unless (eof-object? extension)
+ (for-each
+ (lambda (file-to-wrap)
+ (when (file-exists? file-to-wrap)
+ (call-with-output-file
+ (string-append file-to-wrap "-wrapped")
+ (lambda (out)
+ (format out "'~a'.split(':').forEach("
+ (getenv "GI_TYPELIB_PATH"))
+ (display
+ (string-append "path => imports.gi.GIRepository.Repository"
+ ".prepend_search_path(path));\n")
+ out)
+ (display
+ (call-with-input-file file-to-wrap
+ get-string-all)
+ out)))
+ (rename-file (string-append file-to-wrap "-wrapped")
+ file-to-wrap)))
+ (list (string-append "extensions/" extension "/extension.js")
+ (string-append "extensions/" extension "/prefs.js")))
+ (list-extensions dir)))))))))
(native-inputs
(list `(,glib "bin")
gettext-minimal
gobject-introspection ;to set GI_TYPELIB_PATH
pkg-config))
(inputs
- (list gnome-menus)) ;for Applications Menu
- (propagated-inputs
- (list glib))
+ (list glib
+ gnome-menus)) ;for Applications Menu
(synopsis "Extensions for GNOME Shell")
(description "GNOME Shell extensions modify and extend GNOME Shell
functionality and behavior.")
--
2.41.0
This bug report was last modified 1 year and 108 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.