From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 22 14:39:15 2020 Received: (at submit) by debbugs.gnu.org; 22 Jan 2020 19:39:15 +0000 Received: from localhost ([127.0.0.1]:51359 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iuLqM-0005xE-U1 for submit@debbugs.gnu.org; Wed, 22 Jan 2020 14:39:15 -0500 Received: from lists.gnu.org ([209.51.188.17]:36229) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iuLqL-0005x6-0y for submit@debbugs.gnu.org; Wed, 22 Jan 2020 14:39:13 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:46966) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iuLqJ-0008NS-DG for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:12 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, 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 1iuLqI-0000s8-0D for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:11 -0500 Received: from devianza.investici.org ([198.167.222.108]:57013) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iuLqH-0000qz-Gh for guix-patches@gnu.org; Wed, 22 Jan 2020 14:39:09 -0500 Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 1ECA4E06CC; Wed, 22 Jan 2020 19:39:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1579721945; bh=WTFu78qRdVFMT2GQ1uS4zUT2tExqkZgct3t5uBsvIN4=; h=From:To:Cc:Subject:Date:From; b=agYOYoddx2q9VSrJ5pE/lsAarVNXVIL5GcrGC9PT2EVcIMaHvKR+SgZAhVC4BVCOy 1Da5FlTFs53Ur5RasTS2cMjXVYCg2ETy9/r78fRDJuGTIWmgvz7UuWJW/TFiXd1wfD fF8RY+sL7Gy5G75oyWv5DfaEjyM4okIQVT2Zs0ow= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id F3862E06C7; Wed, 22 Jan 2020 19:39:03 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gnome-shell-extension-appindicator. Date: Wed, 22 Jan 2020 20:38:30 +0100 Message-Id: <20200122193830.11180-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.25.0 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: 198.167.222.108 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-appindicator): New va= riable. --- gnu/packages/gnome-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 0fc721b7d3..2d4fc25593 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -114,6 +114,40 @@ which haven't been updated for some years. The new = app icons are ported from the Obsidian icon theme.") (license license:gpl3))) =20 +(define-public gnome-shell-extension-appindicator + (package + (name "gnome-shell-extension-appindicator") + (version "30") + (source (origin + (method git-fetch) + (uri (git-reference + (url + "https://github.com/ubuntu/gnome-shell-extension-ap= pindicator.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1fjhx23jqwv3d0smwhnjvc35gqhwk9p5f96ic22pfax653cn5vh8")) + (file-name (git-file-name name version)))) + (build-system trivial-build-system) + (arguments + '(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let* ((source (assoc-ref %build-inputs "source")) + (install-dir (string-append (assoc-ref %outputs "out") + "/share/gnome-shell/extensio= ns" + "/appindicatorsupport@rgcjon= as.gmail.com"))) + (mkdir-p install-dir) + (copy-recursively source install-dir) + #t)))) + (synopsis "Adds KStatusNotifierItem support to GNOME Shell") + (description "This extension integrates Ubuntu AppIndicators +and KStatusNotifierItems (KDE's successor of the systray) into +GNOME Shell.") + (home-page "https://github.com/ubuntu/gnome-shell-extension-appindic= ator/") + (license license:gpl2+))) + (define-public gnome-shell-extension-dash-to-dock (package (name "gnome-shell-extension-dash-to-dock") --=20 2.25.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 18:13:00 2020 Received: (at 39243-done) by debbugs.gnu.org; 4 Feb 2020 23:13:00 +0000 Received: from localhost ([127.0.0.1]:44911 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz7NM-0006wj-0Y for submit@debbugs.gnu.org; Tue, 04 Feb 2020 18:13:00 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52368) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iz7NK-0006wW-DK for 39243-done@debbugs.gnu.org; Tue, 04 Feb 2020 18:12:58 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:43031) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iz7NF-0004Yl-An; Tue, 04 Feb 2020 18:12:53 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=35600 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iz7N8-000357-GH; Tue, 04 Feb 2020 18:12:50 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator. References: <20200122193830.11180-1-goodoldpaul@autistici.org> Date: Wed, 05 Feb 2020 00:12:45 +0100 In-Reply-To: <20200122193830.11180-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Wed, 22 Jan 2020 20:38:30 +0100") Message-ID: <87mu9yt09e.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: -0.7 (/) X-Debbugs-Envelope-To: 39243-done Cc: 39243-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: -1.7 (-) Giacomo Leidi skribis: > * gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New va= riable. I untabified the code (as reported by =E2=80=98guix lint=E2=80=99) and appl= ied. Thanks! Ludo=E2=80=99. From unknown Sun Jun 22 11:42:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 04 Mar 2020 12:24:06 +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