GNU bug report logs - #69415
[PATCH] gnu: wlsunset: Install man pages.

Previous Next

Package: guix-patches;

Reported by: soeren <at> soeren-tempel.net

Date: Mon, 26 Feb 2024 20:30:02 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

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 69415 in the body.
You can then email your comments to 69415 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#69415; Package guix-patches. (Mon, 26 Feb 2024 20:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to soeren <at> soeren-tempel.net:
New bug report received and forwarded. Copy sent to jgart <at> dismail.de, guix-patches <at> gnu.org. (Mon, 26 Feb 2024 20:30:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: soeren <at> soeren-tempel.net
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: wlsunset: Install man pages.
Date: Mon, 26 Feb 2024 21:12:57 +0100
From: Sören Tempel <soeren <at> soeren-tempel.net>

* gnu/packages/xdisorg.scm (wlsunset): Add dependency on scdoc.
---
The wlsunset man page is written in scdoc, hence we need to depend
on scdoc in native inputs in order to build and install it.

Also CC'ing the last person which touched the package.

 gnu/packages/xdisorg.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 86e5086867..0e56a2db9f 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3634,7 +3634,7 @@ (define-public wlsunset
     (inputs
      (list wayland wayland-protocols))
     (native-inputs
-     (list pkg-config))
+     (list pkg-config scdoc))
     (synopsis "Day/night gamma adjustments for Wayland compositors")
     (home-page "https://sr.ht/~kennylevinsen/wlsunset/")
     (description

base-commit: bf17a01e06abc100651ed643f2d5c7fea07d37ba




Information forwarded to guix-patches <at> gnu.org:
bug#69415; Package guix-patches. (Tue, 21 May 2024 19:21:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>
To: 69415 <at> debbugs.gnu.org
Cc: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>, guix-patches <at> gnu.org,
 Sören Tempel <soeren <at> soeren-tempel.net>
Subject: [PATCH v2] gnu: wlsunset: Install man pages.
Date: Tue, 21 May 2024 20:20:22 +0100
From: Sören Tempel <soeren <at> soeren-tempel.net>

* gnu/packages/xdisorg.scm (wlsunset): Add dependency on scdoc.

Review:
  * Patch applies, build-check, build-source-check, lint; all clean
    * Note that there is a newer version available 0.3.0 -> 0.4.0
  * The change is only in native-inputs for this package, and will not affect
    anything; the only outcome is new documentation for this package.
  * It works: without the patch no man page gets installed, with it the man
    page is there.

Reviewed-by: Dale Mellor <guix-devel-0brg6a <at> rdmp.org>
---
 gnu/packages/xdisorg.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index e13b44290e..b3e32096de 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3632,7 +3632,7 @@ (define-public wlsunset
     (inputs
      (list wayland wayland-protocols))
     (native-inputs
-     (list pkg-config))
+     (list pkg-config scdoc))
     (synopsis "Day/night gamma adjustments for Wayland compositors")
     (home-page "https://sr.ht/~kennylevinsen/wlsunset/")
     (description
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#69415; Package guix-patches. (Tue, 21 May 2024 19:21:02 GMT) Full text and rfc822 format available.

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Wed, 22 May 2024 05:40:01 GMT) Full text and rfc822 format available.

Notification sent to soeren <at> soeren-tempel.net:
bug acknowledged by developer. (Wed, 22 May 2024 05:40:01 GMT) Full text and rfc822 format available.

Message #16 received at 69415-done <at> debbugs.gnu.org (full text, mbox):

From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: soeren <at> soeren-tempel.net
Cc: 69415-done <at> debbugs.gnu.org, jgart <jgart <at> dismail.de>
Subject: Re: [bug#69415] [PATCH] gnu: wlsunset: Install man pages.
Date: Wed, 22 May 2024 13:39:15 +0800
[Message part 1 (text/plain, inline)]
soeren <at> soeren-tempel.net writes:

> From: Sören Tempel <soeren <at> soeren-tempel.net>
>
> * gnu/packages/xdisorg.scm (wlsunset): Add dependency on scdoc.
> ---
> The wlsunset man page is written in scdoc, hence we need to depend
> on scdoc in native inputs in order to build and install it.
>
> Also CC'ing the last person which touched the package.
>
>  gnu/packages/xdisorg.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
> index 86e5086867..0e56a2db9f 100644
> --- a/gnu/packages/xdisorg.scm
> +++ b/gnu/packages/xdisorg.scm
> @@ -3634,7 +3634,7 @@ (define-public wlsunset
>      (inputs
>       (list wayland wayland-protocols))
>      (native-inputs
> -     (list pkg-config))
> +     (list pkg-config scdoc))
>      (synopsis "Day/night gamma adjustments for Wayland compositors")
>      (home-page "https://sr.ht/~kennylevinsen/wlsunset/")
>      (description
>
> base-commit: bf17a01e06abc100651ed643f2d5c7fea07d37ba

push, see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=bf6602beaf1a0618ad0004b74e0e922a11864718
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 19 Jun 2024 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 42 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.