From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B95191382C5 for ; Mon, 10 May 2021 00:53:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F41D4E077D; Mon, 10 May 2021 00:53:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF26BE077D for ; Mon, 10 May 2021 00:53:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22111335D08 for ; Mon, 10 May 2021 00:53:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72C405C9 for ; Mon, 10 May 2021 00:52:59 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1620607970.35e3514030b905e16a44074ea4aee6a8e7fef30c.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extensions/files/, gnome-extra/gnome-shell-extensions/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0-r1.ebuild gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0.ebuild X-VCS-Directories: gnome-extra/gnome-shell-extensions/files/ gnome-extra/gnome-shell-extensions/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 35e3514030b905e16a44074ea4aee6a8e7fef30c X-VCS-Branch: master Date: Mon, 10 May 2021 00:52:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 276e719f-8d89-4f33-b439-bbafc7a16616 X-Archives-Hash: 4490be166dfe865f25e9799ac7bcc824 commit: 35e3514030b905e16a44074ea4aee6a8e7fef30c Author: Matt Turner gentoo org> AuthorDate: Mon May 10 00:52:12 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon May 10 00:52:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e35140 gnome-extra/gnome-shell-extensions: Add patch to fix compatibility Signed-off-by: Matt Turner gentoo.org> ...owsNavigator-Adjust-to-gnome-shell-change.patch | 43 ++++++++++++++++++++++ ...build => gnome-shell-extensions-40.0-r1.ebuild} | 4 ++ 2 files changed, 47 insertions(+) diff --git a/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch b/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch new file mode 100644 index 00000000000..9e335b781aa --- /dev/null +++ b/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch @@ -0,0 +1,43 @@ +From e094dead91389c4a5f602e5bef2747ad5e73e8bd Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Florian=20M=C3=BCllner?= +Date: Thu, 8 Apr 2021 16:38:40 +0200 +Subject: [PATCH] windowsNavigator: Adjust to gnome-shell change + +Parts of WindowPreview were moved to C for performance reasons, which +turned a formerly private JS property into a GObject property. + +https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/302 + +Part-of: +--- + extensions/windowsNavigator/extension.js | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/extensions/windowsNavigator/extension.js b/extensions/windowsNavigator/extension.js +index 0ea9645..bb72d7b 100644 +--- a/extensions/windowsNavigator/extension.js ++++ b/extensions/windowsNavigator/extension.js +@@ -84,17 +84,17 @@ class MyWorkspace extends Workspace.Workspace { + }); + + this._text.add_constraint(new Clutter.BindConstraint({ +- source: this._windowContainer, ++ source: this.windowContainer, + coordinate: Clutter.BindCoordinate.POSITION, + })); + this._text.add_constraint(new Clutter.AlignConstraint({ +- source: this._windowContainer, ++ source: this.windowContainer, + align_axis: Clutter.AlignAxis.X_AXIS, + pivot_point: new Graphene.Point({ x: 0.5, y: -1 }), + factor: this._closeButtonSide === St.Side.LEFT ? 1 : 0, + })); + this._text.add_constraint(new Clutter.AlignConstraint({ +- source: this._windowContainer, ++ source: this.windowContainer, + align_axis: Clutter.AlignAxis.Y_AXIS, + pivot_point: new Graphene.Point({ x: -1, y: 0.5 }), + factor: 0, +-- +2.26.3 + diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0-r1.ebuild similarity index 95% rename from gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0.ebuild rename to gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0-r1.ebuild index 3c33ad2de50..1d9b5892655 100644 --- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0.ebuild +++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.0-r1.ebuild @@ -35,6 +35,10 @@ BDEPEND=" virtual/pkgconfig " +PATCHES=( + "${FILESDIR}"/${PV}-windowsNavigator-Adjust-to-gnome-shell-change.patch +) + DISABLE_AUTOFORMATTING="yes" DOC_CONTENTS="Installed extensions installed are initially disabled by default. To change the system default and enable some extensions, you can use