gnome-extra/gnome-shell-extension-appindicator: add 64

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-03-22 10:58:35 +01:00
parent c0c405748b
commit f5c8ba4560
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST gnome-shell-extension-appindicator-61.tar.gz 74744 BLAKE2B b739688c2f96ea4f8f43d599007e0be23289f1ca45d891e41d10862e7490ca1279991bac2a4552467b49ac4cf7de74b8f95cc6bbbf046c2dd374f8d9af5df7b4 SHA512 4a759fa886a4e76ae6089a36c4fd53a4240ed982354c968c3e41f51dccc9ccb79e0b97e5fa35a60a3cf7e7b9cfc49dd4ddcf9e06dc266c14a8a5d9327abaacfd
DIST gnome-shell-extension-appindicator-63.tar.gz 75504 BLAKE2B 2398702026e3d3f8d694a07823ddd67778b3a90a97d2998e191eac322107f515902eb38538e7f409c989ba7ebec152028c6fc8fc9b8f81336ea35be0f848623e SHA512 1ed1a35bdd1e1f56747a520d4eda8cd45cc060428140ed904c3a18b1e905db077c091b27961f45cfd9595b40845f12afb86fa3de35cf91f2f3e63827ca33a0f5
DIST gnome-shell-extension-appindicator-64.tar.gz 76929 BLAKE2B c9b23415a1e021462849376201e6bcc934ad01bf99f2e97aafa379f65b361f7916345e6aa60f7582c663e20c4d1d84e067f6bec3d14debf193025e4735e1ac50 SHA512 a70d6128b23bb8d9d5a20ace81c87419b2d0787c5998cea788b5a5b281fbf1d9715692e8815feeed69d98b338071f361661dc1034ba7934ee5b52db39338db81

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2-utils meson
DESCRIPTION="Support legacy, AppIndicators and KStatusNotifierItems in Gnome"
HOMEPAGE="https://github.com/ubuntu/gnome-shell-extension-appindicator"
SRC_URI="https://github.com/ubuntu/gnome-shell-extension-appindicator/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
RDEPEND="
app-eselect/eselect-gnome-shell-extensions
>=gnome-base/gnome-shell-45
"
BDEPEND="
app-misc/jq
"
src_install() {
meson_src_install
rm -v "${ED}"/usr/share/glib-2.0/schemas/gschemas.compiled || die
}
pkg_preinst() {
gnome2_schemas_savelist
}
pkg_postinst() {
gnome2_schemas_update
ebegin "Updating list of installed extensions"
eselect gnome-shell-extensions update
eend $?
}
pkg_postrm() {
gnome2_schemas_update
}