GNU bug report logs -
#74317
[PATCH] gnu: libseat, seatd: Update to 0.9.1.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74317 in the body.
You can then email your comments to 74317 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
rekado <at> elephly.net, guix-patches <at> gnu.org
:
bug#74317
; Package
guix-patches
.
(Tue, 12 Nov 2024 06:34:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
New bug report received and forwarded. Copy sent to
rekado <at> elephly.net, guix-patches <at> gnu.org
.
(Tue, 12 Nov 2024 06:34:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Z572 <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Wed, 20 Nov 2024 12:06:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
bug acknowledged by developer.
(Wed, 20 Nov 2024 12:06:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 74317-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> 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.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74317
; Package
guix-patches
.
(Sun, 24 Nov 2024 17:19:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 74317 <at> debbugs.gnu.org (full text, mbox):
Hi!
Zheng Junjie <zhengjunjie <at> 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’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74317
; Package
guix-patches
.
(Mon, 25 Nov 2024 05:58:01 GMT)
Full text and
rfc822 format available.
Message #16 received at 74317 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Ludovic Courtès <ludo <at> gnu.org> writes:
> Hi!
>
> Zheng Junjie <zhengjunjie <at> 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?
It was successful both locally and on my own CI[0], look like ci.guix
was overburdened and slow to react.
[0] https://ci.z572.online/build/366091/details
>
> Thanks,
> Ludo’.
[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
.
(Mon, 23 Dec 2024 12:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 271 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.