unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60798] [PATCH] gnu: greetd: Update to 0.9.0.
@ 2023-01-13 22:08 Felix Lechner via Guix-patches via
  2023-01-17 18:19 ` [bug#60798] [PATCH v2 1/3] gnu: rust-nix-0.26: New variable Felix Lechner via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-01-13 22:08 UTC (permalink / raw)
  To: 60798; +Cc: Felix Lechner

* gnu/packages/admin.scm (greetd): Update to 0.9.0.
Use new style native-inputs.
* gnu/packages/crates-io.scm (rust-nix-0.26): New variable.
---
 gnu/packages/admin.scm     |  9 ++++-----
 gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++----
 2 files changed, 28 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9efedda74a..af08a1ca18 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5199,7 +5199,7 @@ (define-public udpcast
 (define-public greetd
   (package
     (name "greetd")
-    (version "0.8.0")
+    (version "0.9.0")
     (home-page "https://git.sr.ht/~kennylevinsen/greetd")
     (source (origin
               (method git-fetch)
@@ -5208,11 +5208,11 @@ (define-public greetd
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
-               (base32 "0x5c3jkw09kvj2grcxm899y2n6ws8p990cyp9cs0fy6lm4fzlh6v"))))
+               (base32 "1b79lb0vikh5vwpdlyga6zwzm11gpsd7ghp8zb0q2m6mlqlj5by3"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-nix" ,rust-nix-0.19)
+       (("rust-nix" ,rust-nix-0.26)
         ("rust-pam-sys" ,rust-pam-sys-0.5)
         ("rust-rpassword" ,rust-rpassword-5)
         ("rust-users" ,rust-users-0.11)
@@ -5259,8 +5259,7 @@ (define (scdoc-cmd doc lvl)
                  (install-file "greetd-ipc.7" man7)
                  (install-file "agreety.1" man1))))))))
     (native-inputs
-     `(("linux-pam" ,linux-pam)
-       ("scdoc" ,scdoc)))
+     (list linux-pam scdoc))
     (synopsis "Minimal and flexible login manager daemon")
     (description
      "greetd is a minimal and flexible login manager daemon
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1203d10b67..21b6d4c077 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35384,17 +35384,17 @@ (define-public rust-nitrokey-test-state-0.1
 nitrokey-test crate.")
     (license license:gpl3+)))
 
