Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-applications-overview-tooltip/
Date: Sat, 06 Nov 2021 09:13:15
Message-Id: 1636189821.7335a9d8ffa00474f60845f59bbbb4469437c0ee.pacho@gentoo
1 commit: 7335a9d8ffa00474f60845f59bbbb4469437c0ee
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 08:55:47 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 09:10:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7335a9d8
7
8 gnome-extra/gnome-shell-extension-applications-overview-tooltip: Bump to v14
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...tension-applications-overview-tooltip-14.ebuild | 49 ++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest
18 index 3820b32185f..ff29f207970 100644
19 --- a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest
20 +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-shell-extension-applications-overview-tooltip-12.tar.gz 27394 BLAKE2B 169460c7063fda0f664688303984c4a5c7fcd8a6b32281c2eb630ebea8143b95e96038f130b09c939371474b5ef27656cf77eec942412fcf3908a5d9fb8ae202 SHA512 4c993256d1f6d7d3a2c72c88f6f88facf7ff8237d489950484f54a68f09741e526f0e0a7c2862251fc2579fd3cdd496c9136bb222374abfacbace1615e263239
23 +DIST gnome-shell-extension-applications-overview-tooltip-14.tar.gz 27058 BLAKE2B 442e1b144358c40c6132ab2a067bb29439e826ccd540583a6e95d35841bca3eda53ac9b6004285c8ab63006d9e71dbdb46f0fb77310366cf976381bb70b50223 SHA512 6e5805f720e262181e4519ec8a19cf57dae41e3dcff3da4a4a1bc4a132bcc23aae575cc15aa0a0f5f04fe1a25a9ff3e03d5bcacb326c7bbc8d0b28351e0ecbfe
24
25 diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-14.ebuild b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-14.ebuild
26 new file mode 100644
27 index 00000000000..e2390562055
28 --- /dev/null
29 +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-14.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit gnome2-utils
36 +
37 +DESCRIPTION="Show tooltip with full name and description"
38 +HOMEPAGE="https://github.com/RaphaelRochet/applications-overview-tooltip"
39 +SRC_URI="https://github.com/RaphaelRochet/applications-overview-tooltip/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +# https://github.com/RaphaelRochet/applications-overview-tooltip/issues/7
42 +LICENSE="public-domain"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + app-eselect/eselect-gnome-shell-extensions
49 + >=gnome-base/gnome-shell-40
50 +"
51 +DEPEND=""
52 +BDEPEND=""
53 +
54 +S="${WORKDIR}/${P/gnome-shell-extension-}"
55 +extension_uuid="applications-overview-tooltip@RaphaelRochet"
56 +
57 +src_install() {
58 + einstalldocs
59 + insinto /usr/share/glib-2.0/schemas
60 + doins schemas/*.xml
61 + rm -rf README.md schemas || die
62 + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
63 + doins -r *
64 +}
65 +
66 +pkg_preinst() {
67 + gnome2_schemas_savelist
68 +}
69 +
70 +pkg_postinst() {
71 + gnome2_schemas_update
72 + ebegin "Updating list of installed extensions"
73 + eselect gnome-shell-extensions update
74 + eend $?
75 +}
76 +
77 +pkg_postrm() {
78 + gnome2_schemas_update
79 +}