summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2020-04-25 15:54:45 +0300
committerMart Raudsepp <leio@gentoo.org>2020-04-25 23:17:06 +0300
commitd76d3b7e3f8f8a8e180b7c2b352fa2e909c83e05 (patch)
treeacad2625384deebdfea51bba524bab953a55d520 /gnome-extra/gnome-shell-extensions-topicons-plus
parentapp-crypt/libsecret: remove old (diff)
downloadgentoo-d76d3b7e3f8f8a8e180b7c2b352fa2e909c83e05.tar.gz
gentoo-d76d3b7e3f8f8a8e180b7c2b352fa2e909c83e05.tar.bz2
gentoo-d76d3b7e3f8f8a8e180b7c2b352fa2e909c83e05.zip
gnome-extra/gnome-shell-extensions-topicons-plus: remove old
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-shell-extensions-topicons-plus')
-rw-r--r--gnome-extra/gnome-shell-extensions-topicons-plus/Manifest1
-rw-r--r--gnome-extra/gnome-shell-extensions-topicons-plus/files/gnome-shell-extensions-topicons-plus-22-exit-stacktrace.patch62
-rw-r--r--gnome-extra/gnome-shell-extensions-topicons-plus/gnome-shell-extensions-topicons-plus-22-r1.ebuild49
3 files changed, 0 insertions, 112 deletions
diff --git a/gnome-extra/gnome-shell-extensions-topicons-plus/Manifest b/gnome-extra/gnome-shell-extensions-topicons-plus/Manifest
index 7875895145f4..195f9204a7fe 100644
--- a/gnome-extra/gnome-shell-extensions-topicons-plus/Manifest
+++ b/gnome-extra/gnome-shell-extensions-topicons-plus/Manifest
@@ -1,2 +1 @@
-DIST gnome-shell-extensions-topicons-plus-22.tar.gz 2757811 BLAKE2B 8bfe719d4a0e4d58db9b21d354e841ea69b88d82c69ba6aa4ebc8db65acde9330553487d0a0d3b623d5a6a2a18ff67e6ad4e45133c6e7b8a77e07bd90c589e63 SHA512 f0589bd8ed6697d616772ab374e9aa80779512d38c50f82c375820c02c06ef26a50b2a8c78c4e5fab5dc8588ed5fdcf0b7e73e7868af0855545528e741aa280d
DIST gnome-shell-extensions-topicons-plus-22_p20190929.tar.gz 2759460 BLAKE2B 2eb001f472395ade58503a860d3ea8248bb8aeb36b4d6f13f65e1074694aecc02f814d18d449206e1055984177896ac787fd925b4cf2680f226ffaace042cc5d SHA512 47cb156f7a61780a53311855d716c4e4f539832080fc011db634b472b5a8aa0e9fad5b6f44bf2da30665cd97b850725822ee9fb9ed9da014388cf4adeee60fbe
diff --git a/gnome-extra/gnome-shell-extensions-topicons-plus/files/gnome-shell-extensions-topicons-plus-22-exit-stacktrace.patch b/gnome-extra/gnome-shell-extensions-topicons-plus/files/gnome-shell-extensions-topicons-plus-22-exit-stacktrace.patch
deleted file mode 100644
index 17082b4ac4fd..000000000000
--- a/gnome-extra/gnome-shell-extensions-topicons-plus/files/gnome-shell-extensions-topicons-plus-22-exit-stacktrace.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From e883e62a36c342bdf2e31af9d328b10f4ce61112 Mon Sep 17 00:00:00 2001
-From: Martin Wilck <mwilck@suse.com>
-Date: Tue, 19 Mar 2019 09:39:36 +0100
-Subject: [PATCH] Fix shell stack trace when removing icon
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This fixes stacktraces like this when an application with a tray icon exits:
-
-Mar 19 09:09:53 apollon.suse.de gnome-shell[6868]: Object Shell.TrayIcon (0x5588a424ef80), has been already deallocated — impossible to access it. This might be caused by the object having been destroyed from C code using something such as destroy(), dispose(), or remove() vfuncs.
-Mar 19 09:09:53 apollon.suse.de gnome-shell[6868]: clutter_actor_destroy: assertion 'CLUTTER_IS_ACTOR (self)' failed
-Mar 19 09:09:53 apollon.suse.de org.gnome.Shell.desktop[6868]: == Stack trace for context 0x5588a17911b0 ==
-Mar 19 09:09:53 apollon.suse.de org.gnome.Shell.desktop[6868]: #0 5588a2b96d60 i /home/mwilck/.local/share/gnome-shell/extensions/TopIcons@phocean.net/extension.js:127 (7feca5a061f0 @ 92)
----
- extension.js | 22 +++++++++++++++++++++-
- 1 file changed, 21 insertions(+), 1 deletion(-)
-
-diff --git a/extension.js b/extension.js
-index 113b8ef..58a0433 100644
---- a/extension.js
-+++ b/extension.js
-@@ -31,6 +31,7 @@ const PanelMenu = imports.ui.panelMenu;
- const ExtensionUtils = imports.misc.extensionUtils;
- const Me = ExtensionUtils.getCurrentExtension();
- const Convenience = Me.imports.convenience;
-+const Config = imports.misc.config;
-
- let settings = null;
- let tray = null;
-@@ -118,7 +119,8 @@ function onTrayIconRemoved(o, icon) {
- let parent = icon.get_parent();
- if (parent)
- parent.destroy();
-- icon.destroy();
-+ if (!parent || !versionAtLeast('3.30', Config.PACKAGE_VERSION))
-+ icon.destroy();
- icons.splice(icons.indexOf(icon), 1);
-
- if (icons.length === 0)
-@@ -389,3 +391,21 @@ function setSpacing() {
- iconsBoxLayout.set_style('spacing: ' + boxLayoutSpacing + 'px; margin_top: 2px; margin_bottom: 2px;');
-
- }
-+
-+// Code copied from PanelOSD extension (GPL 2.0)
-+function versionAtLeast(atleast, current) {
-+ let currentArray = current.split('.');
-+ let major = currentArray[0];
-+ let minor = currentArray[1];
-+ let point = currentArray[2];
-+ let atleastArray = atleast.split('.');
-+ if ((atleastArray[0] < major) ||
-+ (atleastArray[0] == major &&
-+ atleastArray[1] < minor) ||
-+ (atleastArray[0] == major &&
-+ atleastArray[1] == minor) &&
-+ (atleastArray[2] == undefined ||
-+ atleastArray[2] <= point))
-+ return true;
-+ return false;
-+}
diff --git a/gnome-extra/gnome-shell-extensions-topicons-plus/gnome-shell-extensions-topicons-plus-22-r1.ebuild b/gnome-extra/gnome-shell-extensions-topicons-plus/gnome-shell-extensions-topicons-plus-22-r1.ebuild
deleted file mode 100644
index 2dde512ebc50..000000000000
--- a/gnome-extra/gnome-shell-extensions-topicons-plus/gnome-shell-extensions-topicons-plus-22-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit vcs-snapshot
-
-DESCRIPTION="Moves legacy tray icons to top panel"
-HOMEPAGE="https://extensions.gnome.org/extension/1031/topicons/"
-SRC_URI="https://github.com/phocean/TopIcons-plus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# glib for glib-compile-schemas at build time, needed at runtime anyways
-COMMON_DEPEND="
- dev-libs/glib:2
-"
-RDEPEND="${COMMON_DEPEND}
- app-eselect/eselect-gnome-shell-extensions
- >=gnome-base/gnome-shell-3.16
-"
-DEPEND="${COMMON_DEPEND}"
-
-PATCHES=(
- # https://github.com/phocean/TopIcons-plus/commit/e883e62a36c342bdf2e31af9d328b10f4ce61112
- "${FILESDIR}"/${P}-exit-stacktrace.patch
-)
-
-#src_compile() {
- # It redoes this with "make install" later due to a dumb Makefile, so don't bother
- #make build
-#}
-
-src_install() {
- # TODO: Figure out if we can get the schemas to standard location, in a way that works properly runtime too
- make install INSTALL_PATH="${ED}usr/share/gnome-shell/extensions/"
- rm "${ED}/usr/share/gnome-shell/extensions/TopIcons@phocean.net/README.md" || die
- # Assuming it needs only compiled gettext catalogs at runtime
- rm "${ED}/usr/share/gnome-shell/extensions/TopIcons@phocean.net/locale"/*/LC_MESSAGES/*.po || die
- dodoc README.md
-}
-
-pkg_postinst() {
- ebegin "Updating list of installed extensions"
- eselect gnome-shell-extensions update
- eend $?
-}