unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1.
@ 2024-11-12  6:33 Zheng Junjie
  2024-11-20 12:05 ` bug#74317: " Z572
  2024-11-24 17:16 ` [bug#74317] " Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Zheng Junjie @ 2024-11-12  6:33 UTC (permalink / raw)
  To: 74317; +Cc: Ricardo Wurmus

* gnu/packages/admin.scm (libseat): Update to 0.9.1.
[arguments]: Use G-expressions.
[native-inputs]: Remove label.
[propagated-inputs]: Remove label.

(seatd): [arguments]: Use G-expressions.
[native-inputs]: Remove label.

Change-Id: I53ebe502ad80bc892e995749aae3387c42a79bad
---
 gnu/packages/admin.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9c765b51a97..c0f12e308e4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5763,7 +5763,7 @@ (define-public wlgreet
 (define-public libseat
   (package
     (name "libseat")
-    (version "0.8.0")
+    (version "0.9.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -5772,15 +5772,15 @@ (define-public libseat
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "02wzrgp8di6hqmicnm2fim6jnvbn62wy248ikvdvrhiywrb7i931"))))
+                "1q1ih1f9v5240nlas1gz44giwq4k88p3yikfq7w0a4sw58yr6pz8"))))
     (build-system meson-build-system)
     (arguments
-     `(#:configure-flags '("-Dlibseat-logind=elogind"
-                           "-Dserver=disabled")))
+     (list #:configure-flags #~(list "-Dlibseat-logind=elogind"
+                                     "-Dserver=disabled")))
     (native-inputs
-     `(("pkg-config" ,pkg-config)))
+     (list pkg-config))
     (propagated-inputs
-     `(("elogind" ,elogind)))
+     (list elogind))
     (home-page "https://sr.ht/~kennylevinsen/seatd")
     (synopsis "Seat management library")
     (description
@@ -5793,16 +5793,16 @@ (define-public seatd
     (inherit libseat)
     (name "seatd")
     (arguments
-     `(#:configure-flags '("-Dlibseat-logind=elogind")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'install 'remove-libs
-           (lambda* (#:key outputs #:allow-other-keys)
-             (with-directory-excursion (assoc-ref outputs "out")
-               (for-each delete-file-recursively '("lib" "include"))))))))
+     (list #:configure-flags #~(list "-Dlibseat-logind=elogind")
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'install 'remove-libs
+                 (lambda* (#:key outputs #:allow-other-keys)
+                   (with-directory-excursion (assoc-ref outputs "out")
+                     (for-each delete-file-recursively '("lib" "include"))))))))
     (native-inputs
-     `(("pkg-config" ,pkg-config)
-       ("scdoc" ,scdoc)))
+     (list pkg-config
+           scdoc))
     (inputs '())
     (synopsis "Seat management daemon")
     (description

base-commit: 0cbd830ebb8ce802afe99c439ce7fdee448074be
-- 
2.46.0





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

* bug#74317: [PATCH] gnu: libseat, seatd: Update to 0.9.1.
  2024-11-12  6:33 [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1 Zheng Junjie
@ 2024-11-20 12:05 ` Z572
  2024-11-24 17:16 ` [bug#74317] " Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Z572 @ 2024-11-20 12:05 UTC (permalink / raw)
  To: 74317-done; +Cc: Ricardo Wurmus

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

Zheng Junjie <zhengjunjie@iscas.ac.cn> writes:

> * gnu/packages/admin.scm (libseat): Update to 0.9.1.
> [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
> [propagated-inputs]: Remove label.
>
> (seatd): [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
>
> Change-Id: I53ebe502ad80bc892e995749aae3387c42a79bad
> ---
>  gnu/packages/admin.scm | 30 +++++++++++++++---------------
>  1 file changed, 15 insertions(+), 15 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 9c765b51a97..c0f12e308e4 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -5763,7 +5763,7 @@ (define-public wlgreet
>  (define-public libseat
>    (package
>      (name "libseat")
> -    (version "0.8.0")
> +    (version "0.9.1")
>      (source (origin
>                (method git-fetch)
>                (uri (git-reference
> @@ -5772,15 +5772,15 @@ (define-public libseat
>                (file-name (git-file-name name version))
>                (sha256
>                 (base32
> -                "02wzrgp8di6hqmicnm2fim6jnvbn62wy248ikvdvrhiywrb7i931"))))
> +                "1q1ih1f9v5240nlas1gz44giwq4k88p3yikfq7w0a4sw58yr6pz8"))))
>      (build-system meson-build-system)
>      (arguments
> -     `(#:configure-flags '("-Dlibseat-logind=elogind"
> -                           "-Dserver=disabled")))
> +     (list #:configure-flags #~(list "-Dlibseat-logind=elogind"
> +                                     "-Dserver=disabled")))
>      (native-inputs
> -     `(("pkg-config" ,pkg-config)))
> +     (list pkg-config))
>      (propagated-inputs
> -     `(("elogind" ,elogind)))
> +     (list elogind))
>      (home-page "https://sr.ht/~kennylevinsen/seatd")
>      (synopsis "Seat management library")
>      (description
> @@ -5793,16 +5793,16 @@ (define-public seatd
>      (inherit libseat)
>      (name "seatd")
>      (arguments
> -     `(#:configure-flags '("-Dlibseat-logind=elogind")
> -       #:phases
> -       (modify-phases %standard-phases
> -         (add-after 'install 'remove-libs
> -           (lambda* (#:key outputs #:allow-other-keys)
> -             (with-directory-excursion (assoc-ref outputs "out")
> -               (for-each delete-file-recursively '("lib" "include"))))))))
> +     (list #:configure-flags #~(list "-Dlibseat-logind=elogind")
> +           #:phases
> +           #~(modify-phases %standard-phases
> +               (add-after 'install 'remove-libs
> +                 (lambda* (#:key outputs #:allow-other-keys)
> +                   (with-directory-excursion (assoc-ref outputs "out")
> +                     (for-each delete-file-recursively '("lib" "include"))))))))
>      (native-inputs
> -     `(("pkg-config" ,pkg-config)
> -       ("scdoc" ,scdoc)))
> +     (list pkg-config
> +           scdoc))
>      (inputs '())
>      (synopsis "Seat management daemon")
>      (description
>
> base-commit: 0cbd830ebb8ce802afe99c439ce7fdee448074be

pushed, closing.

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

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

* [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1.
  2024-11-12  6:33 [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1 Zheng Junjie
  2024-11-20 12:05 ` bug#74317: " Z572
@ 2024-11-24 17:16 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2024-11-24 17:16 UTC (permalink / raw)
  To: Zheng Junjie; +Cc: Ricardo Wurmus, 74317

Hi!

Zheng Junjie <zhengjunjie@iscas.ac.cn> skribis:

> * gnu/packages/admin.scm (libseat): Update to 0.9.1.
> [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
> [propagated-inputs]: Remove label.
>
> (seatd): [arguments]: Use G-expressions.
> [native-inputs]: Remove label.
>
> Change-Id: I53ebe502ad80bc892e995749aae3387c42a79bad

Possibly related to this change, the ‘minimal-desktop’ system test now
fails:

  https://ci.guix.gnu.org/build/6634997/details

--8<---------------cut here---------------start------------->8---
%%%% Starting test minimal-desktop  (Writing full log to "/gnu/store/5jbrc1nx4wly3vzwc5y15ybd1p5ch7xi-minimal-desktop/minimal-desktop.log")
marionette is ready
PASS: seatd is ready
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL login user on tty1
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL validate user environment
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL validate SEATD_SOCK and GREETD_SOCK
PASS: seatd.sock ownership
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL greetd is ready
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL check /run/user/<uid> mounted and writable
/gnu/store/3h4g93316q2n2zja648z25phq9cq707p-minimal-desktop-builder:1: FAIL check greeter user has correct groups
PASS: screendump
# of expected passes      3
# of unexpected failures  6
builder for `/gnu/store/gy1r997gc4yvr6slf9k8vic159k5xqir-minimal-desktop.drv' failed with exit code 1
--8<---------------cut here---------------end--------------->8---

Could you take a look?

Thanks,
Ludo’.




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

end of thread, other threads:[~2024-11-24 17:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-12  6:33 [bug#74317] [PATCH] gnu: libseat, seatd: Update to 0.9.1 Zheng Junjie
2024-11-20 12:05 ` bug#74317: " Z572
2024-11-24 17:16 ` [bug#74317] " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).