summaryrefslogtreecommitdiff
path: root/app-i18n/fcitx
diff options
context:
space:
mode:
Diffstat (limited to 'app-i18n/fcitx')
-rw-r--r--app-i18n/fcitx/Manifest3
-rw-r--r--app-i18n/fcitx/files/fcitx-4.2.9.8-enchant.patch32
-rw-r--r--app-i18n/fcitx/files/fcitx-4.2.9.8-xkb.patch32
-rw-r--r--app-i18n/fcitx/files/fcitx-5.1.10-include-cstdint-for-gcc-15.patch12
4 files changed, 0 insertions, 79 deletions
diff --git a/app-i18n/fcitx/Manifest b/app-i18n/fcitx/Manifest
index b9c222cd081c..a20305cc7318 100644
--- a/app-i18n/fcitx/Manifest
+++ b/app-i18n/fcitx/Manifest
@@ -1,6 +1,3 @@
-AUX fcitx-4.2.9.8-enchant.patch 857 BLAKE2B 2de4fa00bf532b3b95af0ca0fe4b2fc61af4e6883d5b272682346751e66b83c5a6c9ce3323a6540c10474873afc4df0c279ec4dd1f1c57090a0e0f551abc46de SHA512 908501484c535ba88e4b4179752edb4b456e2294031fe4476d6b5ca972edd3568d992822622a293433690dd15fdac6e834fa979ea1cb6a1f8f7754eb0fbf5f01
-AUX fcitx-4.2.9.8-xkb.patch 796 BLAKE2B 8325574736faebd7938d8fdb19bb149586a8c83ba2342f454d3c665a22e6de642ac36cbf90a4e23a87fd2a9759fd51a42e96930fb429b98fde82cebb6dfa23e8 SHA512 321b73519c442e0595866a692a30e9cfb0464817d79162a7075b00711a73bc4c33fde5ec760bd48ca53ec842d62f98e8d8e8fed2474523d15ca4477dccfa8a2b
-AUX fcitx-5.1.10-include-cstdint-for-gcc-15.patch 293 BLAKE2B dc9e83510fec08eddb094efd0552938e575ae397b47bc89240e67ccf1d3e4c433f009314b806e847221b3c2aa634e548868d0028ab832f2944eecd6972f0c0cd SHA512 4f7fdc907aa5d1ed4427e4c67b5a2ee79bebbf96120fd64f5f83a3e3505a9e11ad086aeff2311f4ac58d66aae21054560d648c3cb541f76dd75e18a90d857c2b
DIST fcitx-5.1.10.tar.zst 8309913 BLAKE2B a63f5c747dd1d7a519873f00f234ae43d1ab5458e57b809f01e2b6cefc3e3921ecd7fff27cf4b21d59842f11e8d397760d90cf6572b42f65d226b21acc18fefc SHA512 196bc26f7dd50596da90e6b4b0a8b4886b57ec928c182427fb8763507f1f4cb39a252bfddcbd6eccaa0cc920070b7b9fda03f18fd444f84154ddd925678ad7d4
DIST fcitx-5.1.11.tar.zst 8310353 BLAKE2B b38daa03c40b19454cf8b82dc6c9d799730fb614bb606d86f0dfbadb6dd88f3a382f4c2b2a8f820bf4b01e27e27be82ed2624fb3f0a70843af5f72924e62e58b SHA512 d2fee4b931175d67ed29058af5dc644c6918829ca336e88566781ffaf5ccbe942281e9a41459b5ad8ad37756bed24b999127f8b17d8925bb923a9eb10d1081fb
EBUILD fcitx-5.1.10.ebuild 2502 BLAKE2B 6f5025a3ff53e11f2416de3759cf00b31dc56bc8f11a7cc06b113047903ded8c6d5eaab98d3bb226872d98e98e388e97fb786853464466496ff00dea2e51aea6 SHA512 f662d1548a7dcd9c7231aaff555ede5b61f661fc95b125e4508e95496f50fe86dd0c282b1af7e91763d93c7b293738959ce5c990710e16505fef3b8dde0352a7
diff --git a/app-i18n/fcitx/files/fcitx-4.2.9.8-enchant.patch b/app-i18n/fcitx/files/fcitx-4.2.9.8-enchant.patch
deleted file mode 100644
index 25b4fc1d12ac..000000000000
--- a/app-i18n/fcitx/files/fcitx-4.2.9.8-enchant.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://github.com/fcitx/fcitx/issues/475
-
---- a/cmake/FindEnchant.cmake
-+++ b/cmake/FindEnchant.cmake
-@@ -16,15 +16,15 @@
- endif(ENCHANT_INCLUDE_DIR AND ENCHANT_LIBRARIES)
-
- find_package(PkgConfig)
--pkg_check_modules(PC_ENCHANT enchant)
-+pkg_check_modules(PC_ENCHANT enchant-2 enchant)
-
- find_path(ENCHANT_INCLUDE_DIR
- NAMES enchant.h
- HINTS ${PC_ENCHANT_INCLUDE_DIRS}
-- PATH_SUFFIXES "enchant")
-+ PATH_SUFFIXES enchant-2 enchant)
-
- find_library(ENCHANT_LIBRARIES
-- NAMES enchant
-+ NAMES enchant-2 enchant
- HINTS ${PC_ENCHANT_LIBRARY_DIRS})
-
- if(ENCHANT_INCLUDE_DIR AND ENCHANT_LIBRARIES)
-@@ -39,7 +39,7 @@
- #include <stdlib.h>
- #include <stddef.h>
- #include <string.h>
-- #include <enchant/enchant.h>
-+ #include <enchant.h>
-
- EnchantBroker *enchant_broker_init();
- char **enchant_dict_suggest(EnchantDict *dict, const char *str,
diff --git a/app-i18n/fcitx/files/fcitx-4.2.9.8-xkb.patch b/app-i18n/fcitx/files/fcitx-4.2.9.8-xkb.patch
deleted file mode 100644
index dbb82afa7443..000000000000
--- a/app-i18n/fcitx/files/fcitx-4.2.9.8-xkb.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://github.com/fcitx/fcitx/issues/250
-
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -96,12 +96,15 @@
- endif()
- endif()
- if (ENABLE_XKB)
-- # Parse xkb xml file
-- find_package(LibXml2 REQUIRED)
- find_package(IsoCodes REQUIRED)
-- find_package(XkbFile REQUIRED)
- # Parse isocodes json
- pkg_check_modules(JsonC "json-c" IMPORTED_TARGET REQUIRED)
-+ if(ENABLE_X11)
-+ # Parse xkb xml file
-+ find_package(LibXml2 REQUIRED)
-+ find_package(XkbFile REQUIRED)
-+ find_package(XKeyboardConfig REQUIRED)
-+ endif(ENABLE_X11)
- endif (ENABLE_XKB)
- if(ENABLE_PRESAGE)
- find_package(Presage)
-@@ -121,8 +124,6 @@
- message(FATAL_ERROR "Xkb is needed")
- endif (NOT X11_Xkb_FOUND)
-
--find_package(XKeyboardConfig REQUIRED)
--
- endif()
-
- if (ENABLE_TEST)
diff --git a/app-i18n/fcitx/files/fcitx-5.1.10-include-cstdint-for-gcc-15.patch b/app-i18n/fcitx/files/fcitx-5.1.10-include-cstdint-for-gcc-15.patch
deleted file mode 100644
index 4dcf19d363de..000000000000
--- a/app-i18n/fcitx/files/fcitx-5.1.10-include-cstdint-for-gcc-15.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-https://github.com/fcitx/fcitx5/pull/1119
-
---- a/src/lib/fcitx-utils/inputbuffer.h
-+++ b/src/lib/fcitx-utils/inputbuffer.h
-@@ -7,6 +7,7 @@
- #ifndef _FCITX_UTILS_INPUTBUFFER_H_
- #define _FCITX_UTILS_INPUTBUFFER_H_
-
-+#include <cstdint>
- #include <cstring>
- #include <memory>
- #include <string>