gnome-extra/gnome-shell-extension-applications-overview-tooltip: drop 22

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2025-08-15 21:05:46 +02:00
parent 9e2bb7600b
commit ef1f6bdca9
2 changed files with 0 additions and 46 deletions

View File

@@ -1,2 +1 @@
DIST gnome-shell-extension-applications-overview-tooltip-22.tar.gz 26097 BLAKE2B 2a61c6cbd3f7eb63c922874bdeb3d083747c63141b5bbd0773684900985d8868ad61061f3631e1967d22c09df33f67290fc81d4e731b4f3683155debfd40d064 SHA512 a8ec2e837c0b4cdf697f2d0b117034fedb16c5f8775a81ff3932ffd9e1a15f6de912ffaed56317600314d88a079375d046ffbe441682e01546f8dd6064b6745e
DIST gnome-shell-extension-applications-overview-tooltip-23.tar.gz 29446 BLAKE2B 2f832cb9db19f89e34552a3608c59d96bfa3d103893e6899340cbf580bdee1a2028d1d643a9482d63285f123de73beb95903f74f827ac4885d29bf296dee08e9 SHA512 6f27ac27c1bdb982116491649652f9e6609746f0af9e382fb9a84a3f0b62ff4c030934fb940016afe465a9e6c84c608318473e7a4226a1ddcec9a0b95c183cdc

View File

@@ -1,45 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2-utils
DESCRIPTION="Show tooltip with full name and description"
HOMEPAGE="https://github.com/RaphaelRochet/applications-overview-tooltip"
SRC_URI="https://github.com/RaphaelRochet/applications-overview-tooltip/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P/gnome-shell-extension-}"
extension_uuid="applications-overview-tooltip@RaphaelRochet"
# https://github.com/RaphaelRochet/applications-overview-tooltip/issues/7
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
app-eselect/eselect-gnome-shell-extensions
>=gnome-base/gnome-shell-46
"
src_install() {
einstalldocs
insinto /usr/share/glib-2.0/schemas
doins schemas/*.xml
rm -rf README.md schemas || die
insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
doins -r *
}
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
}