all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vivien Kraus via Guix-patches via <guix-patches@gnu.org>
To: 68556@debbugs.gnu.org
Cc: rg@raghavgururajan.name, vivien@planete-kraus.eu,
	liliana.prikler@gmail.com, maxim.cournoyer@gmail.com
Subject: [bug#68556] [PATCH gnome-team v3 5/7] gnu: Remove gnome-shell-extension-jiggle.
Date: Wed, 17 Jan 2024 23:26:28 +0100	[thread overview]
Message-ID: <8f098a83247e59e8c9b31500e50da872e16c5156.1705709466.git.vivien@planete-kraus.eu> (raw)
In-Reply-To: <cover.1705709466.git.vivien@planete-kraus.eu>

This extension has not been made compatible with GNOME 44.

* gnu/packages/gnome-xyz.scm (gnome-shell-extension-jiggle): Remove variable.

Change-Id: I9afa9c2fe110ba883524eb9ca9acab42fbdd8f00
---
 gnu/packages/gnome-xyz.scm | 42 --------------------------------------
 1 file changed, 42 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index feef78c63a..3cfd87400b 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1103,48 +1103,6 @@ (define-public gnome-shell-extension-vertical-overview
   (deprecated-package "gnome-shell-extension-vertical-overview"
                       gnome-shell-extension-v-shell))
 
-(define-public gnome-shell-extension-jiggle
-  (package
-    (name "gnome-shell-extension-jiggle")
-    (version "8")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/jeffchannell/jiggle/")
-             (commit version)))
-       (sha256
-        (base32
-         "1wbdx2bp22bdwj51ckgivwglkmckr7z8kfwvc8nv4y376hjz5jxz"))
-       (file-name (git-file-name name version))
-       (snippet
-        '(begin (delete-file "schemas/gschemas.compiled")))))
-    (build-system copy-build-system)
-    (arguments
-     `(#:install-plan
-       '(("." ,(string-append
-                "share/gnome-shell/extensions/"
-                "jiggle@jeffchannell.com")
-          #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
-                            "\\.xml$" "\\.compiled$")))
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'fix-version
-           (lambda _
-             (substitute* "metadata.json"
-               (("\"40.0\"") "\"40\", \"41\""))))
-         (add-before 'install 'compile-schemas
-           (lambda _
-             (with-directory-excursion "schemas"
-               (invoke "glib-compile-schemas" ".")))))))
-    (native-inputs
-     (list `(,glib "bin")))  ; for glib-compile-resources
-    (home-page "https://github.com/jeffchannell/jiggle")
-    (synopsis "Mouse cursor enlargement for small and fast movements")
-    (description "Jiggle is a Gnome Shell extension that highlights the cursor
-position when the mouse is moved rapidly.")
-    (license license:gpl2)))
-
 (define-public gnome-shell-extension-burn-my-windows
   (package
     (name "gnome-shell-extension-burn-my-windows")
-- 
2.41.0




  reply	other threads:[~2024-01-20  0:14 UTC|newest]

Thread overview: 112+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-17 23:03 [bug#68556] [PATCH gnome-team 00/25] Update the GNOME Shell extensions Vivien Kraus via Guix-patches via
2024-01-16 21:30 ` [bug#68556] [PATCH gnome-team 01/25] gnu: gnome-shell-extension-dash-to-dock: Update to 79 Vivien Kraus via Guix-patches via
2024-01-16 21:31 ` [bug#68556] [PATCH gnome-team 02/25] gnu: gnome-shell-extension-hide-app-icon: Modernize style Vivien Kraus via Guix-patches via
2024-01-16 21:31 ` [bug#68556] [PATCH gnome-team 04/25] gnu: gnome-shell-extension-dash-to-panel: Update to 56 Vivien Kraus via Guix-patches via
2024-01-16 21:35 ` [bug#68556] [PATCH gnome-team 05/25] gnu: gnome-shell-extension-unite-shell: Update to 72 Vivien Kraus via Guix-patches via
2024-01-16 21:40 ` [bug#68556] [PATCH gnome-team 06/25] gnu: gnome-shell-extension-appindicator: Update to 53 Vivien Kraus via Guix-patches via
2024-01-16 21:41 ` [bug#68556] [PATCH gnome-team 07/25] gnu: gnome-shell-extension-clipboard-indicator: Update to 47 Vivien Kraus via Guix-patches via
2024-01-16 21:47 ` [bug#68556] [PATCH gnome-team 08/25] gnu: gnome-shell-extensions-customize-ibus: Update to 86 Vivien Kraus via Guix-patches via
2024-01-16 21:50 ` [bug#68556] [PATCH gnome-team 09/25] gnu: gnome-shell-extension-topicons-redux: Update style Vivien Kraus via Guix-patches via
2024-01-16 21:59 ` [bug#68556] [PATCH gnome-team 10/25] gnu: gnome-shell-extension-gsconnect: Update to 55 Vivien Kraus via Guix-patches via
2024-01-17 16:20 ` [bug#68556] [PATCH gnome-team 03/25] gnu: Remove gnome-shell-extension-hide-app-icon Vivien Kraus via Guix-patches via
2024-01-17 21:35 ` [bug#68556] [PATCH gnome-team 11/25] gnu: gnome-shell-extension-blur-my-shell: Update to 47 Vivien Kraus via Guix-patches via
2024-01-17 21:57 ` [bug#68556] [PATCH gnome-team 12/25] gnu: gnome-shell-extension-burn-my-windows: Update to 40 Vivien Kraus via Guix-patches via
2024-01-17 22:19 ` [bug#68556] [PATCH gnome-team 13/25] gnu: gnome-shell-extension-radio: Update to 21 Vivien Kraus via Guix-patches via
2024-01-17 22:23 ` [bug#68556] [PATCH gnome-team 14/25] gnu: gnome-shell-extension-jiggle: Update style Vivien Kraus via Guix-patches via
2024-01-17 22:25 ` [bug#68556] [PATCH gnome-team 16/25] gnu: gnome-shell-extension-just-perfection: Update to 26.0 Vivien Kraus via Guix-patches via
2024-01-17 22:26 ` [bug#68556] [PATCH gnome-team 15/25] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:30 ` [bug#68556] [PATCH gnome-team 17/25] gnu: gnome-shell-extension-night-theme-switcher: Update to 74 Vivien Kraus via Guix-patches via
2024-01-17 22:32 ` [bug#68556] [PATCH gnome-team 18/25] gnu: gnome-shell-extension-noannoyance: Update style Vivien Kraus via Guix-patches via
2024-01-17 22:33 ` [bug#68556] [PATCH gnome-team 19/25] gnu: Remove gnome-shell-extension-noannoyance Vivien Kraus via Guix-patches via
2024-01-17 22:36 ` [bug#68556] [PATCH gnome-team 20/25] gnu: gnome-shell-extension-paperwm: Update to 44.17.0 Vivien Kraus via Guix-patches via
2024-01-17 22:40 ` [bug#68556] [PATCH gnome-team 21/25] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42 ` [bug#68556] [PATCH gnome-team 22/25] gnu: Remove gnome-shell-extension-topicons-redux Vivien Kraus via Guix-patches via
2024-01-17 22:45 ` [bug#68556] [PATCH gnome-team 23/25] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-17 22:48 ` [bug#68556] [PATCH gnome-team 24/25] gnu: gnome-shell-extension-vertical-overview: Update style Vivien Kraus via Guix-patches via
2024-01-18  5:24   ` Liliana Marie Prikler
2024-01-18 11:38     ` Vivien Kraus via Guix-patches via
2024-01-18 19:53       ` Liliana Marie Prikler
2024-01-17 22:49 ` [bug#68556] [PATCH gnome-team 25/25] gnu: Remove gnome-shell-extension-vertical-overview Vivien Kraus via Guix-patches via
2024-01-19 21:50 ` [bug#68556] [PATCH gnome-team v2 00/23] Update extensions with 3 replacements Vivien Kraus via Guix-patches via
2024-01-16 21:30   ` [bug#68556] [PATCH gnome-team v2 01/23] gnu: gnome-shell-extension-dash-to-dock: Update to 79 Vivien Kraus via Guix-patches via
2024-01-16 21:31   ` [bug#68556] [PATCH gnome-team v2 04/23] gnu: gnome-shell-extension-dash-to-panel: Update to 56 Vivien Kraus via Guix-patches via
2024-01-16 21:35   ` [bug#68556] [PATCH gnome-team v2 05/23] gnu: gnome-shell-extension-unite-shell: Update to 72 Vivien Kraus via Guix-patches via
2024-01-16 21:40   ` [bug#68556] [PATCH gnome-team v2 06/23] gnu: gnome-shell-extension-appindicator: Update to 53 Vivien Kraus via Guix-patches via
2024-01-16 21:41   ` [bug#68556] [PATCH gnome-team v2 07/23] gnu: gnome-shell-extension-clipboard-indicator: Update to 47 Vivien Kraus via Guix-patches via
2024-01-16 21:47   ` [bug#68556] [PATCH gnome-team v2 08/23] gnu: gnome-shell-extensions-customize-ibus: Update to 86 Vivien Kraus via Guix-patches via
2024-01-16 21:50   ` [bug#68556] [PATCH gnome-team v2 09/23] gnu: gnome-shell-extension-topicons-redux: Update style Vivien Kraus via Guix-patches via
2024-01-16 21:59   ` [bug#68556] [PATCH gnome-team v2 10/23] gnu: gnome-shell-extension-gsconnect: Update to 55 Vivien Kraus via Guix-patches via
2024-01-17 16:20   ` [bug#68556] [PATCH gnome-team v2 03/23] gnu: gnome-shell-extension-hide-app-icon: Deprecate Vivien Kraus via Guix-patches via
2024-01-19 22:20     ` Vivien Kraus via Guix-patches via
2024-01-17 21:35   ` [bug#68556] [PATCH gnome-team v2 11/23] gnu: gnome-shell-extension-blur-my-shell: Update to 47 Vivien Kraus via Guix-patches via
2024-01-17 21:57   ` [bug#68556] [PATCH gnome-team v2 12/23] gnu: gnome-shell-extension-burn-my-windows: Update to 40 Vivien Kraus via Guix-patches via
2024-01-17 22:19   ` [bug#68556] [PATCH gnome-team v2 13/23] gnu: gnome-shell-extension-radio: Update to 21 Vivien Kraus via Guix-patches via
2024-01-17 22:25   ` [bug#68556] [PATCH gnome-team v2 02/23] gnu: gnome-shell-extension-just-perfection: Update to 26.0 Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` [bug#68556] [PATCH gnome-team v2 14/23] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:30   ` [bug#68556] [PATCH gnome-team v2 15/23] gnu: gnome-shell-extension-night-theme-switcher: Update to 74 Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v2 16/23] gnu: Add gnome-shell-extension-noannoyance-fork Vivien Kraus via Guix-patches via
2024-01-19 22:33     ` Liliana Marie Prikler
2024-01-19 22:35       ` Vivien Kraus via Guix-patches via
2024-01-19 23:35         ` Liliana Marie Prikler
2024-01-17 22:36   ` [bug#68556] [PATCH gnome-team v2 18/23] gnu: gnome-shell-extension-paperwm: Update to 44.17.0 Vivien Kraus via Guix-patches via
2024-01-19 22:37     ` Liliana Marie Prikler
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v2 19/23] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v2 20/23] gnu: Remove gnome-shell-extension-topicons-redux Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v2 21/23] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-18 18:19   ` [bug#68556] [PATCH gnome-team v2 22/23] gnu: Add gnome-shell-extension-v-shell Vivien Kraus via Guix-patches via
2024-01-18 18:19   ` [bug#68556] [PATCH gnome-team v2 23/23] gnu: gnome-shell-extension-vertical-overview: Deprecate Vivien Kraus via Guix-patches via
2024-01-19 21:11   ` [bug#68556] [PATCH gnome-team v2 17/23] gnu: gnome-shell-extension-noannoyance: Deprecate Vivien Kraus via Guix-patches via
2024-01-19 23:40   ` [bug#68556] [PATCH gnome-team v2 00/23] Update extensions with 3 replacements Liliana Marie Prikler
2024-01-20  0:11 ` [bug#68556] [PATCH gnome-team v3 0/7] [PATCH gnome-team v3 0/7] Update extensions (2/5 replaced, 2/5 no solution, 1/5 redundant) Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` Vivien Kraus via Guix-patches via [this message]
2024-01-20  0:41     ` [bug#68556] [PATCH gnome-team v3 5/7] gnu: Remove gnome-shell-extension-jiggle Liliana Marie Prikler
2024-01-20  0:53       ` Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v3 3/7] gnu: gnome-shell-extension-noannoyance: Switch to fork Vivien Kraus via Guix-patches via
2024-01-20  0:40     ` Liliana Marie Prikler
2024-01-20  9:06       ` Vivien Kraus via Guix-patches via
2024-01-20 10:11         ` Liliana Marie Prikler
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v3 7/7] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v3 4/7] gnu: gnome-shell-extension-topicons-redux: Deprecate Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v3 6/7] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-19 22:36   ` [bug#68556] [PATCH gnome-team v3 2/7] gnu: gnome-shell-extensions: Propagate gnome-menus Vivien Kraus via Guix-patches via
2024-01-19 22:50   ` [bug#68556] [PATCH gnome-team v3 1/7] gnu: gnome-menus: Build GObject Introspection data Vivien Kraus via Guix-patches via
2024-01-20  0:51   ` [bug#68556] [PATCH gnome-team v3 0/7] [PATCH gnome-team v3 0/7] Update extensions (2/5 replaced, 2/5 no solution, 1/5 redundant) Liliana Marie Prikler
2024-01-20 11:02 ` [bug#68556] [PATCH gnome-team v4 0/8] Update the gnome-shell extensions and wrap more Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` [bug#68556] [PATCH gnome-team v4 6/8] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v4 4/8] gnu: gnome-shell-extension-noannoyance: Switch to fork Vivien Kraus via Guix-patches via
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v4 8/8] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v4 5/8] gnu: gnome-shell-extension-topicons-redux: Deprecate Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v4 7/8] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-19 22:36   ` [bug#68556] [PATCH gnome-team v4 2/8] gnu: gnome-shell-extensions: Wrap apps-menu Vivien Kraus via Guix-patches via
2024-01-19 22:50   ` [bug#68556] [PATCH gnome-team v4 1/8] gnu: gnome-menus: Build GObject Introspection data Vivien Kraus via Guix-patches via
2024-01-20 10:38   ` [bug#68556] [PATCH gnome-team v4 3/8] gnu: gnome-shell-extensions: Wrap all the extensions Vivien Kraus via Guix-patches via
2024-01-29 19:56 ` [bug#68556] [PATCH gnome-team v5 0/8] Wrap gnome-shell-extensions with gobject-introspection in native-inputs Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` [bug#68556] [PATCH gnome-team v5 6/8] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v5 4/8] gnu: gnome-shell-extension-noannoyance: Switch to fork Vivien Kraus via Guix-patches via
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v5 8/8] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v5 5/8] gnu: gnome-shell-extension-topicons-redux: Deprecate Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v5 7/8] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-19 22:36   ` [bug#68556] [PATCH gnome-team v5 2/8] gnu: gnome-shell-extensions: Wrap apps-menu Vivien Kraus via Guix-patches via
2024-01-19 22:50   ` [bug#68556] [PATCH gnome-team v5 1/8] gnu: gnome-menus: Build GObject Introspection data Vivien Kraus via Guix-patches via
2024-01-20 10:38   ` [bug#68556] [PATCH gnome-team v5 3/8] gnu: gnome-shell-extensions: Wrap all the extensions Vivien Kraus via Guix-patches via
2024-02-03 14:58     ` Liliana Marie Prikler
2024-01-29 20:53   ` [bug#68556] [PATCH gnome-team v5 0/8] Wrap gnome-shell-extensions with gobject-introspection in native-inputs Liliana Marie Prikler
2024-01-29 21:45     ` Vivien Kraus via Guix-patches via
2024-02-03 18:17 ` [bug#68556] [PATCH gnome-team v6 0/7] Wrap the extensions with (guix build utils) tools Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` [bug#68556] [PATCH gnome-team v6 5/7] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v6 3/7] gnu: gnome-shell-extension-noannoyance: Switch to fork Vivien Kraus via Guix-patches via
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v6 7/7] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v6 4/7] gnu: gnome-shell-extension-topicons-redux: Deprecate Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v6 6/7] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-19 22:36   ` [bug#68556] [PATCH gnome-team v6 2/7] gnu: gnome-shell-extensions: Wrap the extensions Vivien Kraus via Guix-patches via
2024-02-03 23:45     ` Liliana Marie Prikler
2024-01-19 22:50   ` [bug#68556] [PATCH gnome-team v6 1/7] gnu: gnome-menus: Build GObject Introspection data Vivien Kraus via Guix-patches via
2024-02-04  7:00 ` [bug#68556] [PATCH gnome-team v7 0/7] Wrap all the extensions at once with dump-port Vivien Kraus via Guix-patches via
2024-01-17 22:26   ` [bug#68556] [PATCH gnome-team v7 5/7] gnu: Remove gnome-shell-extension-jiggle Vivien Kraus via Guix-patches via
2024-01-17 22:32   ` [bug#68556] [PATCH gnome-team v7 3/7] gnu: gnome-shell-extension-noannoyance: Switch to fork Vivien Kraus via Guix-patches via
2024-01-17 22:40   ` [bug#68556] [PATCH gnome-team v7 7/7] gnu: Remove gnome-shell-extension-sound-output-device-chooser Vivien Kraus via Guix-patches via
2024-01-17 22:42   ` [bug#68556] [PATCH gnome-team v7 4/7] gnu: gnome-shell-extension-topicons-redux: Deprecate Vivien Kraus via Guix-patches via
2024-01-17 22:45   ` [bug#68556] [PATCH gnome-team v7 6/7] gnu: Remove gnome-shell-extension-transparent-window Vivien Kraus via Guix-patches via
2024-01-19 22:36   ` [bug#68556] [PATCH gnome-team v7 2/7] gnu: gnome-shell-extensions: Wrap the extensions Vivien Kraus via Guix-patches via
2024-01-19 22:50   ` [bug#68556] [PATCH gnome-team v7 1/7] gnu: gnome-menus: Build GObject Introspection data Vivien Kraus via Guix-patches via
2024-02-04 20:30   ` bug#68556: [PATCH gnome-team v7 0/7] Wrap all the extensions at once with dump-port 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

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

  git send-email \
    --in-reply-to=8f098a83247e59e8c9b31500e50da872e16c5156.1705709466.git.vivien@planete-kraus.eu \
    --to=guix-patches@gnu.org \
    --cc=68556@debbugs.gnu.org \
    --cc=liliana.prikler@gmail.com \
    --cc=maxim.cournoyer@gmail.com \
    --cc=rg@raghavgururajan.name \
    --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 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.