* [bug#75312] [PATCH] gnu: greetd: Update to 0.10.3.
@ 2025-01-03 13:09 Nicolas Graves via Guix-patches via
2025-01-03 17:45 ` muradm
0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2025-01-03 13:09 UTC (permalink / raw)
To: 75312; +Cc: mail, Nicolas Graves
* gnu/packages/admin.scm (greetd): Update to 0.10.3.
[arguments]<#:cargo-inputs>: Replace rust-nix-0.26 by rust-nix-0.27.
---
gnu/packages/admin.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 466df65dd9..045292a37d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5651,7 +5651,7 @@ (define-public udpcast
(define-public greetd
(package
(name "greetd")
- (version "0.9.0")
+ (version "0.10.3")
(home-page "https://git.sr.ht/~kennylevinsen/greetd")
(source (origin
(method git-fetch)
@@ -5660,11 +5660,11 @@ (define-public greetd
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1b79lb0vikh5vwpdlyga6zwzm11gpsd7ghp8zb0q2m6mlqlj5by3"))))
+ (base32 "1j3c7skby9scsq6p1f6nacbiy9b26y1sswchdsp8p3vv7fgdh2wf"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
- (("rust-nix" ,rust-nix-0.26)
+ (("rust-nix" ,rust-nix-0.27)
("rust-pam-sys" ,rust-pam-sys-0.5)
("rust-rpassword" ,rust-rpassword-5)
("rust-users" ,rust-users-0.11)
--
2.47.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#75312] [PATCH] gnu: greetd: Update to 0.10.3.
2025-01-03 13:09 [bug#75312] [PATCH] gnu: greetd: Update to 0.10.3 Nicolas Graves via Guix-patches via
@ 2025-01-03 17:45 ` muradm
2025-01-19 23:28 ` bug#75312: " Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: muradm @ 2025-01-03 17:45 UTC (permalink / raw)
To: 75312; +Cc: Nicolas Graves, Sharlatan Hellseher
* gnu/packages/admin.scm (greetd): Update to 0.10.3.
* gnu/tests/desktop.scm (minimal-desktop): greetd don't share GREETD_SOCK any more.
Change-Id: I51af36f24fa4647dfde3aeb5c3d68b5cb353a8f9
---
gnu/packages/admin.scm | 6 +++---
gnu/tests/desktop.scm | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 466df65dd9..045292a37d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5651,7 +5651,7 @@ (define-public udpcast
(define-public greetd
(package
(name "greetd")
- (version "0.9.0")
+ (version "0.10.3")
(home-page "https://git.sr.ht/~kennylevinsen/greetd")
(source (origin
(method git-fetch)
@@ -5660,11 +5660,11 @@ (define-public greetd
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1b79lb0vikh5vwpdlyga6zwzm11gpsd7ghp8zb0q2m6mlqlj5by3"))))
+ (base32 "1j3c7skby9scsq6p1f6nacbiy9b26y1sswchdsp8p3vv7fgdh2wf"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
- (("rust-nix" ,rust-nix-0.26)
+ (("rust-nix" ,rust-nix-0.27)
("rust-pam-sys" ,rust-pam-sys-0.5)
("rust-rpassword" ,rust-rpassword-5)
("rust-users" ,rust-users-0.11)
diff --git a/gnu/tests/desktop.scm b/gnu/tests/desktop.scm
index ef30442886..1c32076ccb 100644
--- a/gnu/tests/desktop.scm
+++ b/gnu/tests/desktop.scm
@@ -244,14 +244,14 @@ (define (run-minimal-desktop-test os vm)
(sort (filter expected-var user-env) string<?)))
- (test-assert "validate SEATD_SOCK and GREETD_SOCK"
+ (test-assert "validate SEATD_SOCK"
(begin
(marionette-type "env > env\n" marionette)
(sleep 1)
(define (sock-var? var)
(any (lambda (s) (string-contains var s))
- '("SEATD_SOCK" "GREETD_SOCK")))
+ '("SEATD_SOCK")))
(define (sock-var-sock var)
(car (cdr (string-split var #\=))))
@@ -262,7 +262,7 @@ (define (run-minimal-desktop-test os vm)
(out (filter sock-var? out))
(socks (map sock-var-sock out))
(socks (map wait-for-unix-socket-m socks)))
- (and (= 2 (length socks)) (every identity socks)))))
+ (and (= 1 (length socks)) (every identity socks)))))
(test-equal "seatd.sock ownership"
'("root" "seat")
base-commit: ce3ffac5d366ebf20e0d95779f2fe1ea6dde0202
--
2.47.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#75312: [PATCH] gnu: greetd: Update to 0.10.3.
2025-01-03 17:45 ` muradm
@ 2025-01-19 23:28 ` Ludovic Courtès
0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2025-01-19 23:28 UTC (permalink / raw)
To: muradm; +Cc: Sharlatan Hellseher, Nicolas Graves, Efraim Flashner, 75312-done
Hi muradm,
muradm <mail@muradm.net> skribis:
> * gnu/packages/admin.scm (greetd): Update to 0.10.3.
> * gnu/tests/desktop.scm (minimal-desktop): greetd don't share GREETD_SOCK any more.
>
> Change-Id: I51af36f24fa4647dfde3aeb5c3d68b5cb353a8f9
‘greetd’ had been upgraded independently in
55cead2c49e0740c1595fdc5ecce7d050c36e080, but without updating the
‘minimal-desktop’ test.
I committed the test fix on your behalf as
bc6769f1211104dbc9341c064275cd930f5dfa3a.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-01-19 23:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-03 13:09 [bug#75312] [PATCH] gnu: greetd: Update to 0.10.3 Nicolas Graves via Guix-patches via
2025-01-03 17:45 ` muradm
2025-01-19 23:28 ` bug#75312: " 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).