Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-workbench/files/
Date: Wed, 01 Sep 2021 20:28:08
Message-Id: 1630528077.d539af30ee13fc8a2fcb3acb30cfef93657973df.conikost@gentoo
1 commit: d539af30ee13fc8a2fcb3acb30cfef93657973df
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 1 20:26:26 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 1 20:27:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d539af30
7
8 dev-db/mysql-workbench: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/22178
11 Package-Manager: Portage-3.0.22, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 .../files/mysql-workbench-8.0.24-gcc11-fix.patch | 55 ----------------------
16 1 file changed, 55 deletions(-)
17
18 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
19 deleted file mode 100644
20 index 1ad5b1dafae..00000000000
21 --- a/dev-db/mysql-workbench/files/mysql-workbench-8.0.24-gcc11-fix.patch
22 +++ /dev/null
23 @@ -1,55 +0,0 @@
24 -https://bugs.gentoo.org/788199
25 -
26 -'volatile gsize' is not accepted by with gcc11 / clang12
27 -
28 -"While location has a volatile qualifier, this is a historical
29 - artifact and the pointer passed to it should not be volatile"
30 -https://developer.gnome.org/glib/stable/glib-Threads.html#g-once-init-enter
31 -
32 -For Scintilla GTK, see also:
33 -https://sourceforge.net/p/scintilla/code/ci/790bfd4c0747eb5e0bc4d627a101298207a8421e/
34 -
35 -Also adds missing <memory> includes.
36 -
37 -Signed-off-by: Ionen Wolkens <sudinave@×××××.com>
38 ---- a/ext/scintilla/gtk/ScintillaGTKAccessible.cxx
39 -+++ b/ext/scintilla/gtk/ScintillaGTKAccessible.cxx
40 -@@ -1011,5 +1011,5 @@
41 - // @p parent_type is only required on GTK 3.2 to 3.6, and only on the first call
42 - static GType scintilla_object_accessible_get_type(GType parent_type G_GNUC_UNUSED) {
43 -- static volatile gsize type_id_result = 0;
44 -+ static gsize type_id_result = 0;
45 -
46 - if (g_once_init_enter(&type_id_result)) {
47 -@@ -1102,5 +1102,5 @@
48 - *cache = scintilla_object_accessible_new(0, G_OBJECT(widget));
49 - #elif HAVE_GTK_FACTORY // register in the factory and let GTK instantiate
50 -- static volatile gsize registered = 0;
51 -+ static gsize registered = 0;
52 -
53 - if (g_once_init_enter(&registered)) {
54 ---- a/library/forms/gtk/src/mforms_acc.cpp
55 -+++ b/library/forms/gtk/src/mforms_acc.cpp
56 -@@ -177,5 +177,5 @@
57 - // @p parent_type is only required on GTK 3.2 to 3.6, and only on the first call
58 - GType mforms_object_accessible_get_type(GType parent_type G_GNUC_UNUSED) {
59 -- static volatile gsize typeIdResult = 0;
60 -+ static gsize typeIdResult = 0;
61 -
62 - if (g_once_init_enter(&typeIdResult)) {
63 ---- a/library/ssh/SSHCommon.h
64 -+++ b/library/ssh/SSHCommon.h
65 -@@ -42,4 +42,5 @@
66 - #include <thread>
67 - #include <atomic>
68 -+#include <memory>
69 - #include <mutex>
70 -
71 ---- a/library/ssh/SSHTunnelHandler.h
72 -+++ b/library/ssh/SSHTunnelHandler.h
73 -@@ -31,4 +31,5 @@
74 - #include <thread>
75 - #include <map>
76 -+#include <memory>
77 - #include <mutex>
78 - #include <vector>