GNU bug report logs -
#69772
[PATCH gnome-team 0/2] Fix zathura build
Previous Next
Reported by: Vivien Kraus <vivien <at> planete-kraus.eu>
Date: Wed, 13 Mar 2024 11:48:02 UTC
Severity: normal
Tags: patch
Done: Christopher Baines <mail <at> cbaines.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 69772 in the body.
You can then email your comments to 69772 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
:
bug#69772
; Package
guix-patches
.
(Wed, 13 Mar 2024 11:48:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Vivien Kraus <vivien <at> planete-kraus.eu>
:
New bug report received and forwarded. Copy sent to
liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
.
(Wed, 13 Mar 2024 11:48:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Dear Guix,
The updated girara is too recent for zathura. However, I isolated the patch
to make it work.
What do you think?
Best regards,
Vivien
Vivien Kraus (2):
gnu: zathura: Update to 0.5.4.
gnu: zathura: Update style.
gnu/local.mk | 1 +
.../zathura-use-struct-initializers.patch | 68 +++++++++++++++++++
gnu/packages/pdf.scm | 43 ++++++------
3 files changed, 92 insertions(+), 20 deletions(-)
create mode 100644 gnu/packages/patches/zathura-use-struct-initializers.patch
base-commit: 2ee54513196bad8e663e78ac695b6ffa0da49051
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#69772
; Package
guix-patches
.
(Wed, 13 Mar 2024 11:56:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 69772 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/pdf.scm (zathura): Update to 0.5.4.
* gnu/packages/patches/zathura-use-struct-initializers.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it here.
* gnu/packages/pdf.scm (zathura): Use it here.
Change-Id: I5975d993b92a1a77ed35df2206acb93219138cff
---
gnu/local.mk | 1 +
.../zathura-use-struct-initializers.patch | 68 +++++++++++++++++++
gnu/packages/pdf.scm | 5 +-
3 files changed, 72 insertions(+), 2 deletions(-)
create mode 100644 gnu/packages/patches/zathura-use-struct-initializers.patch
diff --git a/gnu/local.mk b/gnu/local.mk
index 5546e33465..64f52c2501 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -2224,6 +2224,7 @@ dist_patch_DATA = \
%D%/packages/patches/xygrib-fix-finding-data.patch \
%D%/packages/patches/xygrib-newer-proj.patch \
%D%/packages/patches/yggdrasil-extra-config.patch \
+ %D%/packages/patches/zathura-use-struct-initializers.patch \
%D%/packages/patches/zig-0.9-riscv-support.patch \
%D%/packages/patches/zig-do-not-link-against-librt.patch \
%D%/packages/patches/zig-use-baseline-cpu-by-default.patch \
diff --git a/gnu/packages/patches/zathura-use-struct-initializers.patch b/gnu/packages/patches/zathura-use-struct-initializers.patch
new file mode 100644
index 0000000000..9a808a4bc3
--- /dev/null
+++ b/gnu/packages/patches/zathura-use-struct-initializers.patch
@@ -0,0 +1,68 @@
+From c05328185292d6f6a4459024cdb563c63bfad230 Mon Sep 17 00:00:00 2001
+Message-ID: <c05328185292d6f6a4459024cdb563c63bfad230.1710315308.git.vivien <at> planete-kraus.eu>
+From: Sebastian Ramacher <sebastian <at> ramacher.at>
+Date: Mon, 29 Jan 2024 21:05:22 +0100
+Subject: [PATCH] Use struct initializers
+
+---
+ zathura/page-widget.c | 4 ++--
+ zathura/shortcuts.c | 12 +++++-------
+ 2 files changed, 7 insertions(+), 9 deletions(-)
+
+diff --git a/zathura/page-widget.c b/zathura/page-widget.c
+index 216381e..ac85dcf 100644
+--- a/zathura/page-widget.c
++++ b/zathura/page-widget.c
+@@ -1426,8 +1426,8 @@ cb_menu_image_save(GtkMenuItem* item, ZathuraPage* page)
+ }
+
+ /* set command */
+- char* export_command = g_strdup_printf(":export image-p%d-%d ", page_id, image_id);
+- girara_argument_t argument = { 0, export_command };
++ char* export_command = g_strdup_printf(":export image-p%d-%d ", page_id, image_id);
++ girara_argument_t argument = {.n = 0, .data = export_command};
+ sc_focus_inputbar(priv->zathura->ui.session, &argument, NULL, 0);
+ g_free(export_command);
+
+diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c
+index 8836cd2..35b5990 100644
+--- a/zathura/shortcuts.c
++++ b/zathura/shortcuts.c
+@@ -513,7 +513,7 @@ sc_rotate(girara_session_t* session, girara_argument_t* argument,
+ zathura_document_set_rotation(zathura->document, (rotation + angle * t) % 360);
+
+ /* update scale */
+- girara_argument_t new_argument = { zathura_document_get_adjust_mode(zathura->document), NULL };
++ girara_argument_t new_argument = {.n = zathura_document_get_adjust_mode(zathura->document), .data = NULL};
+ sc_adjust_window(zathura->ui.session, &new_argument, NULL, 0);
+
+ /* render all pages again */
+@@ -1372,7 +1372,7 @@ sc_toggle_presentation(girara_session_t* session, girara_argument_t*
+ zathura->shortcut.toggle_presentation_mode.zoom = zathura_document_get_zoom(zathura->document);
+
+ /* adjust window */
+- girara_argument_t argument = { ZATHURA_ADJUST_BESTFIT, NULL };
++ girara_argument_t argument = {.n = ZATHURA_ADJUST_BESTFIT, .data = NULL};
+ sc_adjust_window(session, &argument, NULL, 0);
+
+ /* hide status and inputbar */
+@@ -1390,13 +1390,11 @@ sc_toggle_presentation(girara_session_t* session, girara_argument_t*
+ return false;
+ }
+
+-bool
+-sc_quit(girara_session_t* session, girara_argument_t* UNUSED(argument),
+- girara_event_t* UNUSED(event), unsigned int UNUSED(t))
+-{
++bool sc_quit(girara_session_t* session, girara_argument_t* UNUSED(argument), girara_event_t* UNUSED(event),
++ unsigned int UNUSED(t)) {
+ g_return_val_if_fail(session != NULL, false);
+
+- girara_argument_t arg = { GIRARA_HIDE, NULL };
++ girara_argument_t arg = {.n = GIRARA_HIDE, .data = NULL};
+ girara_isc_completion(session, &arg, NULL, 0);
+
+ cb_destroy(NULL, NULL);
+--
+2.41.0
+
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index f32403b954..6b09cbb5db 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -716,7 +716,7 @@ (define-public zathura-pdf-poppler
(define-public zathura
(package
(name "zathura")
- (version "0.5.2")
+ (version "0.5.4")
(source (origin
(method url-fetch)
(uri
@@ -724,7 +724,8 @@ (define-public zathura
version ".tar.xz"))
(sha256
(base32
- "15314m9chmh5jkrd9vk2h2gwcwkcffv2kjcxkd4v3wmckz5sfjy6"))))
+ "0ckgamf98sydq543arp865jg1afwzhpzcsbhv6zrch2dm5x7y0x3"))
+ (patches (search-patches "zathura-use-struct-initializers.patch"))))
(native-inputs
(list pkg-config
gettext-minimal
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#69772
; Package
guix-patches
.
(Wed, 13 Mar 2024 11:56:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 69772 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/pdf.scm (zathura) [arguments]: Convert to list of
G-Expressions.
(zathura): Reorder fields.
Change-Id: Icb1e983570c6ba3d391c2ee49c1b102246c8080f
---
gnu/packages/pdf.scm | 38 ++++++++++++++++++++------------------
1 file changed, 20 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 6b09cbb5db..b922ac7cf5 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -726,6 +726,26 @@ (define-public zathura
(base32
"0ckgamf98sydq543arp865jg1afwzhpzcsbhv6zrch2dm5x7y0x3"))
(patches (search-patches "zathura-use-struct-initializers.patch"))))
+ (build-system meson-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'start-xserver
+ ;; Tests require a running X server.
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((display ":1"))
+ (setenv "DISPLAY" display)
+
+ ;; On busy machines, tests may take longer than
+ ;; the default of four seconds.
+ (setenv "CK_DEFAULT_TIMEOUT" "20")
+
+ ;; Don't fail due to missing '/etc/machine-id'.
+ (setenv "DBUS_FATAL_WARNINGS" "0")
+ (zero? (system (string-append
+ (search-input-file inputs "/bin/Xvfb")
+ " " display " &")))))))))
(native-inputs
(list pkg-config
gettext-minimal
@@ -747,24 +767,6 @@ (define-public zathura
(list (search-path-specification
(variable "ZATHURA_PLUGINS_PATH")
(files '("lib/zathura")))))
- (build-system meson-build-system)
- (arguments
- `(#:phases (modify-phases %standard-phases
- (add-before 'check 'start-xserver
- ;; Tests require a running X server.
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((display ":1"))
- (setenv "DISPLAY" display)
-
- ;; On busy machines, tests may take longer than
- ;; the default of four seconds.
- (setenv "CK_DEFAULT_TIMEOUT" "20")
-
- ;; Don't fail due to missing '/etc/machine-id'.
- (setenv "DBUS_FATAL_WARNINGS" "0")
- (zero? (system (string-append
- (search-input-file inputs "/bin/Xvfb")
- " " display " &")))))))))
(home-page "https://pwmt.org/projects/zathura/")
(synopsis "Lightweight keyboard-driven PDF viewer")
(description "Zathura is a customizable document viewer. It provides a
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#69772
; Package
guix-patches
.
(Sat, 16 Mar 2024 11:07:02 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Vivien Kraus via Guix-patches via <guix-patches <at> gnu.org> writes:
> Dear Guix,
>
> The updated girara is too recent for zathura. However, I isolated the patch
> to make it work.
>
> What do you think?
Sounds good to me, I've pushed this to gnome-team as
7ba325f21b8d58a5409986a0f3f92ef81f721712.
Chris
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Christopher Baines <mail <at> cbaines.net>
:
You have taken responsibility.
(Sat, 16 Mar 2024 11:07:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Vivien Kraus <vivien <at> planete-kraus.eu>
:
bug acknowledged by developer.
(Sat, 16 Mar 2024 11:07:03 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#69772
; Package
guix-patches
.
(Sun, 17 Mar 2024 01:38:01 GMT)
Full text and
rfc822 format available.
Message #22 received at 69772 <at> debbugs.gnu.org (full text, mbox):
Hi,
Vivien Kraus <vivien <at> planete-kraus.eu> writes:
> * gnu/packages/pdf.scm (zathura): Update to 0.5.4.
> * gnu/packages/patches/zathura-use-struct-initializers.patch: New file.
> * gnu/local.mk (dist_patch_DATA): Register it here.
> * gnu/packages/pdf.scm (zathura): Use it here.
>
> Change-Id: I5975d993b92a1a77ed35df2206acb93219138cff
> ---
> gnu/local.mk | 1 +
> .../zathura-use-struct-initializers.patch | 68 +++++++++++++++++++
> gnu/packages/pdf.scm | 5 +-
> 3 files changed, 72 insertions(+), 2 deletions(-)
> create mode 100644 gnu/packages/patches/zathura-use-struct-initializers.patch
>
> diff --git a/gnu/local.mk b/gnu/local.mk
> index 5546e33465..64f52c2501 100644
> --- a/gnu/local.mk
> +++ b/gnu/local.mk
> @@ -2224,6 +2224,7 @@ dist_patch_DATA = \
> %D%/packages/patches/xygrib-fix-finding-data.patch \
> %D%/packages/patches/xygrib-newer-proj.patch \
> %D%/packages/patches/yggdrasil-extra-config.patch \
> + %D%/packages/patches/zathura-use-struct-initializers.patch \
> %D%/packages/patches/zig-0.9-riscv-support.patch \
> %D%/packages/patches/zig-do-not-link-against-librt.patch \
> %D%/packages/patches/zig-use-baseline-cpu-by-default.patch \
> diff --git a/gnu/packages/patches/zathura-use-struct-initializers.patch b/gnu/packages/patches/zathura-use-struct-initializers.patch
> new file mode 100644
> index 0000000000..9a808a4bc3
> --- /dev/null
> +++ b/gnu/packages/patches/zathura-use-struct-initializers.patch
> @@ -0,0 +1,68 @@
> +From c05328185292d6f6a4459024cdb563c63bfad230 Mon Sep 17 00:00:00 2001
> +Message-ID: <c05328185292d6f6a4459024cdb563c63bfad230.1710315308.git.vivien <at> planete-kraus.eu>
> +From: Sebastian Ramacher <sebastian <at> ramacher.at>
> +Date: Mon, 29 Jan 2024 21:05:22 +0100
> +Subject: [PATCH] Use struct initializers
Is this patch from upstream? It's hard to tell. I'd leave a note with
the URL from where it was retrieved.
Otherwise it LGTM.
--
Thanks,
Maxim
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 14 Apr 2024 11:24:54 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 122 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.