From unknown Fri Jun 20 05:28:01 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#38567 <38567@debbugs.gnu.org> To: bug#38567 <38567@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add gnome-shell-extension-dash-to-panel. Reply-To: bug#38567 <38567@debbugs.gnu.org> Date: Fri, 20 Jun 2025 12:28:01 +0000 retitle 38567 [PATCH] gnu: Add gnome-shell-extension-dash-to-panel. reassign 38567 guix-patches submitter 38567 Giacomo Leidi severity 38567 normal tag 38567 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 11 16:01:35 2019 Received: (at submit) by debbugs.gnu.org; 11 Dec 2019 21:01:35 +0000 Received: from localhost ([127.0.0.1]:58722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1if971-0007r2-CH for submit@debbugs.gnu.org; Wed, 11 Dec 2019 16:01:35 -0500 Received: from lists.gnu.org ([209.51.188.17]:35766) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1if970-0007qu-47 for submit@debbugs.gnu.org; Wed, 11 Dec 2019 16:01:34 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:49976) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1if96y-0006wo-Ds for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:33 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_NONE, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1if96w-0004s1-Ss for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:32 -0500 Received: from latitanza.investici.org ([82.94.249.234]:40381) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1if96w-0004Ub-B8 for guix-patches@gnu.org; Wed, 11 Dec 2019 16:01:30 -0500 Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id B938E120290; Wed, 11 Dec 2019 21:01:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1576098079; bh=MAr3FhTWD4yddw3+4lCzUUuhzC6+LFE1MCRo2gKz4E0=; h=From:To:Cc:Subject:Date:From; b=hMsQhhdF9I/smamQuN1YEM0X0bORHvr+hIP910D0I8WMlTy6cg6pWP+IJ6iNDLyp8 8KjT3YonyxkceI3zf//EEgZ4Z9oaKt22PpsbGtjIAf/S6FQTjzRt7W0NsMqemWgiIZ t0dBWb8mdPpoM3bO7ySSj8eymn4vUl7boTHNp/GY= Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id B25E3120180; Wed, 11 Dec 2019 21:01:17 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gnome-shell-extension-dash-to-panel. Date: Wed, 11 Dec 2019 22:01:00 +0100 Message-Id: <20191211210100.24172-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 82.94.249.234 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): New v= ariable. --- gnu/packages/gnome-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index d05bdf0ac0..47e2d5cc8f 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -151,6 +151,45 @@ faster window switching.") (home-page "https://micheleg.github.io/dash-to-dock/") (license license:gpl2+))) =20 +(define-public gnome-shell-extension-dash-to-panel + (package + (name "gnome-shell-extension-dash-to-panel") + (version "26") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/home-sweet-gnome/dash-to-pa= nel.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1phfx2pblygpcvsppsqqqflm7qnz46mqkw29hj0nv2dn69hf4xbc")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f + #:make-flags (list (string-append "INSTALLBASE=3D" + (assoc-ref %outputs "out") + "/share/gnome-shell/extensions"= ) + (string-append "VERSION=3D" + ,(package-version + gnome-shell-extension-dash-to= -panel))) + #:phases + (modify-phases %standard-phases + (delete 'bootstrap) + (delete 'configure)))) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (propagated-inputs + `(("glib" ,glib) + ("glib" ,glib "bin"))) + (synopsis "Icon taskbar for GNOME Shell") + (description "This extension moves the dash into the gnome main +panel so that the application launchers and system tray are combined +into a single panel, similar to that found in KDE Plasma and Windows 7+.= ") + (home-page "https://github.com/home-sweet-gnome/dash-to-panel/") + (license license:gpl2+))) + (define-public gnome-shell-extension-noannoyance (package (name "gnome-shell-extension-noannoyance") --=20 2.24.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 19 17:23:00 2019 Received: (at 38567-done) by debbugs.gnu.org; 19 Dec 2019 22:23:00 +0000 Received: from localhost ([127.0.0.1]:45662 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ii4CC-0005ny-Aj for submit@debbugs.gnu.org; Thu, 19 Dec 2019 17:23:00 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47741) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ii4CB-0005nk-C1 for 38567-done@debbugs.gnu.org; Thu, 19 Dec 2019 17:22:59 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42776) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ii4C5-0004nl-Iz; Thu, 19 Dec 2019 17:22:53 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=36310 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1ii4C5-0006Ak-5T; Thu, 19 Dec 2019 17:22:53 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#38567] [PATCH] gnu: Add gnome-shell-extension-dash-to-panel. References: <20191211210100.24172-1-goodoldpaul@autistici.org> Date: Thu, 19 Dec 2019 23:22:50 +0100 In-Reply-To: <20191211210100.24172-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Wed, 11 Dec 2019 22:01:00 +0100") Message-ID: <87eex0klad.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 38567-done Cc: 38567-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Giacomo Leidi skribis: > * gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): New v= ariable. Applied, thanks! Ludo=E2=80=99. From unknown Fri Jun 20 05:28:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 17 Jan 2020 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator