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: Fri, 11 Jun 2021 18:34:44
Message-Id: 1623436472.2994c3b7e53278c02514bbb1e6d0c934189a0425.pacho@gentoo
1 commit: 2994c3b7e53278c02514bbb1e6d0c934189a0425
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 11 18:21:20 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 11 18:34:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2994c3b7
7
8 gnome-extra/gnome-shell-extension-appindicator: Bump to v40
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../gnome-shell-extension-appindicator/Manifest | 1 +
14 .../gnome-shell-extension-appindicator-40.ebuild | 51 ++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/gnome-extra/gnome-shell-extension-appindicator/Manifest b/gnome-extra/gnome-shell-extension-appindicator/Manifest
18 index 3ac5c640bfc..d479940a68b 100644
19 --- a/gnome-extra/gnome-shell-extension-appindicator/Manifest
20 +++ b/gnome-extra/gnome-shell-extension-appindicator/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gnome-shell-extension-appindicator-34.tar.gz 34764 BLAKE2B 3a619f810d9ddf7984fc3b0c96735eb0f9233f36ff3cbddc5b28a8243f55d57cbc9c58b49516e99b30f35b12b6e747b7fa288fdc36f99cf7e61b7ad8cc2e84de SHA512 1f02a7cc3cfb90af8ee1a0bb39135fb3203bcc87d13cda0cf7f110db4b838a7c082eba30246a913306ef0e4b2fdb7c9f52f24f62525013ff8f1de9d054d45425
23 DIST gnome-shell-extension-appindicator-37.tar.gz 39830 BLAKE2B 6e8af3acf6c9a4478fd663aa5814fae5a59e5ed01a759d7aa37d056794c3ea6c595203b622087f02170d9f05e6fa1c47138da9962ae33d9f398a7659a645be57 SHA512 2aeb93ca015936577f314e0313dd963d3712edf27a5e9721813b6d72b5050de9427d7aa3a296ced40352a421251ecae7022fb58c1da02947bc0a6205e2d41d1b
24 +DIST gnome-shell-extension-appindicator-40.tar.gz 48681 BLAKE2B cec52930bcb163a6761662deb3bd52202abadfc90fdd12877c711e4f4cf5038b9e7f3822259ced5ba39a632d2a1e0a83ffc4dc563ba184742dd1de2941acfe73 SHA512 72b3ecf0eadde40fd3567b19d7c7064953847ec86298691097f9fe14cada37206f8edd898c1d2a8fe71aeb0ace4921d1797d2dcc9eeacc0cb04a25841125b2ef
25
26 diff --git a/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-40.ebuild b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-40.ebuild
27 new file mode 100644
28 index 00000000000..12e3b6cddea
29 --- /dev/null
30 +++ b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-40.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit gnome2-utils
37 +
38 +DESCRIPTION="Support Ubuntu 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 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + app-eselect/eselect-gnome-shell-extensions
49 + dev-libs/libappindicator:3
50 + >=gnome-base/gnome-shell-3.34
51 +"
52 +DEPEND=""
53 +BDEPEND=""
54 +
55 +extension_uuid="appindicatorsupport@××××××××××××××.com"
56 +
57 +src_install() {
58 + einstalldocs
59 + dodoc AUTHORS.md
60 +
61 + insinto /usr/share/glib-2.0/schemas
62 + doins schemas/*.xml
63 +
64 + rm -rf schemas/ AUTHORS.md LICENSE Makefile README.md || die
65 + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
66 + doins -r *
67 +}
68 +
69 +pkg_preinst() {
70 + gnome2_schemas_savelist
71 +}
72 +
73 +pkg_postinst() {
74 + gnome2_schemas_update
75 + ebegin "Updating list of installed extensions"
76 + eselect gnome-shell-extensions update
77 + eend $?
78 +}
79 +
80 +pkg_postrm() {
81 + gnome2_schemas_update
82 +}