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-appindicator/
Date: Tue, 28 Feb 2023 12:31:03
Message-Id: 1677587451.9d149b897c9a14c331c9e8966e3652b84d88af30.pacho@gentoo
1 commit: 9d149b897c9a14c331c9e8966e3652b84d88af30
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 12:30:37 2023 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 12:30:51 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d149b89
7
8 gnome-extra/gnome-shell-extension-appindicator: add 48
9
10 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
11
12 .../gnome-shell-extension-appindicator/Manifest | 1 +
13 .../gnome-shell-extension-appindicator-48.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/gnome-extra/gnome-shell-extension-appindicator/Manifest b/gnome-extra/gnome-shell-extension-appindicator/Manifest
17 index 7efdcd6dc0a4..c933e369a8d8 100644
18 --- a/gnome-extra/gnome-shell-extension-appindicator/Manifest
19 +++ b/gnome-extra/gnome-shell-extension-appindicator/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gnome-shell-extension-appindicator-46.tar.gz 60986 BLAKE2B 3d058aed56c9ba3c931fe50ca2b5cf48f89b32765afbc5adf6c8004f6c68eee874988801a6358ce574a0d3e7f563c81899632e217b8a00a5e1b4ce62e1f31387 SHA512 0616503a9e5a471bbe64b2f2d9fb853ba1d67e902d9b72b464647f70e8e6392ab9135955c87c99e83d96941cb29505f03cab5ad257ffc5a80e77221d4fcd9730
22 DIST gnome-shell-extension-appindicator-47.tar.gz 63339 BLAKE2B c5efc80cdaa1b092ad242ae6535042ad695933383d69769501882b70563e9fa1fa58c44262a1e157f8a501b276fe7b2da91c0636bdaf0a35b836959aa89903b9 SHA512 939c0340586141f0f8d6f7722d9d084bef35d598f19c8ac2fbdba3c8174b91a823248ddd56d6361b16ed8404b53633899206d7434d4e9479544589b22e269933
23 +DIST gnome-shell-extension-appindicator-48.tar.gz 64682 BLAKE2B daaf9ece32e121352602ccee8e99f901246a2ddf4186a96372fa1f15f422f95e6a1328d40e800daaea069aff955f33de8482c05bc073026313ea33926a3b9e26 SHA512 04010d8bfcbb97b54dfa2e529ae1f3f38ecb8a70383b06dc39a0360767505742bc402cc49c9383d52a063c372820e1f02de15ed000715ff7fe6978bf01e1b0d9
24
25 diff --git a/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-48.ebuild b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-48.ebuild
26 new file mode 100644
27 index 000000000000..6d843831ebf9
28 --- /dev/null
29 +++ b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-48.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit gnome2-utils meson
37 +
38 +DESCRIPTION="Support legacy, AppIndicators and KStatusNotifierItems in Gnome"
39 +HOMEPAGE="https://github.com/ubuntu/gnome-shell-extension-appindicator"
40 +SRC_URI="https://github.com/ubuntu/gnome-shell-extension-appindicator/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
45 +
46 +RDEPEND="
47 + app-eselect/eselect-gnome-shell-extensions
48 + >=gnome-base/gnome-shell-3.34
49 +"
50 +BDEPEND="
51 + app-misc/jq
52 +"
53 +
54 +src_install() {
55 + meson_src_install
56 + rm "${ED}"/usr/share/glib-2.0/schemas/gschemas.compiled || die
57 +}
58 +
59 +pkg_preinst() {
60 + gnome2_schemas_savelist
61 +}
62 +
63 +pkg_postinst() {
64 + gnome2_schemas_update
65 + ebegin "Updating list of installed extensions"
66 + eselect gnome-shell-extensions update
67 + eend $?
68 +}
69 +
70 +pkg_postrm() {
71 + gnome2_schemas_update
72 +}