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: Wed, 11 Mar 2020 15:59:41
Message-Id: 1583942372.5c0a51e667d44f14acba2bad64485362666f1d9f.pacho@gentoo
1 commit: 5c0a51e667d44f14acba2bad64485362666f1d9f
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 15:57:58 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 15:59:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0a51e6
7
8 gnome-extra/gnome-shell-extension-applications-overview-tooltip: Bump to v7
9
10 Package-Manager: Portage-2.3.93, Repoman-2.3.20
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...xtension-applications-overview-tooltip-7.ebuild | 42 ++++++++++++++++++++++
15 2 files changed, 43 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 95d5d72bb08..671dd5d682f 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-6.tar.gz 79354 BLAKE2B f9e6aee73c742a080ad82434c3741087a2db1d9ad91ed377d380267edaadc4754a7e2621f228ebcac7c3eed1fcdd83960bbc949f38b07e38dfffeac4452f3a9e SHA512 1c12434944e8803dfd6e5e95fd932386345c4632214059070c56d1640a7c13a88240f225fdf6efe2fd1deb0c8d0a07009e01dedd4f56f029303fbd5e33faa116
23 +DIST gnome-shell-extension-applications-overview-tooltip-7.tar.gz 79965 BLAKE2B f7698bdad46837f1ae736bbb2d9b376a28946df5f8a00d2e9b19d48bc4c2f4e742030f952d14bf5816ca1aae9b172a2639e2170d6bd87f373ff23c7ce9bd8912 SHA512 1cfaf23fefe5a940ae448658e176c69da9bb319f6200983b4ac14f65e76f5e449b9a235e6c1ccaf9b6d6db0fda9576e963fa1273b776dbfb5a72c608961e2d48
24
25 diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-7.ebuild b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-7.ebuild
26 new file mode 100644
27 index 00000000000..8d4ffa58395
28 --- /dev/null
29 +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-7.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +# Workaround until https://bugzilla.gnome.org/show_bug.cgi?id=663725 is fixed
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 +# glib for glib-compile-schemas at build time, needed at runtime anyways
48 +COMMON_DEPEND="
49 + dev-libs/glib:2
50 +"
51 +RDEPEND="${COMMON_DEPEND}
52 + app-eselect/eselect-gnome-shell-extensions
53 + >=gnome-base/gnome-shell-3.20
54 +"
55 +DEPEND="${COMMON_DEPEND}"
56 +BDEPEND=""
57 +
58 +S="${WORKDIR}/${P/gnome-shell-extension-}"
59 +
60 +src_install() {
61 + einstalldocs
62 + rm -f README.md || die
63 + insinto /usr/share/gnome-shell/extensions/applications-overview-tooltip@RaphaelRochet
64 + doins -r *
65 + glib-compile-schemas "${ED}"/usr/share/gnome-shell/extensions/applications-overview-tooltip@RaphaelRochet/schemas || die
66 +}
67 +
68 +pkg_postinst() {
69 + ebegin "Updating list of installed extensions"
70 + eselect gnome-shell-extensions update
71 + eend $?
72 +}