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: Tue, 01 Dec 2020 22:15:33
Message-Id: 1606860920.2f55937292a2c280f70588444919369f0a368a74.pacho@gentoo
1 commit: 2f55937292a2c280f70588444919369f0a368a74
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 22:06:42 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 22:15:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f559372
7
8 gnome-extra/gnome-shell-extension-applications-overview-tooltip: Bump to v10
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...tension-applications-overview-tooltip-10.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 0e98ec0e03a..917076706c5 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,2 +1,3 @@
22 +DIST gnome-shell-extension-applications-overview-tooltip-10.tar.gz 81397 BLAKE2B a9c838eb66ae49a3a195d8ce6e17fd971fb0dec00f62a2a7380fc973c9ba129611a93b904c658318e0bc80fb26ff9d65100cccd29f7f172dbef0f406bacefd14 SHA512 28bcc52b38d36e0897c949ba0eef11a94fce2e022ca3d398208221476b63b39281db9870d0c26a4bdffc07bb82e9d8942fd98820c78c6a4afe6d52eb5758e1c1
23 DIST gnome-shell-extension-applications-overview-tooltip-7.tar.gz 79965 BLAKE2B f7698bdad46837f1ae736bbb2d9b376a28946df5f8a00d2e9b19d48bc4c2f4e742030f952d14bf5816ca1aae9b172a2639e2170d6bd87f373ff23c7ce9bd8912 SHA512 1cfaf23fefe5a940ae448658e176c69da9bb319f6200983b4ac14f65e76f5e449b9a235e6c1ccaf9b6d6db0fda9576e963fa1273b776dbfb5a72c608961e2d48
24 DIST gnome-shell-extension-applications-overview-tooltip-9.tar.gz 81415 BLAKE2B 518352e80b5a3c6f8a2ff05e692178436625ea533e10a2afde82e73b6216f82dc29119c0e0a204ac8f1619de9409c47105107b94e3c4d1027c852b255eeb27ab SHA512 b8a2879f303a76e68eb5921005453e3fb73d966f1ed3f5978d9d210f447d8f780b5d9fa359aaa411f7ed8cecf72171dfcaa8da8515fd620193676b1b63742636
25
26 diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-10.ebuild b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-10.ebuild
27 new file mode 100644
28 index 00000000000..2f000f6faee
29 --- /dev/null
30 +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-10.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit gnome2-utils
37 +
38 +# Workaround until https://bugzilla.gnome.org/show_bug.cgi?id=663725 is fixed
39 +DESCRIPTION="Show tooltip with full name and description"
40 +HOMEPAGE="https://github.com/RaphaelRochet/applications-overview-tooltip"
41 +SRC_URI="https://github.com/RaphaelRochet/applications-overview-tooltip/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +# https://github.com/RaphaelRochet/applications-overview-tooltip/issues/7
44 +LICENSE="public-domain"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + app-eselect/eselect-gnome-shell-extensions
51 + >=gnome-base/gnome-shell-3.38
52 +"
53 +DEPEND=""
54 +BDEPEND=""
55 +
56 +S="${WORKDIR}/${P/gnome-shell-extension-}"
57 +
58 +src_install() {
59 + einstalldocs
60 + insinto /usr/share/glib-2.0/schemas
61 + doins schemas/*.xml
62 + rm -rf README.md schemas || die
63 + insinto /usr/share/gnome-shell/extensions/applications-overview-tooltip@RaphaelRochet
64 + doins -r *
65 +}
66 +
67 +pkg_preinst() {
68 + gnome2_schemas_savelist
69 +}
70 +
71 +pkg_postinst() {
72 + gnome2_schemas_update
73 + ebegin "Updating list of installed extensions"
74 + eselect gnome-shell-extensions update
75 + eend $?
76 +}
77 +
78 +pkg_postrm() {
79 + gnome2_schemas_update
80 +}