all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou via Guix-patches via <guix-patches@gnu.org>
To: 71110@debbugs.gnu.org
Cc: Nicolas Goaziou <mail@nicolasgoaziou.fr>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#71110] [PATCH rust-team 37/37] gnu: rust-xremap: Update to 0.10.0.
Date: Wed, 22 May 2024 11:45:55 +0200	[thread overview]
Message-ID: <b7ee0f31de3bd810810b2664b40f4392c98aa682.1716370758.git.mail@nicolasgoaziou.fr> (raw)
In-Reply-To: <cover.1716370756.git.mail@nicolasgoaziou.fr>

* gnu/packages/rust-apps.scm (rust-xremap): Update to 0.10.0.
[arguments]<#:cargo-inputs>: Remove RUST-HYPRLAND and RUST-SWAYIPC.
(xremap-hyprland, xremap-sway): Deprecate for XREMAP-WLROOTS.

`sway' and `hypr' clients have been dropped upstream.

Change-Id: Ib413ac773a18c81dfe292f0c30916047a835574b
---
 gnu/packages/rust-apps.scm | 38 +++++++++++++-------------------------
 1 file changed, 13 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 8da7b827e7..04f88e769d 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
-;;; Copyright © 2020-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+;;; Copyright © 2020-2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.ccom>
@@ -3169,7 +3169,7 @@ (define-public git-delta
 (define-public rust-xremap
   (package
     (name "rust-xremap")
-    (version "0.8.14")
+    (version "0.10.0")
     (source
      (origin
        (method url-fetch)
@@ -3177,7 +3177,7 @@ (define-public rust-xremap
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "1691clzqbwcywz66k0lf5wjz3q5cpbks0l090bfv42idzr5a0ghl"))))
+         "13pvlc40zha7c9ma30s32x65c8qciqcnsznw43crx3wymlaqc9sn"))))
     (build-system cargo-build-system)
     (arguments
      `(#:features '()
@@ -3190,7 +3190,6 @@ (define-public rust-xremap
         ("rust-env-logger" ,rust-env-logger-0.10)
         ("rust-evdev" ,rust-evdev-0.12)
         ("rust-fork" ,rust-fork-0.1)
-        ("rust-hyprland" ,rust-hyprland-0.3)
         ("rust-indoc" ,rust-indoc-2)
         ("rust-lazy-static" ,rust-lazy-static-1)
         ("rust-log" ,rust-log-0.4)
@@ -3200,7 +3199,6 @@ (define-public rust-xremap
         ("rust-serde-json" ,rust-serde-json-1)
         ("rust-serde-with" ,rust-serde-with-3)
         ("rust-serde-yaml" ,rust-serde-yaml-0.9)
-        ("rust-swayipc" ,rust-swayipc-3)
         ("rust-toml" ,rust-toml-0.8)
         ("rust-wayland-client" ,rust-wayland-client-0.30)
         ("rust-wayland-protocols-wlr" ,rust-wayland-protocols-wlr-0.1)
@@ -3215,19 +3213,19 @@ (define-public rust-xremap
                     (xremap (string-append out "/bin/xremap")))
                (mkdir-p (string-append share "/bash-completion/completions"))
                (with-output-to-file
-                 (string-append share "/bash-completion/completions/xremap")
+                   (string-append share "/bash-completion/completions/xremap")
                  (lambda _ (invoke xremap "--completions" "bash")))
                (mkdir-p (string-append share "/fish/vendor_completions.d"))
                (with-output-to-file
-                 (string-append share "/fish/vendor_completions.d/xremap.fish")
+                   (string-append share "/fish/vendor_completions.d/xremap.fish")
                  (lambda _ (invoke xremap "--completions" "fish")))
                (mkdir-p (string-append share "/zsh/site-functions"))
                (with-output-to-file
-                 (string-append share "/zsh/site-functions/_xremap")
+                   (string-append share "/zsh/site-functions/_xremap")
                  (lambda _ (invoke xremap "--completions" "zsh")))
                (mkdir-p (string-append share "/elvish/lib"))
                (with-output-to-file
-                 (string-append share "/elvish/lib/xremap")
+                   (string-append share "/elvish/lib/xremap")
                  (lambda _ (invoke xremap "--completions" "elvish")))))))))
     (home-page "https://github.com/k0kubun/xremap")
     (synopsis "Dynamic key remapp for X and Wayland")
@@ -3242,22 +3240,6 @@ (define-public xremap-gnome
      (substitute-keyword-arguments (package-arguments rust-xremap)
        ((#:features _) '(list "gnome"))))))
 
-(define-public xremap-hyprland
-  (package
-    (inherit rust-xremap)
-    (name "xremap-hyprland")
-    (arguments
-     (substitute-keyword-arguments (package-arguments rust-xremap)
-       ((#:features _) '(list "hypr"))))))
-
-(define-public xremap-sway
-  (package
-    (inherit rust-xremap)
-    (name "xremap-sway")
-    (arguments
-     (substitute-keyword-arguments (package-arguments rust-xremap)
-       ((#:features _) '(list "sway"))))))
-
 (define-public xremap-wlroots
   (package
     (inherit rust-xremap)
@@ -3266,6 +3248,12 @@ (define-public xremap-wlroots
      (substitute-keyword-arguments (package-arguments rust-xremap)
        ((#:features _) '(list "wlroots"))))))
 
+(define-public xremap-hyprland
+  (deprecated-package "xremap-hyprland" xremap-wlroots))
+
+(define-public xremap-sway
+  (deprecated-package "xremap-sway" xremap-wlroots))
+
 (define-public xremap-x11
   (package
     (inherit rust-xremap)
-- 
2.41.0







  parent reply	other threads:[~2024-05-22 10:28 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-22  9:41 [bug#71110] [PATCH rust-team 00/37] Update rust-xremap to 0.10.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 01/37] gnu: rust-expect-test-1: Update to 1.5.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 02/37] gnu: rust-serde-with-macros-3: Update to 3.8.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 03/37] gnu: Add rust-serde-derive-internals-0.29 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 04/37] gnu: rust-schemars-derive-0.8: Update to 0.8.20 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 05/37] gnu: rust-schemars-0.8: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 06/37] gnu: Add rust-base64-0.22 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 07/37] gnu: rust-serde-with-3: Update to 3.8.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 08/37] gnu: rust-regex-automata-0.4: Update to 0.4.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 09/37] gnu: rust-regex-1: Update to 1.10.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 10/37] gnu: rust-value-bag-sval2-1: Update to 1.9.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 11/37] gnu: rust-value-bag-serde1-1: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 12/37] gnu: rust-value-bag-1: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 13/37] gnu: rust-env-logger-0.10: Update to 0.10.2 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 14/37] gnu: Add rust-bson-1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 15/37] gnu: rust-anyhow-1: Update to 1.0.86 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 16/37] gnu: Add rust-pretty-assertions-0.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 17/37] gnu: Add rust-graphql-parser-0.3 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 18/37] gnu: Add rust-iso8601-0.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 19/37] gnu: Add rust-num-cmp-0.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 20/37] gnu: Add rust-h3-0.0.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 21/37] gnu: Add rust-h3-quinn-0.0.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 22/37] gnu: Add rust-hyper-tls-0.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 23/37] gnu: Add rust-hyper-rustls-0.26 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 24/37] gnu: rust-pin-project-internal-1: Update to 1.1.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 25/37] gnu: rust-rustls-pki-types-1: Update to 1.7.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 26/37] gnu: rust-pin-project-1: Update to 1.1.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 27/37] gnu: Add rust-wasm-streams-0.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 28/37] gnu: Add rust-reqwest-0.12 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 29/37] gnu: Add rust-derive-utils-0.11 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 30/37] gnu: Add rust-futures-enum-0.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 31/37] gnu: Add rust-juniper-codegen-0.15, rust-juniper-0.15 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 32/37] gnu: rust-num-traits-0.2: Update to 0.2.19 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 33/37] gnu: rust-num-complex-0.4: Update to 0.4.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 34/37] gnu: rust-num-integer-0.1: Update to 0.1.46 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 35/37] gnu: rust-num-iter-0.1: Update to 0.1.45 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 36/37] gnu: rust-num-0.4: Update to 0.4.2 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` Nicolas Goaziou via Guix-patches via [this message]
2024-05-23 21:30 ` bug#71110: [PATCH rust-team 00/37] Update rust-xremap to 0.10.0 Nicolas Goaziou via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b7ee0f31de3bd810810b2664b40f4392c98aa682.1716370758.git.mail@nicolasgoaziou.fr \
    --to=guix-patches@gnu.org \
    --cc=71110@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=mail@nicolasgoaziou.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.