From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44450) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ihs2N-0006BR-G8 for guix-patches@gnu.org; Thu, 19 Dec 2019 04:24:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ihs2M-0003ml-0p for guix-patches@gnu.org; Thu, 19 Dec 2019 04:24:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:38306) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ihs2L-0003lT-RG for guix-patches@gnu.org; Thu, 19 Dec 2019 04:24:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ihs2L-0007ij-NV for guix-patches@gnu.org; Thu, 19 Dec 2019 04:24:01 -0500 Subject: [bug#38538] [PATCH] gnu: Add gnome-shell-extension-hide-app-icon Resent-Message-ID: Date: Thu, 19 Dec 2019 11:22:54 +0200 From: Efraim Flashner Message-ID: <20191219092254.GF917@E5400> References: <20191208201249.5479-1-leo.prikler@student.tugraz.at> <20191219092004.GE917@E5400> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="3xoW37o/FfUZJwQG" Content-Disposition: inline In-Reply-To: <20191219092004.GE917@E5400> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Leo Prikler Cc: 38538@debbugs.gnu.org --3xoW37o/FfUZJwQG Content-Type: multipart/mixed; boundary="3oCie2+XPXTnK5a5" Content-Disposition: inline --3oCie2+XPXTnK5a5 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 19, 2019 at 11:20:04AM +0200, Efraim Flashner wrote: > What does this need glib and glib:bin for? Is it just for building the > schemas or does it actually need it at runtime? >=20 I also made some changes to the package --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --3oCie2+XPXTnK5a5 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-gnome-shell-extension-hide-app-icon.patch" Content-Transfer-Encoding: quoted-printable =46rom f5d6a59409d6d119e40f5fda998287e4f7ca5a34 Mon Sep 17 00:00:00 2001 =46rom: Leo Prikler Date: Sun, 8 Dec 2019 21:12:50 +0100 Subject: [PATCH] gnu: Add gnome-shell-extension-hide-app-icon. * gnu/packages/gnome-xyz.scm (gnome-shell-extension-hide-app-icon): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/gnome-xyz.scm | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 00ad701ad8..5aa2d292bf 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -151,6 +151,52 @@ faster window switching.") (home-page "https://micheleg.github.io/dash-to-dock/") (license license:gpl2+))) =20 +(define-public gnome-shell-extension-hide-app-icon + (let ((commit "4188aa5f4ba24901a053a0c3eb0d83baa8625eab") + (revision "0")) + (package + (name "gnome-shell-extension-hide-app-icon") + (version (git-version "2.7" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/michael-rapp/gnome-shell-extensi= on-hide-app-icon.git") + (commit commit))) + (sha256 + (base32 + "1i28n4bz6wrhn07vpxkr6l1ljyn7g8frp5xrr11z3z32h2hxxcd6")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; no test target + #:make-flags (list (string-append "EXTENSIONS_DIR=3D" + (assoc-ref %outputs "out") + "/share/gnome-shell/extensions"= )) + #:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure script + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (copy-recursively "hide-app-icon@mrapp.sourceforge.com/" + (string-append out "/share/gnome-shell/= extensions")) + #t)))))) + (native-inputs + `(("intltool" ,intltool))) + (propagated-inputs + `(("glib" ,glib) + ("glib" ,glib "bin"))) + (synopsis "Hide app icon from GNOME's panel") + (description "This extension allows to hide the icon and/or title of= the +currently focused application in the top panel of the GNOME shell.") + (home-page "https://github.com/michael-rapp/gnome-shell-extension-hi= de-app-icon/") + (license + ;; README.md and LICENSE.txt disagree -- the former claims v3, the + ;; latter v2. No mention of "or later" in either place or in the c= ode. + (list license:gpl2 + license:gpl3))))) + (define-public gnome-shell-extension-noannoyance (package (name "gnome-shell-extension-noannoyance") --=20 2.24.1 --3oCie2+XPXTnK5a5-- --3xoW37o/FfUZJwQG Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl37QW4ACgkQQarn3Mo9 g1HkqA/7Bbb5A3wT7il2SLK+v16BB/vzY/4CGELWnG6ZvhS4Rt4eosMaUvv4U7I4 jrkB4wgKnZNo3ACvWX0b/j96OkZhX7d28KjxTUA/HDxtIMYBJyzs2lf5ENg2qN/E 93lsVuVBOugFKoLo9KLrBsaeI4Eit04Npm+m6BlM/W4xUI8RILlp5IXy2C49+PG0 HlJO6Qvc9foOYlwenHDu86LYPrrPP6tEH/6iN0e2RlzJ00NZZNwaEb2LsGXwH2ae +TfMk4ujWnbYo66EJLYMfz5gC7d7bYQteXhVcAaMD121eYh28w8fBOrORh6mk+DT onuCD3FgFYuhsQHrw06q+CVJS0e81Sl2eMWny3wf4Y0WWX0l51hwXtrOg5WtjSfM Udpl9di5ktG/3ESHxQABPIgYroGir51OyiBVskGrfcQj89cliNKJ9ZcrMowQclCG yeX+c3v9AkeieRdm5EW1wb7J35tcEGvv8VsUo2rWzA4z4+f3w4I/lYTFk96XLbLO jFCSwMvz3rbLsOcGFLtpalBqYQIrNezoCXDw8oFd4RlvTd3adZIy0dSs1Bz6wz8m PVJA8LI3dFLRmKrRWo0J0aF4h97l4PkEiABN28GjncBNYIbPp1HrLVJrcEuDGZM/ Q4GNDbG7ANk0xG0cGnZPkIQfAtcDYWb6W8QE+HsXlF61UFiDaGs= =oSPs -----END PGP SIGNATURE----- --3xoW37o/FfUZJwQG--