unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#65855] [PATCH] gnu: emacs-sway: Update to 0.7.
@ 2023-09-10 17:43 Nicolas Graves via Guix-patches via
  2023-09-11  9:39 ` Andrew Tropin
  2023-09-14 12:15 ` [bug#65855] [PATCH v2] " Nicolas Graves via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-09-10 17:43 UTC (permalink / raw)
  To: 65855; +Cc: ngraves, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-sway): Update to 0.7.
---
 gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3cb4fb325a..6d7c413211 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12480,30 +12480,27 @@ (define-public emacs-counsel
     (license license:gpl3+)))
 
 (define-public emacs-sway
-  ;; Commit from Nicola's fork (dash free version with various improvments)
-  (let ((commit "d8752bfccade58c02f2a3e239d4f061d48c7eee2")
-        (revision "0"))
-    (package
-      (name "emacs-sway")
-      (version (git-version "0.6.1" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/thblt/sway.el")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "08mw29ff3gs3n0wnrvd6k64vymzm3qnp3h0v8l2fh67sywarnql1"))))
-      (build-system emacs-build-system)
-      (home-page "https://github.com/thblt/sway.el")
-      (synopsis "Communication with the Sway window manager")
-      (description
-       "This is a basic library to control the Sway window manager from Emacs.
+  (package
+    (name "emacs-sway")
+    (version "0.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/thblt/sway.el")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1w29dkl7s835zgwnc4jx1cp84s6mmwbvlil8z2c31psy0rlajc6i"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/thblt/sway.el")
+    (synopsis "Communication with the Sway window manager")
+    (description
+     "This is a basic library to control the Sway window manager from Emacs.
 Its main use case is in combination with popup managers like Shackle, to
 use frames instead of windows while still giving focus to existing frames
 instead of duplicating them.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-sweet-theme
   (let ((commit "78f741806ecebe01224bf54d09ad80e306652508")

base-commit: 2eb6df537c36da8bf8e81ff698421f6fb1bfd1ab
prerequisite-patch-id: eb618ab7b10483d917c308a38792af98baa517e2
prerequisite-patch-id: 40b6c9f09f27833367a71ec25d77afae4d2a835e
prerequisite-patch-id: c12968d02d99c253f858586a86b16fa32d41f1c1
prerequisite-patch-id: 09d995d48139f8e61183d5634cda13a01cdb50f7
prerequisite-patch-id: 86baa45ec2aad977c8c8135f7613aa391155de6d
prerequisite-patch-id: 3425fbbff6a603d60b4e143ea2141aabf4ddc92c
prerequisite-patch-id: c373c01aab5dcba3503a97d51c62a595147a041c
prerequisite-patch-id: cda857c790b88c681c4e713c5f71e40291970daf
prerequisite-patch-id: 8e234d0f4d93d2aad499eec8842be3d28da98707
prerequisite-patch-id: 5f664cb2fd995a53765c5ffc19a708ac795cc0c4
prerequisite-patch-id: ed447cba9cf9b7e1a1b47aa27acb14f8f2da0a8e
prerequisite-patch-id: 9f80c5bbbfb8cd3347951c4d57634e93ffa79924
prerequisite-patch-id: 1aaa9f0d466e2d6837f75844df48a98beb70ff24
prerequisite-patch-id: 34502820d8c0355b3ed2638c457084edeaba029d
prerequisite-patch-id: a96258da9e78cfb9ac9893cdcdeb38b69b75f134
prerequisite-patch-id: 4a2da4ee89dbbdb2244845149ce6da967ddd5268
prerequisite-patch-id: 9f9c4205781d1f0e2bb7af2d21875de08ee3ecd5
-- 
2.41.0





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

* [bug#65855] [PATCH] gnu: emacs-sway: Update to 0.7.
  2023-09-10 17:43 [bug#65855] [PATCH] gnu: emacs-sway: Update to 0.7 Nicolas Graves via Guix-patches via
@ 2023-09-11  9:39 ` Andrew Tropin
  2023-09-14 12:15 ` [bug#65855] [PATCH v2] " Nicolas Graves via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Andrew Tropin @ 2023-09-11  9:39 UTC (permalink / raw)
  To: Nicolas Graves, 65855; +Cc: Katherine Cox-Buday, ngraves, Liliana Marie Prikler

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

On 2023-09-10 19:43, Nicolas Graves wrote:

> * gnu/packages/emacs-xyz.scm (emacs-sway): Update to 0.7.
> ---
>  gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++--------------------
>  1 file changed, 18 insertions(+), 21 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 3cb4fb325a..6d7c413211 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -12480,30 +12480,27 @@ (define-public emacs-counsel
>      (license license:gpl3+)))
>  
>  (define-public emacs-sway
> -  ;; Commit from Nicola's fork (dash free version with various improvments)
> -  (let ((commit "d8752bfccade58c02f2a3e239d4f061d48c7eee2")
> -        (revision "0"))
> -    (package
> -      (name "emacs-sway")
> -      (version (git-version "0.6.1" revision commit))
> -      (source
> -       (origin
> -         (method git-fetch)
> -         (uri (git-reference
> -               (url "https://github.com/thblt/sway.el")
> -               (commit commit)))
> -         (file-name (git-file-name name version))
> -         (sha256
> -          (base32 "08mw29ff3gs3n0wnrvd6k64vymzm3qnp3h0v8l2fh67sywarnql1"))))
> -      (build-system emacs-build-system)
> -      (home-page "https://github.com/thblt/sway.el")
> -      (synopsis "Communication with the Sway window manager")
> -      (description
> -       "This is a basic library to control the Sway window manager from Emacs.
> +  (package
> +    (name "emacs-sway")
> +    (version "0.7")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/thblt/sway.el")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "1w29dkl7s835zgwnc4jx1cp84s6mmwbvlil8z2c31psy0rlajc6i"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/thblt/sway.el")
> +    (synopsis "Communication with the Sway window manager")
> +    (description
> +     "This is a basic library to control the Sway window manager from Emacs.
>  Its main use case is in combination with popup managers like Shackle, to
>  use frames instead of windows while still giving focus to existing frames
>  instead of duplicating them.")
> -      (license license:gpl3+))))
> +    (license license:gpl3+)))
>  
>  (define-public emacs-sweet-theme
>    (let ((commit "78f741806ecebe01224bf54d09ad80e306652508")
>
> base-commit: 2eb6df537c36da8bf8e81ff698421f6fb1bfd1ab
> prerequisite-patch-id: eb618ab7b10483d917c308a38792af98baa517e2
> prerequisite-patch-id: 40b6c9f09f27833367a71ec25d77afae4d2a835e
> prerequisite-patch-id: c12968d02d99c253f858586a86b16fa32d41f1c1
> prerequisite-patch-id: 09d995d48139f8e61183d5634cda13a01cdb50f7
> prerequisite-patch-id: 86baa45ec2aad977c8c8135f7613aa391155de6d
> prerequisite-patch-id: 3425fbbff6a603d60b4e143ea2141aabf4ddc92c
> prerequisite-patch-id: c373c01aab5dcba3503a97d51c62a595147a041c
> prerequisite-patch-id: cda857c790b88c681c4e713c5f71e40291970daf
> prerequisite-patch-id: 8e234d0f4d93d2aad499eec8842be3d28da98707
> prerequisite-patch-id: 5f664cb2fd995a53765c5ffc19a708ac795cc0c4
> prerequisite-patch-id: ed447cba9cf9b7e1a1b47aa27acb14f8f2da0a8e
> prerequisite-patch-id: 9f80c5bbbfb8cd3347951c4d57634e93ffa79924
> prerequisite-patch-id: 1aaa9f0d466e2d6837f75844df48a98beb70ff24
> prerequisite-patch-id: 34502820d8c0355b3ed2638c457084edeaba029d
> prerequisite-patch-id: a96258da9e78cfb9ac9893cdcdeb38b69b75f134
> prerequisite-patch-id: 4a2da4ee89dbbdb2244845149ce6da967ddd5268
> prerequisite-patch-id: 9f9c4205781d1f0e2bb7af2d21875de08ee3ecd5

Hi Nicolas!

Doesn't seem to apply on latest master.

-- 
Best regards,
Andrew Tropin

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

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

* [bug#65855] [PATCH v2] gnu: emacs-sway: Update to 0.7.
  2023-09-10 17:43 [bug#65855] [PATCH] gnu: emacs-sway: Update to 0.7 Nicolas Graves via Guix-patches via
  2023-09-11  9:39 ` Andrew Tropin
@ 2023-09-14 12:15 ` Nicolas Graves via Guix-patches via
  2023-09-15  9:46   ` bug#65855: " Andrew Tropin
  1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-09-14 12:15 UTC (permalink / raw)
  To: 65855; +Cc: ngraves, Andrew Tropin, Katherine Cox-Buday,
	Liliana Marie Prikler

* gnu/packages/emacs-xyz.scm (emacs-sway): Update to 0.7.
---
 gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a4c6f45feb..c4de0e1d1f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12440,30 +12440,27 @@ (define-public emacs-counsel
     (license license:gpl3+)))
 
 (define-public emacs-sway
-  ;; Commit from Nicola's fork (dash free version with various improvments)
-  (let ((commit "838ef531a30fe616f0141adbdabc132d4edfd374")
-        (revision "0"))
-    (package
-      (name "emacs-sway")
-      (version (git-version "0.6.1" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/thblt/sway.el")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0ddaz8my3z4ca2z81kf1h8773pyx8h0l0ra3ssqd1rq5j0041wdh"))))
-      (build-system emacs-build-system)
-      (home-page "https://github.com/thblt/sway.el")
-      (synopsis "Communication with the Sway window manager")
-      (description
-       "This is a basic library to control the Sway window manager from Emacs.
+  (package
+    (name "emacs-sway")
+    (version "0.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/thblt/sway.el")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1w29dkl7s835zgwnc4jx1cp84s6mmwbvlil8z2c31psy0rlajc6i"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/thblt/sway.el")
+    (synopsis "Communication with the Sway window manager")
+    (description
+     "This is a basic library to control the Sway window manager from Emacs.
 Its main use case is in combination with popup managers like Shackle, to
 use frames instead of windows while still giving focus to existing frames
 instead of duplicating them.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-sweet-theme
   (let ((commit "78f741806ecebe01224bf54d09ad80e306652508")

base-commit: e5f7c14ef6c951f02ca710fad1869db3aedff4b5
-- 
2.41.0





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

* bug#65855: [PATCH v2] gnu: emacs-sway: Update to 0.7.
  2023-09-14 12:15 ` [bug#65855] [PATCH v2] " Nicolas Graves via Guix-patches via
@ 2023-09-15  9:46   ` Andrew Tropin
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Tropin @ 2023-09-15  9:46 UTC (permalink / raw)
  To: Nicolas Graves, 65855-done
  Cc: Katherine Cox-Buday, ngraves, Liliana Marie Prikler

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

On 2023-09-14 14:15, Nicolas Graves wrote:

> * gnu/packages/emacs-xyz.scm (emacs-sway): Update to 0.7.
> ---
>  gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++--------------------
>  1 file changed, 18 insertions(+), 21 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index a4c6f45feb..c4de0e1d1f 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -12440,30 +12440,27 @@ (define-public emacs-counsel
>      (license license:gpl3+)))
>  
>  (define-public emacs-sway
> -  ;; Commit from Nicola's fork (dash free version with various improvments)
> -  (let ((commit "838ef531a30fe616f0141adbdabc132d4edfd374")
> -        (revision "0"))
> -    (package
> -      (name "emacs-sway")
> -      (version (git-version "0.6.1" revision commit))
> -      (source
> -       (origin
> -         (method git-fetch)
> -         (uri (git-reference
> -               (url "https://github.com/thblt/sway.el")
> -               (commit commit)))
> -         (file-name (git-file-name name version))
> -         (sha256
> -          (base32 "0ddaz8my3z4ca2z81kf1h8773pyx8h0l0ra3ssqd1rq5j0041wdh"))))
> -      (build-system emacs-build-system)
> -      (home-page "https://github.com/thblt/sway.el")
> -      (synopsis "Communication with the Sway window manager")
> -      (description
> -       "This is a basic library to control the Sway window manager from Emacs.
> +  (package
> +    (name "emacs-sway")
> +    (version "0.7")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/thblt/sway.el")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "1w29dkl7s835zgwnc4jx1cp84s6mmwbvlil8z2c31psy0rlajc6i"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/thblt/sway.el")
> +    (synopsis "Communication with the Sway window manager")
> +    (description
> +     "This is a basic library to control the Sway window manager from Emacs.
>  Its main use case is in combination with popup managers like Shackle, to
>  use frames instead of windows while still giving focus to existing frames
>  instead of duplicating them.")
> -      (license license:gpl3+))))
> +    (license license:gpl3+)))
>  
>  (define-public emacs-sweet-theme
>    (let ((commit "78f741806ecebe01224bf54d09ad80e306652508")
>
> base-commit: e5f7c14ef6c951f02ca710fad1869db3aedff4b5

Hi Nicolas!

Thank you for the patch.  Applied, pushed.

-- 
Best regards,
Andrew Tropin

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

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

end of thread, other threads:[~2023-09-15  9:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-10 17:43 [bug#65855] [PATCH] gnu: emacs-sway: Update to 0.7 Nicolas Graves via Guix-patches via
2023-09-11  9:39 ` Andrew Tropin
2023-09-14 12:15 ` [bug#65855] [PATCH v2] " Nicolas Graves via Guix-patches via
2023-09-15  9:46   ` bug#65855: " Andrew Tropin

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