-(define-public rust-nix-0.24
+(define-public rust-nix-0.26
   (package
     (name "rust-nix")
-    (version "0.24.2")
+    (version "0.26.1")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "nix" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1z35n1bhzslr7zawy2c0fl90jjy9l5b3lnsidls3908vfk0xnp0r"))))
+        (base32 "155610n6bp37sqg7p0qihzi0jnvqkpqc40nyik89frbc6lfqv9a6"))))
     (build-system cargo-build-system)
     (arguments
      (list #:skip-build? #t
@@ -35402,7 +35402,7 @@ (define-public rust-nix-0.24
            `(("rust-bitflags" ,rust-bitflags-1)
              ("rust-cfg-if" ,rust-cfg-if-1)
              ("rust-libc" ,rust-libc-0.2)
-             ("rust-memoffset" ,rust-memoffset-0.6))))
+             ("rust-memoffset" ,rust-memoffset-0.7))))
     (home-page "https://github.com/nix-rust/nix")
     (synopsis "Rust friendly bindings to *nix APIs")
     (description
@@ -35411,6 +35411,26 @@ (define-public rust-nix-0.24
 while still providing platform specific APIs.")
     (license license:expat)))
 
+(define-public rust-nix-0.24
+  (package
+    (inherit rust-nix-0.26)
+    (name "rust-nix")
+    (version "0.24.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "nix" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1z35n1bhzslr7zawy2c0fl90jjy9l5b3lnsidls3908vfk0xnp0r"))))
+    (arguments
+     (list #:skip-build? #t
+           #:cargo-inputs
+           `(("rust-bitflags" ,rust-bitflags-1)
+             ("rust-cfg-if" ,rust-cfg-if-1)
+             ("rust-libc" ,rust-libc-0.2)
+             ("rust-memoffset" ,rust-memoffset-0.6))))))
+
 (define-public rust-nix-0.23
   (package
     (inherit rust-nix-0.24)

base-commit: 0f85081ed1d99be57d3544e0307e7fa9ca043be9
-- 
2.38.1





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

* [bug#60798] [PATCH v2 1/3] gnu: rust-nix-0.26: New variable.
  2023-01-13 22:08 [bug#60798] [PATCH] gnu: greetd: Update to 0.9.0 Felix Lechner via Guix-patches via
@ 2023-01-17 18:19 ` Felix Lechner via Guix-patches via
  2023-01-17 18:19   ` [bug#60798] [PATCH v2 2/3] gnu: greetd: Update to 0.9.0 Felix Lechner via Guix-patches via
  2023-01-17 18:19   ` [bug#60798] [PATCH v2 3/3] gnu: greetd: Use new-style inputs Felix Lechner via Guix-patches via
  0 siblings, 2 replies; 5+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-01-17 18:19 UTC (permalink / raw)
  To: 60798; +Cc: Felix Lechner

* gnu/packages/crates-io.scm (rust-nix-0.26): New variable.
---
 gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1203d10b67..21b6d4c077 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35384,17 +35384,17 @@ (define-public rust-nitrokey-test-state-0.1
 nitrokey-test crate.")
     (license license:gpl3+)))
 
-(define-public rust-nix-0.24
+(define-public rust-nix-0.26
   (package
     (name "rust-nix")
-    (version "0.24.2")
+    (version "0.26.1")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "nix" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1z35n1bhzslr7zawy2c0fl90jjy9l5b3lnsidls3908vfk0xnp0r"))))
+        (base32 "155610n6bp37sqg7p0qihzi0jnvqkpqc40nyik89frbc6lfqv9a6"))))
     (build-system cargo-build-system)
     (arguments
      (list #:skip-build? #t
@@ -35402,7 +35402,7 @@ (define-public rust-nix-0.24
            `(("rust-bitflags" ,rust-bitflags-1)
              ("rust-cfg-if" ,rust-cfg-if-1)
              ("rust-libc" ,rust-libc-0.2)
-             ("rust-memoffset" ,rust-memoffset-0.6))))
+             ("rust-memoffset" ,rust-memoffset-0.7))))
     (home-page "https://github.com/nix-rust/nix")
     (synopsis "Rust friendly bindings to *nix APIs")
     (description
@@ -35411,6 +35411,26 @@ (define-public rust-nix-0.24
 while still providing platform specific APIs.")
     (license license:expat)))
 
