From unknown Sat Sep 13 10:22:24 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#41088 <41088@debbugs.gnu.org> To: bug#41088 <41088@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add gnome-shell-extension-clipboard-indicator. Reply-To: bug#41088 <41088@debbugs.gnu.org> Date: Sat, 13 Sep 2025 17:22:24 +0000 retitle 41088 [PATCH] gnu: Add gnome-shell-extension-clipboard-indicator. reassign 41088 guix-patches submitter 41088 Jack Hill severity 41088 normal tag 41088 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:30:29 2020 Received: (at submit) by debbugs.gnu.org; 4 May 2020 22:30:29 +0000 Received: from localhost ([127.0.0.1]:34244 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVjbZ-0002zF-IG for submit@debbugs.gnu.org; Mon, 04 May 2020 18:30:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:39034) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVjbY-0002z7-3y for submit@debbugs.gnu.org; Mon, 04 May 2020 18:30:28 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54650) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jVjbX-0006Cl-Rw for guix-patches@gnu.org; Mon, 04 May 2020 18:30:27 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:44750) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jVjbO-0001Fm-F5 for guix-patches@gnu.org; Mon, 04 May 2020 18:30:26 -0400 Received: from [2001:470:8:9f5:f948:e83a:c72a:f39b] (helo=alperton.home.eronel.org) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1jVjbK-0001xZ-Vf for guix-patches@gnu.org; Mon, 04 May 2020 18:30:15 -0400 From: Jack Hill To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gnome-shell-extension-clipboard-indicator. Date: Mon, 4 May 2020 18:30:05 -0400 Message-Id: <20200504223005.11419-1-jackhill@jackhill.us> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=104.248.1.95; envelope-from=jackhill@jackhill.us; helo=minsky.hcoop.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/04 17:03:18 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit 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-clipboard-indicator): New variable. --- gnu/packages/gnome-xyz.scm | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 625248a25a..ee5176d22a 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -148,6 +148,48 @@ GNOME Shell.") (home-page "https://github.com/ubuntu/gnome-shell-extension-appindicator/") (license license:gpl2+))) +(define-public gnome-shell-extension-clipboard-indicator + (package + (name "gnome-shell-extension-clipboard-indicator") + (version "34") + (source (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/Tudmotu/" + "gnome-shell-extension-clipboard-indicator.git")) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0i00psc1ky70zljd14jzr627y7nd8xwnwrh4xpajl1f6djabh12s")) + (modules '((guix build utils))) + (snippet + '(begin (delete-file "schemas/gschemas.compiled") + (for-each delete-file (find-files "locale" "\\.mo$")) + #t)))) + (build-system copy-build-system) + (arguments + '(#:install-plan + '(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com" + #:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$"))) + #:phases + (modify-phases %standard-phases + (add-before 'install 'compile-schemas + (lambda _ + (with-directory-excursion "schemas" + (invoke "glib-compile-schemas" ".")) + #t)) + (add-before 'install 'compile-locales + (lambda _ (invoke "./compile-locales.sh")))))) + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin"))) ; for glib-compile-schemas + (home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator") + (synopsis "Clipboard manager extension for GNOME Shell") + (description "Clipboard Indicator is a clipboard manager for GNOME Shell +that caches clipboard history.") + (license license:expat))) + (define-public gnome-shell-extension-topicons-redux (package (name "gnome-shell-extension-topicons-redux") -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:40:54 2020 Received: (at 41088) by debbugs.gnu.org; 4 May 2020 22:40:54 +0000 Received: from localhost ([127.0.0.1]:34249 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVjle-0003Ds-Kf for submit@debbugs.gnu.org; Mon, 04 May 2020 18:40:54 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:35514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jVjlc-0003De-5Z for 41088@debbugs.gnu.org; Mon, 04 May 2020 18:40:52 -0400 Received: from [2001:470:8:9f5:f948:e83a:c72a:f39b] (helo=alperton.home.eronel.org) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1jVjlW-0002kx-IQ for 41088@debbugs.gnu.org; Mon, 04 May 2020 18:40:46 -0400 From: Jack Hill To: 41088@debbugs.gnu.org Subject: [PATCH v2] gnu: Add gnome-shell-extension-clipboard-indicator. Date: Mon, 4 May 2020 18:40:36 -0400 Message-Id: <20200504224036.11979-1-jackhill@jackhill.us> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41088 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.0 (-) * gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): New variable. --- New in this version: Now all phases return #t gnu/packages/gnome-xyz.scm | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 625248a25a..26de92c2c9 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -148,6 +148,49 @@ GNOME Shell.") (home-page "https://github.com/ubuntu/gnome-shell-extension-appindicator/") (license license:gpl2+))) +(define-public gnome-shell-extension-clipboard-indicator + (package + (name "gnome-shell-extension-clipboard-indicator") + (version "34") + (source (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/Tudmotu/" + "gnome-shell-extension-clipboard-indicator.git")) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0i00psc1ky70zljd14jzr627y7nd8xwnwrh4xpajl1f6djabh12s")) + (modules '((guix build utils))) + (snippet + '(begin (delete-file "schemas/gschemas.compiled") + (for-each delete-file (find-files "locale" "\\.mo$")) + #t)))) + (build-system copy-build-system) + (arguments + '(#:install-plan + '(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com" + #:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$"))) + #:phases + (modify-phases %standard-phases + (add-before 'install 'compile-schemas + (lambda _ + (with-directory-excursion "schemas" + (invoke "glib-compile-schemas" ".")) + #t)) + (add-before 'install 'compile-locales + (lambda _ (invoke "./compile-locales.sh") + #t))))) + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin"))) ; for glib-compile-schemas + (home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator") + (synopsis "Clipboard manager extension for GNOME Shell") + (description "Clipboard Indicator is a clipboard manager for GNOME Shell +that caches clipboard history.") + (license license:expat))) + (define-public gnome-shell-extension-topicons-redux (package (name "gnome-shell-extension-topicons-redux") -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 14:06:17 2020 Received: (at 41088) by debbugs.gnu.org; 5 May 2020 18:06:17 +0000 Received: from localhost ([127.0.0.1]:37374 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW1xQ-0006nu-V5 for submit@debbugs.gnu.org; Tue, 05 May 2020 14:06:17 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:41675) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW1xH-0006nM-8S for 41088@debbugs.gnu.org; Tue, 05 May 2020 14:06:16 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 3C56E5C00D1; Tue, 5 May 2020 14:06:02 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Tue, 05 May 2020 14:06:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm2; bh=wqswxXnxYJFznotJZmm/hHdQvn vUPaInDaqCLoGTDcM=; b=nXAe1KDrcxgTVaHlsU7Igbozvhr+hlpQj6vPjoOc5F t2i+dn4qSPMcbk0Xhe/UAb0Yjj+D/pzldpYbhLEmvgBar4BpgRgXnELK60NBYmVw CJQMA1ugdM+swXVo6Z/aO9HfomuZSEp4TI8KDcA5J39qZBpM7lK7r5Gy7F78edXK fM04GHRjVsAllbFW8VKVKgjsGp2M29p02KB+vuIHma0AT52Z+nQNW6vLMf3KLboC CjXJ0VnZ60o+lL3f0FsRZF4YXNvfy5EKk8nfkrq9Ify266dDw78zruBxMNLQ0wIk 0RSIPj35V5FYr3uB3AN5ixPOoh9rxiE8gTCEPoFDqHxg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=wqswxX nxYJFznotJZmm/hHdQvnvUPaInDaqCLoGTDcM=; b=VIRPcga5Prl2T2RqTMjyb1 3Ci3J1bpz8HK0Ot/npamBCbZPEwZQp8cmOcEM9voz4M9Bnoua4wzeFdxtJlcbkvv eP1USW4DMuCUP1UQ3ihavTnFnm+W5uvgjmBu/NXYtTQEXeNrwwz+UrDWG0DG1VNm 8ZS2ta+gQ0aZLIR5s3qvoeFoqZO7c5COjuGf0czCdXOpkGHZ5uvYj+HtnRjA02Sx svGL6ygkCRPHgjJjGuwF/VzNN3CXcSjB1q5zlJdRap3bUzNF0RYUayuLOrka/ffi Q9S5p4H3mYrpBeTsDdHC3kcHXPoKRJHUNkTcyljTOYJP9uhlWCet2RNSOL5dh5xg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrjeeigdduudejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufgjfhgffffkgggtsehgtderredtredtnecuhfhrohhmpeforghrihhu shcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrihhlrdgtohhmqeenucggtffrrg htthgvrhhnpedtvdfggeevgeeivdffueejiedttedvkedtudfggfdtgeefiedtieekffdu gfeuffenucfkphepkeegrddvtddvrdeikedrjeehnecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrghilhdrtgho mh X-ME-Proxy: Received: from localhost (ti0006q161-2604.bb.online.no [84.202.68.75]) by mail.messagingengine.com (Postfix) with ESMTPA id 8FD2530660AD; Tue, 5 May 2020 14:06:01 -0400 (EDT) From: Marius Bakke To: Jack Hill , 41088@debbugs.gnu.org Subject: Re: [bug#41088] [PATCH v2] gnu: Add gnome-shell-extension-clipboard-indicator. In-Reply-To: <20200504224036.11979-1-jackhill@jackhill.us> References: <20200504223005.11419-1-jackhill@jackhill.us> <20200504224036.11979-1-jackhill@jackhill.us> User-Agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Tue, 05 May 2020 20:06:00 +0200 Message-ID: <87imhaxnnb.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41088 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 (-) --=-=-= Content-Type: text/plain Jack Hill writes: > * gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): > New variable. Thanks! [...] > + (snippet > + '(begin (delete-file "schemas/gschemas.compiled") > + (for-each delete-file (find-files "locale" "\\.mo$")) > + #t)))) Can you add a comment about why this is necessary? Otherwise LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl6xqwgACgkQoqBt8qM6 VPoTpAf9ETQf9bt4g/1QY4m9nE/50TFl6/VQXn1CcTbcaI8ShGE6hH1Z0PveHN51 kFjjHsw4EsRruEyrB4BBS4F8RGPmq+cXUZ/9C+LcWzvDFK8lpH8eVXgdCgYaggcG FaltSdRg3yxLSaEKollIK3zhSTUiVRuFdgDVWH/Vt/2W4HGbmZ1WPjsKGFAUpMc7 mIbrZBECdh0vVPvBDb1bwmUPB2Wr4ZyNwQEf6PylYMq1iWI9YAgnrS9BK/8CeS/+ QKDijzTMHjef3mSZLg3uu7P9OVwuMh+vLt/DZdAF8o1F4ak8Q2oNuxD7y2AuuSLb rPnnaw19Y3EgH2BasV9AloJJDNRMfQ== =c1dF -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 16:11:10 2020 Received: (at 41088) by debbugs.gnu.org; 5 May 2020 20:11:11 +0000 Received: from localhost ([127.0.0.1]:37635 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW3uI-0007yS-MG for submit@debbugs.gnu.org; Tue, 05 May 2020 16:11:10 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:47092) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW3uH-0007yE-0p for 41088@debbugs.gnu.org; Tue, 05 May 2020 16:11:09 -0400 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1jW3uB-0003T9-LA; Tue, 05 May 2020 16:11:03 -0400 Date: Tue, 5 May 2020 16:11:03 -0400 (EDT) From: Jack Hill X-X-Sender: jackhill@marsh.hcoop.net To: Marius Bakke Subject: Re: [bug#41088] [PATCH v2] gnu: Add gnome-shell-extension-clipboard-indicator. In-Reply-To: <87imhaxnnb.fsf@devup.no> Message-ID: References: <20200504223005.11419-1-jackhill@jackhill.us> <20200504224036.11979-1-jackhill@jackhill.us> <87imhaxnnb.fsf@devup.no> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41088 Cc: 41088@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.0 (-) On Tue, 5 May 2020, Marius Bakke wrote: > Jack Hill writes: > >> + (snippet >> + '(begin (delete-file "schemas/gschemas.compiled") >> + (for-each delete-file (find-files "locale" "\\.mo$")) >> + #t)))) > > Can you add a comment about why this is necessary? I've added a commend and will send the updated patch shortly. However, I may have been wrong to remove these files as part of the snippet. I did it because the removed files are not source form, but instead can be generated from source during the package build. I believe that upstream includes them in the code repository because it is common for people to install GNOME Shell extensions by directly cloning the repo in their home directories. > Otherwise LGTM. Thanks for the review. Best, Jack From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 16:13:16 2020 Received: (at 41088) by debbugs.gnu.org; 5 May 2020 20:13:16 +0000 Received: from localhost ([127.0.0.1]:37640 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW3wK-00081g-3K for submit@debbugs.gnu.org; Tue, 05 May 2020 16:13:16 -0400 Received: from minsky.hcoop.net ([104.248.1.95]:47108) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jW3wF-00081R-NZ for 41088@debbugs.gnu.org; Tue, 05 May 2020 16:13:15 -0400 Received: from [2001:470:8:9f5:f948:e83a:c72a:f39b] (helo=alperton.home.eronel.org) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1jW3wA-0004bC-HV; Tue, 05 May 2020 16:13:06 -0400 From: Jack Hill To: 41088@debbugs.gnu.org Subject: [PATCH v3] gnu: Add gnome-shell-extension-clipboard-indicator. Date: Tue, 5 May 2020 16:12:55 -0400 Message-Id: <20200505201255.29313-1-jackhill@jackhill.us> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 41088 Cc: Marius Bakke 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.0 (-) * gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): New variable. --- New in this version: Added comment about why compiled schemas and translations are removed as part of the source snippet. gnu/packages/gnome-xyz.scm | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 625248a25a..41c341fd41 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -148,6 +148,53 @@ GNOME Shell.") (home-page "https://github.com/ubuntu/gnome-shell-extension-appindicator/") (license license:gpl2+))) +(define-public gnome-shell-extension-clipboard-indicator + (package + (name "gnome-shell-extension-clipboard-indicator") + (version "34") + (source (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/Tudmotu/" + "gnome-shell-extension-clipboard-indicator.git")) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0i00psc1ky70zljd14jzr627y7nd8xwnwrh4xpajl1f6djabh12s")) + (modules '((guix build utils))) + (snippet + ;; Remove pre-compiled settings schemas and translations from + ;; source, as they are generated as part of build. Upstream + ;; includes them for people who want to run the software + ;; directly from source tree. + '(begin (delete-file "schemas/gschemas.compiled") + (for-each delete-file (find-files "locale" "\\.mo$")) + #t)))) + (build-system copy-build-system) + (arguments + '(#:install-plan + '(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com" + #:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$"))) + #:phases + (modify-phases %standard-phases + (add-before 'install 'compile-schemas + (lambda _ + (with-directory-excursion "schemas" + (invoke "glib-compile-schemas" ".")) + #t)) + (add-before 'install 'compile-locales + (lambda _ (invoke "./compile-locales.sh") + #t))))) + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin"))) ; for glib-compile-schemas + (home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator") + (synopsis "Clipboard manager extension for GNOME Shell") + (description "Clipboard Indicator is a clipboard manager for GNOME Shell +that caches clipboard history.") + (license license:expat))) + (define-public gnome-shell-extension-topicons-redux (package (name "gnome-shell-extension-topicons-redux") -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Wed May 06 16:32:43 2020 Received: (at 41088-done) by debbugs.gnu.org; 6 May 2020 20:32:43 +0000 Received: from localhost ([127.0.0.1]:41323 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWQih-0003LW-Fl for submit@debbugs.gnu.org; Wed, 06 May 2020 16:32:43 -0400 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:58181) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jWQig-0003L0-3B for 41088-done@debbugs.gnu.org; Wed, 06 May 2020 16:32:42 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 70B5560C; Wed, 6 May 2020 16:32:36 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Wed, 06 May 2020 16:32:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm2; bh=dHdtDc3bAXoP+4qfYv/oLCgKpu 2RVCq0KOLQC4IubRg=; b=OMbcVKvkeE7EgFhAcr3E70bQd29NZgGqxu6sdPbWg9 oP/3Y8i1UMfLRE+JzU5bnDcUabJCqzmBR5Y6OsPijXmQ+DKOGmPiANm2CoyiddW5 ABn2h4mdpKAVLu0tMIXC84jbjKAFe3kuhHEXW9MLPYHx2VwWNmg0hyputZc3+Xwx 9gRnfgjXtODJZblugFgbNPP0RauYCjEKW1sIp17ObaRFeQJ8rnwoeOre7pEN0gnY HzsmwTFQZhyOggkvV2WLlUU6f1i0nQ2mcYM8R+UwtykcLIR+UjUxXd9zDpHyc4VC GOJwRvtGZwBmWo67++zmAaFk94U///1CXYbsO+5Sm7cQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=dHdtDc 3bAXoP+4qfYv/oLCgKpu2RVCq0KOLQC4IubRg=; b=AHLGoI/xB2rneA8O+tP4LP jyCoXIMbiFyVzEL7LFgVNxZ2GEdAvc4xDjmsLbi8CHJNErl9H55AXR0DVCvaHLY8 N+QX0g4AcIcMG3gd+5qoEmCRyUCW/Yo6cOJMJE5EI6GhrKfM0ff0VVAqaR/TE3Aw h2gwwi1ZqSXTJZyz8557pyqR0+XBg78pKj1MEhIxFTKlzS0+5RlaDdzWKMRL9ftf 5N5hKY7IZkzvcvUE54tmPswtCN7HUZRhz3+UWd1SsaDrPmDY1U1Q5WXHQDm66tNN RPP51GlnnvNcu41TEkwScFCYkVrRR2l/AqIZSjWtKSOYQYQHAPgGFVO55f3Y1DXg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduhedrjeekgddugeejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufgjfhgffffkgggtsehgtderredtredtnecuhfhrohhmpeforghrihhu shcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrihhlrdgtohhmqeenucggtffrrg htthgvrhhnpedtvdfggeevgeeivdffueejiedttedvkedtudfggfdtgeefiedtieekffdu gfeuffenucfkphepkeegrddvtddvrdeikedrjeehnecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgvsehfrghsthhmrghilhdrtgho mh X-ME-Proxy: Received: from localhost (ti0006q161-2604.bb.online.no [84.202.68.75]) by mail.messagingengine.com (Postfix) with ESMTPA id 3128E3066118; Wed, 6 May 2020 16:32:35 -0400 (EDT) From: Marius Bakke To: Jack Hill , 41088-done@debbugs.gnu.org Subject: Re: [PATCH v3] gnu: Add gnome-shell-extension-clipboard-indicator. In-Reply-To: <20200505201255.29313-1-jackhill@jackhill.us> References: <20200505201255.29313-1-jackhill@jackhill.us> User-Agent: Notmuch/0.29.3 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Wed, 06 May 2020 22:32:33 +0200 Message-ID: <874kss4xem.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41088-done 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 (-) --=-=-= Content-Type: text/plain Jack Hill writes: > * gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): > New variable. Applied, thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl6zHuEACgkQoqBt8qM6 VPqHFAgAx3YKx9b9L82lmOeE1A/5V6n+/dl8MMQBWBa9onk+LvJyIWSipytqI+L/ 57Mzn4tm8YYXEm2+r2j8kvZ21jGwjxp2Xgm1ixIEWmFEUYREslRjpAyj87kVC1Xy liyCfubjVdoSo1PgDV6kBU5mSpL5vt2ZYWglbTOwKT7YtQK0tSPnHoVxyCTKrf5P Ca59Uf+KTahMEVx7TMUGYXHDbHBeH6p8Y/Ano7aEyL5fXRbGv3TglbE9o3hHZxpn nfc2xbcXxKG+D97JJH7lx9/Y7a620LaCuw+jL/gfuGt13qmA9H1gF15c8VQVxGW5 J1qiJvYwu/bxsLGzn27RK2AFSL+WzA== =pgdO -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Sep 13 10:22:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 04 Jun 2020 11:24:07 +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