unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Justin Veilleux <terramorpha@cock.li>
To: Vivien Kraus <vivien@planete-kraus.eu>
Cc: 68574@debbugs.gnu.org
Subject: [bug#68574] [PATCH] gnu: gnome-shell-extension-paperwm: Update to 44.17.0.
Date: Sun, 21 Jan 2024 00:34:47 -0500	[thread overview]
Message-ID: <87ttn7dzbc.fsf@cock.li> (raw)
In-Reply-To: <1957dda76ba12f5febb747d6dfa3d7be08a5d69b.camel@planete-kraus.eu> (Vivien Kraus's message of "Sat, 20 Jan 2024 00:22:20 +0100")

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


Hello. Thanks for the feedback! Here is an updated patch.


[-- Attachment #2: 0001-gnu-gnome-shell-extension-paperwm-Update-to-44.17.0.patch --]
[-- Type: text/x-patch, Size: 3501 bytes --]

From 3336aef64ce5e47e1a71aee1d84919d2ae56abbe Mon Sep 17 00:00:00 2001
Message-ID: <3336aef64ce5e47e1a71aee1d84919d2ae56abbe.1705814798.git.terramorpha@cock.li>
From: terramorpha <terramorpha@cock.li>
Date: Thu, 18 Jan 2024 16:36:26 -0500
Subject: [PATCH] gnu: gnome-shell-extension-paperwm: Update to 44.17.0.

* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm): Update to 44.17.0.
---
 gnu/packages/gnome-xyz.scm | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 6b66658215..568ee7343e 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -13,7 +13,7 @@
 ;;; Copyright © 2021, 2022 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2021 Songlin Jiang <hollowman@hollowman.ml>
-;;; Copyright © 2021, 2022 Justin Veilleux <terramorpha@cock.li>
+;;; Copyright © 2021, 2022, 2024 Justin Veilleux <terramorpha@cock.li>
 ;;; Copyright © 2021 Attila Lendvai <attila@lendvai.name>
 ;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
 ;;; Copyright © 2022 Eric Bavier <bavier@posteo.net>
@@ -1016,33 +1016,33 @@ (define-public gnome-shell-extension-noannoyance
 (define-public gnome-shell-extension-paperwm
   (package
     (name "gnome-shell-extension-paperwm")
-    (version "36.0")
+    (version "44.17.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
                     (url "https://github.com/paperwm/PaperWM")
-                    (commit version)))
+                    (commit (string-append "v" version))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1ssnabwxrns36c61ppspjkr9i3qifv08pf2jpwl7cjv3pvyn4kly"))
+                "1d91k9qih81wckqf6554kf8grv6q61rkk4g776g0ijpmf35ljdin"))
               (snippet
                '(begin (delete-file "schemas/gschemas.compiled")))))
     (build-system copy-build-system)
     (arguments
-     '(#:install-plan
-       '(("." "share/gnome-shell/extensions/paperwm@hedning:matrix.org"
-          #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
-                            "\\.xml$" "\\.compiled$")))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'compile-schemas
-           (lambda _
-             (with-directory-excursion "schemas"
-               (invoke "make"))
-             #t)))))
+     (list
+      #:install-plan
+      #~'(("." "share/gnome-shell/extensions/paperwm@paperwm.github.com"
+           #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
+                             "\\.xml$" "\\.compiled$" "\\.svg$")))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'install 'compile-schemas
+            (lambda _
+              (with-directory-excursion "schemas"
+                (invoke "make")))))))
     (native-inputs
-     `(("glib:bin" ,glib "bin"))) ; for glib-compile-schemas
+     `((,glib "bin"))) ; for glib-compile-schemas
     (home-page "https://github.com/paperwm/PaperWM")
     (synopsis "Tiled scrollable window management for GNOME Shell")
     (description "PaperWM is an experimental GNOME Shell extension providing

base-commit: 3e3975275bbab84d58f7740e9680b265769aa580
-- 
2.41.0


  reply	other threads:[~2024-01-21  5:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-18 21:41 [bug#68574] [PATCH] gnu: gnome-shell-extension-paperwm: Update to 44.17.0 Justin Veilleux
2024-01-19 23:22 ` Vivien Kraus via Guix-patches via
2024-01-21  5:34   ` Justin Veilleux [this message]
2024-01-21  8:50   ` bug#68574: " Liliana Marie Prikler

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=87ttn7dzbc.fsf@cock.li \
    --to=terramorpha@cock.li \
    --cc=68574@debbugs.gnu.org \
    --cc=vivien@planete-kraus.eu \
    /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 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).