emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#67338: closed ([PATCH gnome-team] [WIP] gnu: Add gnome-logs.)


From: GNU bug Tracking System
Subject: bug#67338: closed ([PATCH gnome-team] [WIP] gnu: Add gnome-logs.)
Date: Mon, 29 Jan 2024 18:16:02 +0000

Your message dated Mon, 29 Jan 2024 19:15:04 +0100
with message-id 
<0f9e3b79cb60bd867ccadd0f4bfe5a203ffe1e86.camel@planete-kraus.eu>
and subject line [PATCH gnome-team] [WIP] gnu: Add gnome-logs.
has caused the debbugs.gnu.org bug report #67338,
regarding [PATCH gnome-team] [WIP] gnu: Add gnome-logs.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
67338: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67338
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH gnome-team] [WIP] gnu: Add gnome-logs. Date: Tue, 21 Nov 2023 18:54:31 +0100 User-agent: Evolution 3.46.4
gnome-logs does not appear to support elogind as a journal provider, because
it crashes on startup.

* gnu/packages/gnome.scm (gnome-logs): New variable.

Change-Id: I3d4fff870b5b0d10bcd229c164a5bb19564880d7
---
 gnu/packages/gnome.scm | 45 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ab485cffb1..61edd70d93 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -13218,6 +13218,51 @@ (define-public komikku
 developed with the aim of being used with the Librem 5 phone.")
     (license license:gpl3+)))
 
+(define-public gnome-logs
+  ;; FIXME: crashes at startup because elogind does not implement the
+  ;; requested API.
+  (package
+    (name "gnome-logs")
+    (version "43.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0q88q8z7paq2r5s7pkxbclsw5mgpi9xslj2hha3q8z62bsbkpa9k"))))
+    (build-system meson-build-system)
+    (arguments
+     (list
+      #:glib-or-gtk? #t
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'skip-icon-cache
+            (lambda _
+              (substitute* "meson_post_install.py"
+                (("gtk-update-icon-cache")
+                 "true"))))
+          (add-after 'unpack 'use-elogind
+            (lambda _
+              (substitute* "src/gl-journal.h"
+                (("systemd/sd-([^.]*)\\.h" all header)
+                 (string-append "elogind/sd-" header ".h")))
+              (substitute* "meson.build"
+                (("'libsystemd'")
+                 "'libelogind'")))))))
+    (inputs
+     (list elogind glib gtk libadwaita))
+    (native-inputs
+     (list gettext-minimal
+           `(,glib "bin")
+           itstool
+           pkg-config))
+    (home-page "https://apps.gnome.org/Logs";)
+    (synopsis "View detailed event logs for the system")
+    (description "This application shows events from the system journal.")
+    (license license:gpl3+)))
+
 (define-public libgda
   (package
     (name "libgda")

base-commit: 1cc3b7e80f60a2a5a6a1400ed0b025efeae7a523
-- 
2.41.0



--- End Message ---
--- Begin Message --- Subject: [PATCH gnome-team] [WIP] gnu: Add gnome-logs. Date: Mon, 29 Jan 2024 19:15:04 +0100 User-agent: Evolution 3.48.4
I’m retracting this, it is obviously out of scope.

Best regards,

Vivien


--- End Message ---

reply via email to

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