all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#69415] [PATCH] gnu: wlsunset: Install man pages.
@ 2024-02-26 20:12 soeren
  2024-05-21 19:20 ` [bug#69415] [PATCH v2] " Dale Mellor
  2024-05-22  5:39 ` bug#69415: [PATCH] " Z572
  0 siblings, 2 replies; 3+ messages in thread
From: soeren @ 2024-02-26 20:12 UTC (permalink / raw)
  To: 69415; +Cc: jgart

From: Sören Tempel <soeren@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




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#69415] [PATCH v2] gnu: wlsunset: Install man pages.
  2024-02-26 20:12 [bug#69415] [PATCH] gnu: wlsunset: Install man pages soeren
@ 2024-05-21 19:20 ` Dale Mellor
  2024-05-22  5:39 ` bug#69415: [PATCH] " Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Dale Mellor @ 2024-05-21 19:20 UTC (permalink / raw)
  To: 69415; +Cc: guix-devel-0brg6a, soeren

From: Sören Tempel <soeren@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@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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#69415: [PATCH] gnu: wlsunset: Install man pages.
  2024-02-26 20:12 [bug#69415] [PATCH] gnu: wlsunset: Install man pages soeren
  2024-05-21 19:20 ` [bug#69415] [PATCH v2] " Dale Mellor
@ 2024-05-22  5:39 ` Z572
  1 sibling, 0 replies; 3+ messages in thread
From: Z572 @ 2024-05-22  5:39 UTC (permalink / raw)
  To: soeren; +Cc: 69415-done, jgart

[-- Attachment #1: Type: text/plain, Size: 1140 bytes --]

soeren@soeren-tempel.net writes:

> From: Sören Tempel <soeren@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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-22  5:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-26 20:12 [bug#69415] [PATCH] gnu: wlsunset: Install man pages soeren
2024-05-21 19:20 ` [bug#69415] [PATCH v2] " Dale Mellor
2024-05-22  5:39 ` bug#69415: [PATCH] " Z572

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.