summaryrefslogtreecommitdiff
path: root/inputmethod
diff options
context:
space:
mode:
authormef <mef@pkgsrc.org>2021-03-01 11:13:20 +0000
committermef <mef@pkgsrc.org>2021-03-01 11:13:20 +0000
commita11073d690acf32a49b10429b24ddf76da3d619a (patch)
treeed7ef9287ba331f3b6a8e1179a7490c4142c37d1 /inputmethod
parent957993d977cdc8375ff676e0a03b0a76f5a92fee (diff)
downloadpkgsrc-a11073d690acf32a49b10429b24ddf76da3d619a.tar.gz
(inputmethod/fcitx5) Fix build, with work around patches for gcc7 bug
It is explained as gcc-7 bug, and we need patch until it is fixed, I'm afraid See: https://github.com/fcitx/fcitx5/issues/174 https://build.opensuse.org/package/show/M17N/fcitx5
Diffstat (limited to 'inputmethod')
-rw-r--r--inputmethod/fcitx5/distinfo4
-rw-r--r--inputmethod/fcitx5/patches/patch-src_frontend_ibusfrontend_ibusfrontend.cpp30
-rw-r--r--inputmethod/fcitx5/patches/patch-test_testdbus.cpp18
3 files changed, 51 insertions, 1 deletions
diff --git a/inputmethod/fcitx5/distinfo b/inputmethod/fcitx5/distinfo
index ac828fafc94..64b4187a08d 100644
--- a/inputmethod/fcitx5/distinfo
+++ b/inputmethod/fcitx5/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2021/02/27 19:30:57 ryoon Exp $
+$NetBSD: distinfo,v 1.3 2021/03/01 11:13:20 mef Exp $
SHA1 (en_dict-20121020.tar.gz) = 3d6b85cbede261b3703b916e6a1a3303f6cba9a6
RMD160 (en_dict-20121020.tar.gz) = ae6a1fcf214b9ba1b9d300edeec4d61ad62caf18
@@ -8,5 +8,7 @@ SHA1 (fcitx5-5.0.5.tar.xz) = 9b1657de47063da210b9eaf50213313552eb51ce
RMD160 (fcitx5-5.0.5.tar.xz) = 2418279e2e76cdc98310cf00b3af1d9ec48f914a
SHA512 (fcitx5-5.0.5.tar.xz) = 3bc1a51119c9ee0c62a7112b520f88bdc6afe10b6a7d61c97d4b7b69556716a15815b9523eb9aa566918217ad299285116a60a60978cd8297225e6f4b856785a
Size (fcitx5-5.0.5.tar.xz) = 1294560 bytes
+SHA1 (patch-src_frontend_ibusfrontend_ibusfrontend.cpp) = 06d009f2d3977f5f72ca727a41e6aeb15aa257a2
SHA1 (patch-src_lib_fcitx-utils_misc.cpp) = 3f7b13bea6fba8d59935465b3ede3732b1571c26
SHA1 (patch-src_modules_spell_dict_CMakeLists.txt) = 3bbb67be4209af3d0cc50687c1f1be2ab8757c66
+SHA1 (patch-test_testdbus.cpp) = e20ca569ec6e79a7565471ebccd5fa54de645462
diff --git a/inputmethod/fcitx5/patches/patch-src_frontend_ibusfrontend_ibusfrontend.cpp b/inputmethod/fcitx5/patches/patch-src_frontend_ibusfrontend_ibusfrontend.cpp
new file mode 100644
index 00000000000..340271e8434
--- /dev/null
+++ b/inputmethod/fcitx5/patches/patch-src_frontend_ibusfrontend_ibusfrontend.cpp
@@ -0,0 +1,30 @@
+$NetBSD: patch-src_frontend_ibusfrontend_ibusfrontend.cpp,v 1.1 2021/03/01 11:13:20 mef Exp $
+
+https://build.opensuse.org/package/view_file/M17N/fcitx5/fcitx5-gcc7.patch?expand=1
+
+--- src/frontend/ibusfrontend/ibusfrontend.cpp.orig 2021-01-28 23:35:42.465005200 +0900
++++ src/frontend/ibusfrontend/ibusfrontend.cpp 2021-03-01 19:17:18.090095671 +0900
+@@ -577,14 +577,23 @@ private:
+ ([]() -> dbus::DBusStruct<uint32_t, uint32_t> {
+ return {0, 0};
+ }),
++#if __GNUC__ < 8
++ ([&](dbus::DBusStruct<uint32_t, uint32_t> type) {
++#else
+ ([this](dbus::DBusStruct<uint32_t, uint32_t> type) {
++#endif
+ setContentType(std::get<0>(type), std::get<1>(type));
+ }),
+ dbus::PropertyOption::Hidden);
+ FCITX_OBJECT_VTABLE_WRITABLE_PROPERTY(
+ clientCommitPreedit, "ClientCommitPreedit", "(b)",
++#if __GNUC__ < 8
++ ([&]() -> dbus::DBusStruct<bool> { return {clientCommitPreedit_}; }),
++ ([&](dbus::DBusStruct<bool> value) {
++#else
+ ([this]() -> dbus::DBusStruct<bool> { return {clientCommitPreedit_}; }),
+ ([this](dbus::DBusStruct<bool> value) {
++#endif
+ clientCommitPreedit_ = std::get<0>(value);
+ }),
+ dbus::PropertyOption::Hidden);
diff --git a/inputmethod/fcitx5/patches/patch-test_testdbus.cpp b/inputmethod/fcitx5/patches/patch-test_testdbus.cpp
new file mode 100644
index 00000000000..008f95e5430
--- /dev/null
+++ b/inputmethod/fcitx5/patches/patch-test_testdbus.cpp
@@ -0,0 +1,18 @@
+$NetBSD: patch-test_testdbus.cpp,v 1.1 2021/03/01 11:13:20 mef Exp $
+
+https://build.opensuse.org/package/view_file/M17N/fcitx5/fcitx5-gcc7.patch?expand=1
+
+--- fcitx5-5.0.3.orig/test/testdbus.cpp
++++ test/testdbus.cpp
+@@ -67,7 +67,11 @@ private:
+ []() { return 5; });
+ FCITX_OBJECT_VTABLE_WRITABLE_PROPERTY(
+ testProperty2, "testProperty2", "i", [this]() { return prop2; },
++#if __GNUC__ < 8
++ [&](int32_t v) { prop2 = v; });
++#else
+ [this](int32_t v) { prop2 = v; });
++#endif
+ };
+
+ #define TEST_SERVICE "org.fcitx.Fcitx.TestDBus"