diff options
author | Pacho Ramos <pacho@gentoo.org> | 2022-01-29 18:54:58 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2022-01-29 18:55:14 +0100 |
commit | f041b713245cd0036d80cd95d58fe0c720518703 (patch) | |
tree | 63d64cf7e1ffd9e720d41236a169e2b4b7cb155a /gnome-extra/gnome-shell-extension-alphabetical-grid | |
parent | gnome-extra/gnome-shell-extension-alphabetical-grid: Tests not suitable (diff) | |
download | gentoo-f041b713245cd0036d80cd95d58fe0c720518703.tar.gz gentoo-f041b713245cd0036d80cd95d58fe0c720518703.tar.bz2 gentoo-f041b713245cd0036d80cd95d58fe0c720518703.zip |
gnome-extra/gnome-shell-extension-alphabetical-grid: Drop old
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-shell-extension-alphabetical-grid')
-rw-r--r-- | gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-17.0.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest index 96d0ec71cfca..e0770c338afa 100644 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest +++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest @@ -1,2 +1 @@ -DIST gnome-shell-extension-alphabetical-grid-17.0.tar.gz 288368 BLAKE2B 7e22e06538d8804afb8301c40e02bcd1d56f6c756d69bb09d61649bceb6e1819e6cdf1ceb2f1d4e88ee22e92c3a6b465fd925fdde840b9c6124583cc7389a344 SHA512 46d5b7e269d0a454f04fde729fd6d5a66a270a3b2337159fc746d12304c7988846c1fb5c609c9122c3fca25c6110a714766b2f900c7fa1306251750781eff3e5 DIST gnome-shell-extension-alphabetical-grid-18.0.tar.gz 289276 BLAKE2B 8556fab62659a188c58cc98a642b81a11681ac463590b4beef537f7963b968de371af323f63ca8e989d439837443411db946561e2ab4f993c38d179890575e87 SHA512 7a68e0bbda7c1a071805f0481185941552896ee477920b4e328cf5cafea4d93b4faf474ae6bc9cde4e0d78f4e83af697fe5f9ed1a675d6de5834a97a40b5c5b6 diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-17.0.ebuild b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-17.0.ebuild deleted file mode 100644 index 429429ac7ad3..000000000000 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-17.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 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" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - app-eselect/eselect-gnome-shell-extensions - >=gnome-base/gnome-shell-3.38 -" -DEPEND="${COMMON_DEPEND}" -BDEPEND="" - -S="${WORKDIR}/alphabetical-grid-extension-${PV}" -extension_uuid="AlphabeticalAppGrid@stuarthayhurst" - -# Not useful for us -src_compile() { :; } - -src_install() { - einstalldocs - insinto /usr/share/glib-2.0/schemas - doins schemas/*.xml - rm -rf README.md LICENSE.txt Makefile schemas || die - mv -v ui/* . || die # Searches for these files in parent dir - 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 -} |