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 B84A81580B2 for ; Wed, 1 Sep 2021 20:28:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C92EE0863; Wed, 1 Sep 2021 20:28:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A9A91E0863 for ; Wed, 1 Sep 2021 20:28:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B2800335D0D for ; Wed, 1 Sep 2021 20:28:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1FBE9C for ; Wed, 1 Sep 2021 20:28:03 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1630528077.d539af30ee13fc8a2fcb3acb30cfef93657973df.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-workbench/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mysql-workbench/files/mysql-workbench-8.0.24-gcc11-fix.patch X-VCS-Directories: dev-db/mysql-workbench/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: d539af30ee13fc8a2fcb3acb30cfef93657973df X-VCS-Branch: master Date: Wed, 1 Sep 2021 20:28:03 +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: c6882f1e-d0eb-48c6-a127-ed3eada22244 X-Archives-Hash: ab66181bd422ec2de60ed7ed3b8bc2b8 commit: d539af30ee13fc8a2fcb3acb30cfef93657973df Author: Conrad Kostecki gentoo org> AuthorDate: Wed Sep 1 20:26:26 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Sep 1 20:27:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d539af30 dev-db/mysql-workbench: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/22178 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/mysql-workbench-8.0.24-gcc11-fix.patch | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/dev-db/mysql-workbench/files/mysql-workbench-8.0.24-gcc11-fix.patch b/dev-db/mysql-workbench/files/mysql-workbench-8.0.24-gcc11-fix.patch deleted file mode 100644 index 1ad5b1dafae..00000000000 --- a/dev-db/mysql-workbench/files/mysql-workbench-8.0.24-gcc11-fix.patch +++ /dev/null @@ -1,55 +0,0 @@ -https://bugs.gentoo.org/788199 - -'volatile gsize' is not accepted by with gcc11 / clang12 - -"While location has a volatile qualifier, this is a historical - artifact and the pointer passed to it should not be volatile" -https://developer.gnome.org/glib/stable/glib-Threads.html#g-once-init-enter - -For Scintilla GTK, see also: -https://sourceforge.net/p/scintilla/code/ci/790bfd4c0747eb5e0bc4d627a101298207a8421e/ - -Also adds missing includes. - -Signed-off-by: Ionen Wolkens ---- a/ext/scintilla/gtk/ScintillaGTKAccessible.cxx -+++ b/ext/scintilla/gtk/ScintillaGTKAccessible.cxx -@@ -1011,5 +1011,5 @@ - // @p parent_type is only required on GTK 3.2 to 3.6, and only on the first call - static GType scintilla_object_accessible_get_type(GType parent_type G_GNUC_UNUSED) { -- static volatile gsize type_id_result = 0; -+ static gsize type_id_result = 0; - - if (g_once_init_enter(&type_id_result)) { -@@ -1102,5 +1102,5 @@ - *cache = scintilla_object_accessible_new(0, G_OBJECT(widget)); - #elif HAVE_GTK_FACTORY // register in the factory and let GTK instantiate -- static volatile gsize registered = 0; -+ static gsize registered = 0; - - if (g_once_init_enter(®istered)) { ---- a/library/forms/gtk/src/mforms_acc.cpp -+++ b/library/forms/gtk/src/mforms_acc.cpp -@@ -177,5 +177,5 @@ - // @p parent_type is only required on GTK 3.2 to 3.6, and only on the first call - GType mforms_object_accessible_get_type(GType parent_type G_GNUC_UNUSED) { -- static volatile gsize typeIdResult = 0; -+ static gsize typeIdResult = 0; - - if (g_once_init_enter(&typeIdResult)) { ---- a/library/ssh/SSHCommon.h -+++ b/library/ssh/SSHCommon.h -@@ -42,4 +42,5 @@ - #include - #include -+#include - #include - ---- a/library/ssh/SSHTunnelHandler.h -+++ b/library/ssh/SSHTunnelHandler.h -@@ -31,4 +31,5 @@ - #include - #include -+#include - #include - #include