+(define-public rust-nix-0.24
+  (package
+    (inherit rust-nix-0.26)
+    (name "rust-nix")
+    (version "0.24.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "nix" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1z35n1bhzslr7zawy2c0fl90jjy9l5b3lnsidls3908vfk0xnp0r"))))
+    (arguments
+     (list #:skip-build? #t
+           #:cargo-inputs
+           `(("rust-bitflags" ,rust-bitflags-1)
+             ("rust-cfg-if" ,rust-cfg-if-1)
+             ("rust-libc" ,rust-libc-0.2)
+             ("rust-memoffset" ,rust-memoffset-0.6))))))
+
 (define-public rust-nix-0.23
   (package
     (inherit rust-nix-0.24)

base-commit: ecda67a577570f412b103e5dd8ed1a44193a9c11
-- 
2.38.1





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

* [bug#60798] [PATCH v2 2/3] gnu: greetd: Update to 0.9.0.
  2023-01-17 18:19 ` [bug#60798] [PATCH v2 1/3] gnu: rust-nix-0.26: New variable Felix Lechner via Guix-patches via
@ 2023-01-17 18:19   ` Felix Lechner via Guix-patches via
  2023-01-17 18:19   ` [bug#60798] [PATCH v2 3/3] gnu: greetd: Use new-style inputs Felix Lechner via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-01-17 18:19 UTC (permalink / raw)
  To: 60798; +Cc: Felix Lechner

* gnu/packages/admin.scm (greetd): Update to 0.9.0.
---
 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 9efedda74a..d111e4e3d6 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5199,7 +5199,7 @@ (define-public udpcast
 (define-public greetd
   (package
     (name "greetd")
-    (version "0.8.0")
+    (version "0.9.0")
     (home-page "https://git.sr.ht/~kennylevinsen/greetd")
     (source (origin
               (method git-fetch)
@@ -5208,11 +5208,11 @@ (define-public greetd
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
-               (base32 "0x5c3jkw09kvj2grcxm899y2n6ws8p990cyp9cs0fy6lm4fzlh6v"))))
+               (base32 "1b79lb0vikh5vwpdlyga6zwzm11gpsd7ghp8zb0q2m6mlqlj5by3"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-nix" ,rust-nix-0.19)
+       (("rust-nix" ,rust-nix-0.26)
         ("rust-pam-sys" ,rust-pam-sys-0.5)
         ("rust-rpassword" ,rust-rpassword-5)
         ("rust-users" ,rust-users-0.11)
-- 
2.38.1





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

* [bug#60798] [PATCH v2 3/3] gnu: greetd: Use new-style inputs.
  2023-01-17 18:19 ` [bug#60798] [PATCH v2 1/3] gnu: rust-nix-0.26: New variable Felix Lechner via Guix-patches via
  2023-01-17 18:19   ` [bug#60798] [PATCH v2 2/3] gnu: greetd: Update to 0.9.0 Felix Lechner via Guix-patches via
@ 2023-01-17 18:19   ` Felix Lechner via Guix-patches via
  2023-02-09 10:31     ` bug#60798: " Jelle Licht
  1 sibling, 1 reply; 5+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-01-17 18:19 UTC (permalink / raw)
  To: 60798; +Cc: Felix Lechner

* gnu/packages/admin.scm (greetd)[inputs]: Use new-style inputs.
---
 gnu/packages/admin.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index d111e4e3d6..af08a1ca18 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5259,8 +5259,7 @@ (define (scdoc-cmd doc lvl)
                  (install-file "greetd-ipc.7" man7)
                  (install-file "agreety.1" man1))))))))
     (native-inputs
-     `(("linux-pam" ,linux-pam)
-       ("scdoc" ,scdoc)))
+     (list linux-pam scdoc))
     (synopsis "Minimal and flexible login manager daemon")
     (description
      "greetd is a minimal and flexible login manager daemon
-- 
2.38.1





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

* bug#60798: [PATCH v2 3/3] gnu: greetd: Use new-style inputs.
  2023-01-17 18:19   ` [bug#60798] [PATCH v2 3/3] gnu: greetd: Use new-style inputs Felix Lechner via Guix-patches via
@ 2023-02-09 10:31     ` Jelle Licht
  0 siblings, 0 replies; 5+ messages in thread
From: Jelle Licht @ 2023-02-09 10:31 UTC (permalink / raw)
  To: 60798-done; +Cc: Felix Lechner

Hi Felix,

Felix Lechner via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/admin.scm (greetd)[inputs]: Use new-style inputs.
> ---
>  gnu/packages/admin.scm | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index d111e4e3d6..af08a1ca18 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -5259,8 +5259,7 @@ (define (scdoc-cmd doc lvl)
>                   (install-file "greetd-ipc.7" man7)
>                   (install-file "agreety.1" man1))))))))
>      (native-inputs
> -     `(("linux-pam" ,linux-pam)
> -       ("scdoc" ,scdoc)))
> +     (list linux-pam scdoc))
>      (synopsis "Minimal and flexible login manager daemon")
>      (description
>       "greetd is a minimal and flexible login manager daemon
> -- 
> 2.38.1

Pushed the v2 series to master, with a slight tweak to the commit
message. Thanks!




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

end of thread, other threads:[~2023-02-09 10:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-13 22:08 [bug#60798] [PATCH] gnu: greetd: Update to 0.9.0 Felix Lechner via Guix-patches via
2023-01-17 18:19 ` [bug#60798] [PATCH v2 1/3] gnu: rust-nix-0.26: New variable Felix Lechner via Guix-patches via
2023-01-17 18:19   ` [bug#60798] [PATCH v2 2/3] gnu: greetd: Update to 0.9.0 Felix Lechner via Guix-patches via
2023-01-17 18:19   ` [bug#60798] [PATCH v2 3/3] gnu: greetd: Use new-style inputs Felix Lechner via Guix-patches via
2023-02-09 10:31     ` bug#60798: " Jelle Licht

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).