gnome-extra/gnome-shell-extension-alphabetical-grid: drop 41.0

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2025-06-10 21:10:42 +02:00
parent 9ace08b85d
commit b43ee151f0
2 changed files with 0 additions and 59 deletions

View File

@@ -1,2 +1 @@
DIST gnome-shell-extension-alphabetical-grid-41.0.tar.gz 217552 BLAKE2B e3f2c06a7b64d339f6d143d3e64bd27bae24cb7bd9d94511048e14b156c277a86e5af386e4177c34660e9aca50657e80ca8a90641af00a8a4338e915297d044f SHA512 d1edb66c7ce50714a87753f7ae367ebade5329cdea2f51a329b6129a9739aa702bc4a8610c8a398f07a93bdf08574ec495478d324e66dfba222a5275fbb70090
DIST gnome-shell-extension-alphabetical-grid-42.0.tar.gz 217938 BLAKE2B 4ff9e57f150ecf10b82a95c1b198c02b94f9d0469fdb3f870e37b179bc4372b48ede3aec8c87b91184e21dcb418139a5fd225b8665ec4e97cbcb133764a17936 SHA512 126e483d87c602496940d69936267619d769f1f1e8f8942360945d959015f7a9a2366204bd9c8cfe1742e2ecd1412ac150b8351120e2707f32526eb4e7fe6f64

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2-utils
# Useful specially to prevent
# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684
# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180
DESCRIPTION="Restore the alphabetical ordering of the app grid"
HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension"
SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/alphabetical-grid-extension-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
app-eselect/eselect-gnome-shell-extensions
>=gnome-base/gnome-shell-45
gui-libs/libadwaita
"
DEPEND="${COMMON_DEPEND}"
extension_uuid="AlphabeticalAppGrid@stuarthayhurst"
# Tests are only useful for upstream
RESTRICT="test"
# Not useful for us
src_compile() { :; }
src_install() {
einstalldocs
mv docs/icon.svg extension || die
cd extension || die
insinto /usr/share/glib-2.0/schemas
doins schemas/*.xml
rm -rf 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
}