* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2023-12-25 11:51 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2023-12-25 11:51 UTC (permalink / raw
To: gentoo-commits
commit: 3e2b4494511c68f48ca9319680e8bce05c374b42
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Wed Dec 6 05:56:10 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Dec 25 11:50:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e2b4494
app-i18n/fcitx-chinese-addons: new package, add 5.1.2
fcitx-chinese-addons are Chinese related addons for fcitx5.
It provides pinyin and table input method support.
Bug: https://bugs.gentoo.org/760501
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.2.ebuild | 57 ++++++++++++++++++++++
app-i18n/fcitx-chinese-addons/metadata.xml | 26 ++++++++++
3 files changed, 84 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
new file mode 100644
index 000000000000..e044fd5b8310
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -0,0 +1 @@
+DIST fcitx5-chinese-addons-5.1.2_dict.tar.xz 883388 BLAKE2B 7db9fcd8b9fddce9db5b0cf23e5300d7a246183184c32d8292a92617f5b66bebd81a5876cb197508676266c39fbeae5a17fd659feadab0a41be1df948c9663fe SHA512 8a94b974b461dc0a20ee7c243d482295359be27a7cc2152755aebdde3330a62f579506666e231d15cd081e58794359f1791b674f8d9f873babf7c68f4dea81a1
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
new file mode 100644
index 000000000000..64a5b3a5b44e
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
+
+LICENSE="GPL-2+ LGPL-2+"
+KEYWORDS="~amd64 ~x86"
+SLOT="5"
+IUSE="+gui webengine +cloudpinyin +qt5 lua +opencc test"
+REQUIRED_USE="
+ gui? ( qt5 )
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.5:5
+ >=app-i18n/libime-1.1.3:5
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ )
+ cmake_src_configure
+}
diff --git a/app-i18n/fcitx-chinese-addons/metadata.xml b/app-i18n/fcitx-chinese-addons/metadata.xml
new file mode 100644
index 000000000000..c73b7e1cf220
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>tanekliang@gmail.com</email>
+ <name>Yongxiang Liang</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>cjk@gentoo.org</email>
+ <name>Cjk</name>
+ </maintainer>
+ <use>
+ <flag name="cloudpinyin">Build cloud pinyin addon</flag>
+ <flag name="gui">Enable GUI support (qt5 or qt6)</flag>
+ <flag name="opencc">Enable support for conversion between Traditional and Simplified Chinese</flag>
+ <flag name="qt5">Enable configure qt5</flag>
+ <flag name="webengine">Enable built-in browser using <pkg>dev-qt/qtwebengine</pkg></flag>
+ </use>
+<upstream>
+<remote-id type="github">fcitx/fcitx5-chinese-addons</remote-id>
+</upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-01-02 3:56 WANG Xuerui
0 siblings, 0 replies; 17+ messages in thread
From: WANG Xuerui @ 2024-01-02 3:56 UTC (permalink / raw
To: gentoo-commits
commit: fb250a5c822b9ba9eccfb355f8184126aa9d4bb6
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 2 02:58:48 2024 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Tue Jan 2 03:55:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb250a5c
app-i18n/fcitx-chinese-addons: keyword 5.1.2 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
index 64a5b3a5b44e..055aa4938932 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~loong ~x86"
SLOT="5"
IUSE="+gui webengine +cloudpinyin +qt5 lua +opencc test"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-01-11 0:22 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-01-11 0:22 UTC (permalink / raw
To: gentoo-commits
commit: b7d08415ff9f17f80c159d44de2618b77437d415
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Fri Jan 5 04:49:05 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 00:20:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7d08415
app-i18n/fcitx-chinese-addons: drop 5.1.2
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 -
.../fcitx-chinese-addons-5.1.2.ebuild | 57 ----------------------
2 files changed, 58 deletions(-)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index 6f9c005661a6..8305fe5c1146 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,2 +1 @@
-DIST fcitx5-chinese-addons-5.1.2_dict.tar.xz 883388 BLAKE2B 7db9fcd8b9fddce9db5b0cf23e5300d7a246183184c32d8292a92617f5b66bebd81a5876cb197508676266c39fbeae5a17fd659feadab0a41be1df948c9663fe SHA512 8a94b974b461dc0a20ee7c243d482295359be27a7cc2152755aebdde3330a62f579506666e231d15cd081e58794359f1791b674f8d9f873babf7c68f4dea81a1
DIST fcitx5-chinese-addons-5.1.3_dict.tar.xz 884664 BLAKE2B 6e9f931c146798bbbd76e7a55d62d50de2c8173d0dddcb48ea78259dac62fe41cb4be4421c6d6d81a5b094a3ebe258b1d20b42e2891451da55723e3978c1379a SHA512 4ea52ec45af70b552d8d4af3ed077662d6d839d3984bc41858b4710fe5b1dc169c63e223770f5400718c1c18aa745e77305f242409fa1cc523cee8475eb2e9ff
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
deleted file mode 100644
index 055aa4938932..000000000000
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="fcitx5-chinese-addons"
-
-inherit cmake xdg
-
-DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
-HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
-SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~loong ~x86"
-SLOT="5"
-IUSE="+gui webengine +cloudpinyin +qt5 lua +opencc test"
-REQUIRED_USE="
- gui? ( qt5 )
- webengine? ( gui )
-"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=app-i18n/fcitx-5.1.5:5
- >=app-i18n/libime-1.1.3:5
- >=dev-libs/boost-1.61:=
- cloudpinyin? ( net-misc/curl )
- lua? ( app-i18n/fcitx-lua:5 )
- opencc? ( app-i18n/opencc:= )
- gui? (
- qt5? (
- dev-qt/qtconcurrent:5
- app-i18n/fcitx-qt:5[qt5,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:5[widgets] )
- )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- kde-frameworks/extra-cmake-modules:0
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_BROWSER=$(usex webengine)
- -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
- -DENABLE_GUI=$(usex gui)
- -DENABLE_OPENCC=$(usex opencc)
- -DENABLE_TEST=$(usex test)
- -DUSE_WEBKIT=no
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-01-11 0:22 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-01-11 0:22 UTC (permalink / raw
To: gentoo-commits
commit: 4783a3a084ee311f3325e7c1e57ed99bf6d765cf
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Tue Jan 9 16:40:01 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 00:20:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4783a3a0
app-i18n/fcitx-chinese-addons: add 5.1.3, add new use flags
data: use data from fcitx5
qt6: add QT6 support
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.3.ebuild | 63 ++++++++++++++++++++++
app-i18n/fcitx-chinese-addons/metadata.xml | 1 +
3 files changed, 65 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index e044fd5b8310..6f9c005661a6 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1 +1,2 @@
DIST fcitx5-chinese-addons-5.1.2_dict.tar.xz 883388 BLAKE2B 7db9fcd8b9fddce9db5b0cf23e5300d7a246183184c32d8292a92617f5b66bebd81a5876cb197508676266c39fbeae5a17fd659feadab0a41be1df948c9663fe SHA512 8a94b974b461dc0a20ee7c243d482295359be27a7cc2152755aebdde3330a62f579506666e231d15cd081e58794359f1791b674f8d9f873babf7c68f4dea81a1
+DIST fcitx5-chinese-addons-5.1.3_dict.tar.xz 884664 BLAKE2B 6e9f931c146798bbbd76e7a55d62d50de2c8173d0dddcb48ea78259dac62fe41cb4be4421c6d6d81a5b094a3ebe258b1d20b42e2891451da55723e3978c1379a SHA512 4ea52ec45af70b552d8d4af3ed077662d6d839d3984bc41858b4710fe5b1dc169c63e223770f5400718c1c18aa745e77305f242409fa1cc523cee8475eb2e9ff
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
new file mode 100644
index 000000000000..67b8c1a3d265
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
+
+LICENSE="GPL-2+ LGPL-2+"
+KEYWORDS="~amd64 ~loong ~x86"
+SLOT="5"
+IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
+REQUIRED_USE="
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.6:5
+ >=app-i18n/libime-1.1.3:5[data?]
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ qt6? (
+ dev-qt/qtbase:6[concurrent]
+ app-i18n/fcitx-qt:5[qt6,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:6[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_DATA=$(usex data)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ -DUSE_QT6=$(usex qt6)
+ )
+ cmake_src_configure
+}
diff --git a/app-i18n/fcitx-chinese-addons/metadata.xml b/app-i18n/fcitx-chinese-addons/metadata.xml
index c73b7e1cf220..2b09f33c853c 100644
--- a/app-i18n/fcitx-chinese-addons/metadata.xml
+++ b/app-i18n/fcitx-chinese-addons/metadata.xml
@@ -15,6 +15,7 @@
</maintainer>
<use>
<flag name="cloudpinyin">Build cloud pinyin addon</flag>
+ <flag name="data">Build data</flag>
<flag name="gui">Enable GUI support (qt5 or qt6)</flag>
<flag name="opencc">Enable support for conversion between Traditional and Simplified Chinese</flag>
<flag name="qt5">Enable configure qt5</flag>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-01-16 17:50 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-01-16 17:50 UTC (permalink / raw
To: gentoo-commits
commit: 17e843e12ab1f30e476cfa9dd0514d922ffa2e35
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 16 17:49:21 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 16 17:49:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e843e1
app-i18n/fcitx-chinese-addons: Keyword 5.1.3 arm64, #922103
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
index 67b8c1a3d265..020989bae80a 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~loong ~x86"
+KEYWORDS="~amd64 ~arm64 ~loong ~x86"
SLOT="5"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-01-17 9:04 Jakov Smolić
0 siblings, 0 replies; 17+ messages in thread
From: Jakov Smolić @ 2024-01-17 9:04 UTC (permalink / raw
To: gentoo-commits
commit: a732e9ecce344830f3dee1f29f678bbc3ed31d18
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 17 09:03:53 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jan 17 09:03:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a732e9ec
app-i18n/fcitx-chinese-addons: Keyword 5.1.3 riscv, #922103
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
index 020989bae80a..009b5efe7416 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~arm64 ~loong ~x86"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
SLOT="5"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-03-08 9:12 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-03-08 9:12 UTC (permalink / raw
To: gentoo-commits
commit: 451afd917a514603284af73106f1b808f845e31c
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Fri Mar 1 13:32:42 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Mar 8 09:06:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=451afd91
app-i18n/fcitx-chinese-addons: add 5.1.4
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.4.ebuild | 63 ++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index 8305fe5c1146..b96ae14d6feb 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1 +1,2 @@
DIST fcitx5-chinese-addons-5.1.3_dict.tar.xz 884664 BLAKE2B 6e9f931c146798bbbd76e7a55d62d50de2c8173d0dddcb48ea78259dac62fe41cb4be4421c6d6d81a5b094a3ebe258b1d20b42e2891451da55723e3978c1379a SHA512 4ea52ec45af70b552d8d4af3ed077662d6d839d3984bc41858b4710fe5b1dc169c63e223770f5400718c1c18aa745e77305f242409fa1cc523cee8475eb2e9ff
+DIST fcitx5-chinese-addons-5.1.4_dict.tar.xz 885456 BLAKE2B 239b2092d9b4ca77d7c0373a85e7a0e5b03e223c477b8704e36657349cf3ba006791e77a064826cd452eb6e5e81d33831feceabb9a51a8d26275f70deb04658a SHA512 99f3cc101532879c126e2699d338528a25531b782a5c1f1e93cd363437567c1ba7b0173aca56f887089d4379e86aecf7977139b5b5c44d54e0bd9a416b01e976
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild
new file mode 100644
index 000000000000..009b5efe7416
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
+
+LICENSE="GPL-2+ LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+SLOT="5"
+IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
+REQUIRED_USE="
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.6:5
+ >=app-i18n/libime-1.1.3:5[data?]
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ qt6? (
+ dev-qt/qtbase:6[concurrent]
+ app-i18n/fcitx-qt:5[qt6,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:6[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_DATA=$(usex data)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ -DUSE_QT6=$(usex qt6)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-04-25 0:43 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-04-25 0:43 UTC (permalink / raw
To: gentoo-commits
commit: 7fbb71345963e59f39895ca189faa0912e5354c7
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Tue Apr 23 12:56:36 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 23:45:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fbb7134
app-i18n/fcitx-chinese-addons: add 5.1.5
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.5.ebuild | 62 ++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index b96ae14d6feb..e3eeb8a57179 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,2 +1,3 @@
DIST fcitx5-chinese-addons-5.1.3_dict.tar.xz 884664 BLAKE2B 6e9f931c146798bbbd76e7a55d62d50de2c8173d0dddcb48ea78259dac62fe41cb4be4421c6d6d81a5b094a3ebe258b1d20b42e2891451da55723e3978c1379a SHA512 4ea52ec45af70b552d8d4af3ed077662d6d839d3984bc41858b4710fe5b1dc169c63e223770f5400718c1c18aa745e77305f242409fa1cc523cee8475eb2e9ff
DIST fcitx5-chinese-addons-5.1.4_dict.tar.xz 885456 BLAKE2B 239b2092d9b4ca77d7c0373a85e7a0e5b03e223c477b8704e36657349cf3ba006791e77a064826cd452eb6e5e81d33831feceabb9a51a8d26275f70deb04658a SHA512 99f3cc101532879c126e2699d338528a25531b782a5c1f1e93cd363437567c1ba7b0173aca56f887089d4379e86aecf7977139b5b5c44d54e0bd9a416b01e976
+DIST fcitx5-chinese-addons-5.1.5_dict.tar.zst 1007840 BLAKE2B dc7cfe09789a6d7ed5d820ebdae133648748478746b3da7ec93a7e1bf31db34d212459dd64e1887bb7cb4ab15f2846fab1d97cf4a17082129c9f4a6cbf819e76 SHA512 50559f1f2ffa89eb24ce58a14c3ca21f3c1092961ce90b925fcf89a029d65c0aee3601d89003be5e92f9f1697e72d5eb2dade06863256a9a615f8be9ec2b2fe5
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild
new file mode 100644
index 000000000000..22638f079ea1
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake unpacker xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.zst"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
+REQUIRED_USE="
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.9:5
+ >=app-i18n/libime-1.1.7:5[data?]
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ qt6? (
+ dev-qt/qtbase:6[concurrent]
+ app-i18n/fcitx-qt:5[qt6,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:6[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_DATA=$(usex data)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ -DUSE_QT6=$(usex qt6)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-04-25 0:43 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-04-25 0:43 UTC (permalink / raw
To: gentoo-commits
commit: b1807dd4be83865bd035c677b7d6caf604955c1d
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Wed Apr 24 00:59:48 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 23:45:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1807dd4
app-i18n/fcitx-chinese-addons: drop 5.1.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 -
.../fcitx-chinese-addons-5.1.3.ebuild | 63 ----------------------
2 files changed, 64 deletions(-)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index e3eeb8a57179..69995159defa 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,3 +1,2 @@
-DIST fcitx5-chinese-addons-5.1.3_dict.tar.xz 884664 BLAKE2B 6e9f931c146798bbbd76e7a55d62d50de2c8173d0dddcb48ea78259dac62fe41cb4be4421c6d6d81a5b094a3ebe258b1d20b42e2891451da55723e3978c1379a SHA512 4ea52ec45af70b552d8d4af3ed077662d6d839d3984bc41858b4710fe5b1dc169c63e223770f5400718c1c18aa745e77305f242409fa1cc523cee8475eb2e9ff
DIST fcitx5-chinese-addons-5.1.4_dict.tar.xz 885456 BLAKE2B 239b2092d9b4ca77d7c0373a85e7a0e5b03e223c477b8704e36657349cf3ba006791e77a064826cd452eb6e5e81d33831feceabb9a51a8d26275f70deb04658a SHA512 99f3cc101532879c126e2699d338528a25531b782a5c1f1e93cd363437567c1ba7b0173aca56f887089d4379e86aecf7977139b5b5c44d54e0bd9a416b01e976
DIST fcitx5-chinese-addons-5.1.5_dict.tar.zst 1007840 BLAKE2B dc7cfe09789a6d7ed5d820ebdae133648748478746b3da7ec93a7e1bf31db34d212459dd64e1887bb7cb4ab15f2846fab1d97cf4a17082129c9f4a6cbf819e76 SHA512 50559f1f2ffa89eb24ce58a14c3ca21f3c1092961ce90b925fcf89a029d65c0aee3601d89003be5e92f9f1697e72d5eb2dade06863256a9a615f8be9ec2b2fe5
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
deleted file mode 100644
index 009b5efe7416..000000000000
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="fcitx5-chinese-addons"
-
-inherit cmake xdg
-
-DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
-HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
-SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
-SLOT="5"
-IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
-REQUIRED_USE="
- webengine? ( gui )
-"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=app-i18n/fcitx-5.1.6:5
- >=app-i18n/libime-1.1.3:5[data?]
- >=dev-libs/boost-1.61:=
- cloudpinyin? ( net-misc/curl )
- lua? ( app-i18n/fcitx-lua:5 )
- opencc? ( app-i18n/opencc:= )
- gui? (
- qt5? (
- dev-qt/qtconcurrent:5
- app-i18n/fcitx-qt:5[qt5,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:5[widgets] )
- )
- qt6? (
- dev-qt/qtbase:6[concurrent]
- app-i18n/fcitx-qt:5[qt6,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:6[widgets] )
- )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- kde-frameworks/extra-cmake-modules:0
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_BROWSER=$(usex webengine)
- -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
- -DENABLE_DATA=$(usex data)
- -DENABLE_GUI=$(usex gui)
- -DENABLE_OPENCC=$(usex opencc)
- -DENABLE_TEST=$(usex test)
- -DUSE_WEBKIT=no
- -DUSE_QT6=$(usex qt6)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-06-02 3:25 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-06-02 3:25 UTC (permalink / raw
To: gentoo-commits
commit: 5f0d87ed594a891b8dfbfb67414ca27fa005b2f2
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Sat Jun 1 14:23:49 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Jun 2 03:24:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f0d87ed
app-i18n/fcitx-chinese-addons: add 5.1.6
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.6.ebuild | 62 ++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index 69995159defa..ae0dd3b944a0 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,2 +1,3 @@
DIST fcitx5-chinese-addons-5.1.4_dict.tar.xz 885456 BLAKE2B 239b2092d9b4ca77d7c0373a85e7a0e5b03e223c477b8704e36657349cf3ba006791e77a064826cd452eb6e5e81d33831feceabb9a51a8d26275f70deb04658a SHA512 99f3cc101532879c126e2699d338528a25531b782a5c1f1e93cd363437567c1ba7b0173aca56f887089d4379e86aecf7977139b5b5c44d54e0bd9a416b01e976
DIST fcitx5-chinese-addons-5.1.5_dict.tar.zst 1007840 BLAKE2B dc7cfe09789a6d7ed5d820ebdae133648748478746b3da7ec93a7e1bf31db34d212459dd64e1887bb7cb4ab15f2846fab1d97cf4a17082129c9f4a6cbf819e76 SHA512 50559f1f2ffa89eb24ce58a14c3ca21f3c1092961ce90b925fcf89a029d65c0aee3601d89003be5e92f9f1697e72d5eb2dade06863256a9a615f8be9ec2b2fe5
+DIST fcitx5-chinese-addons-5.1.6_dict.tar.zst 1005756 BLAKE2B c3b3c12c3b269c71c7136ba140fa833fb28d4ff2698213aa47bdb3fe50ee65830a99c9591180ae0bfd2873c7d84013f26df895f2574372a64cdea9ea887cb052 SHA512 f130f4492977662916a1591048832a37ec306f3664a2c5bc5225ba220ea5ffebc3ef78022b2b6d2d8475b556285a0d45508eaf00473f5b636d2e56a7c73d2f38
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
new file mode 100644
index 000000000000..22638f079ea1
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake unpacker xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.zst"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
+REQUIRED_USE="
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.9:5
+ >=app-i18n/libime-1.1.7:5[data?]
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ qt6? (
+ dev-qt/qtbase:6[concurrent]
+ app-i18n/fcitx-qt:5[qt6,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:6[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_DATA=$(usex data)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ -DUSE_QT6=$(usex qt6)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-06-02 3:25 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-06-02 3:25 UTC (permalink / raw
To: gentoo-commits
commit: 1aee951f1cdbbed8eac7c86839794faa87efbd5b
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Sat Jun 1 21:57:37 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Jun 2 03:24:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aee951f
app-i18n/fcitx-chinese-addons: drop 5.1.4
Closes: https://github.com/gentoo/gentoo/pull/36960
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 -
.../fcitx-chinese-addons-5.1.4.ebuild | 63 ----------------------
2 files changed, 64 deletions(-)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index ae0dd3b944a0..96824aabe2a6 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,3 +1,2 @@
-DIST fcitx5-chinese-addons-5.1.4_dict.tar.xz 885456 BLAKE2B 239b2092d9b4ca77d7c0373a85e7a0e5b03e223c477b8704e36657349cf3ba006791e77a064826cd452eb6e5e81d33831feceabb9a51a8d26275f70deb04658a SHA512 99f3cc101532879c126e2699d338528a25531b782a5c1f1e93cd363437567c1ba7b0173aca56f887089d4379e86aecf7977139b5b5c44d54e0bd9a416b01e976
DIST fcitx5-chinese-addons-5.1.5_dict.tar.zst 1007840 BLAKE2B dc7cfe09789a6d7ed5d820ebdae133648748478746b3da7ec93a7e1bf31db34d212459dd64e1887bb7cb4ab15f2846fab1d97cf4a17082129c9f4a6cbf819e76 SHA512 50559f1f2ffa89eb24ce58a14c3ca21f3c1092961ce90b925fcf89a029d65c0aee3601d89003be5e92f9f1697e72d5eb2dade06863256a9a615f8be9ec2b2fe5
DIST fcitx5-chinese-addons-5.1.6_dict.tar.zst 1005756 BLAKE2B c3b3c12c3b269c71c7136ba140fa833fb28d4ff2698213aa47bdb3fe50ee65830a99c9591180ae0bfd2873c7d84013f26df895f2574372a64cdea9ea887cb052 SHA512 f130f4492977662916a1591048832a37ec306f3664a2c5bc5225ba220ea5ffebc3ef78022b2b6d2d8475b556285a0d45508eaf00473f5b636d2e56a7c73d2f38
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild
deleted file mode 100644
index 009b5efe7416..000000000000
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="fcitx5-chinese-addons"
-
-inherit cmake xdg
-
-DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
-HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
-SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
-SLOT="5"
-IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
-REQUIRED_USE="
- webengine? ( gui )
-"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=app-i18n/fcitx-5.1.6:5
- >=app-i18n/libime-1.1.3:5[data?]
- >=dev-libs/boost-1.61:=
- cloudpinyin? ( net-misc/curl )
- lua? ( app-i18n/fcitx-lua:5 )
- opencc? ( app-i18n/opencc:= )
- gui? (
- qt5? (
- dev-qt/qtconcurrent:5
- app-i18n/fcitx-qt:5[qt5,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:5[widgets] )
- )
- qt6? (
- dev-qt/qtbase:6[concurrent]
- app-i18n/fcitx-qt:5[qt6,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:6[widgets] )
- )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- kde-frameworks/extra-cmake-modules:0
- virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_BROWSER=$(usex webengine)
- -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
- -DENABLE_DATA=$(usex data)
- -DENABLE_GUI=$(usex gui)
- -DENABLE_OPENCC=$(usex opencc)
- -DENABLE_TEST=$(usex test)
- -DUSE_WEBKIT=no
- -DUSE_QT6=$(usex qt6)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-06-09 18:54 Matt Turner
0 siblings, 0 replies; 17+ messages in thread
From: Matt Turner @ 2024-06-09 18:54 UTC (permalink / raw
To: gentoo-commits
commit: 951d84da1ee613fd1fd7b8e53883adf73d481867
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 9 18:47:49 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jun 9 18:54:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=951d84da
app-i18n/fcitx-chinese-addons: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 -
.../fcitx-chinese-addons-5.1.5.ebuild | 62 ----------------------
2 files changed, 63 deletions(-)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index 96824aabe2a6..f9b1ea5a89dd 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1,2 +1 @@
-DIST fcitx5-chinese-addons-5.1.5_dict.tar.zst 1007840 BLAKE2B dc7cfe09789a6d7ed5d820ebdae133648748478746b3da7ec93a7e1bf31db34d212459dd64e1887bb7cb4ab15f2846fab1d97cf4a17082129c9f4a6cbf819e76 SHA512 50559f1f2ffa89eb24ce58a14c3ca21f3c1092961ce90b925fcf89a029d65c0aee3601d89003be5e92f9f1697e72d5eb2dade06863256a9a615f8be9ec2b2fe5
DIST fcitx5-chinese-addons-5.1.6_dict.tar.zst 1005756 BLAKE2B c3b3c12c3b269c71c7136ba140fa833fb28d4ff2698213aa47bdb3fe50ee65830a99c9591180ae0bfd2873c7d84013f26df895f2574372a64cdea9ea887cb052 SHA512 f130f4492977662916a1591048832a37ec306f3664a2c5bc5225ba220ea5ffebc3ef78022b2b6d2d8475b556285a0d45508eaf00473f5b636d2e56a7c73d2f38
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild
deleted file mode 100644
index 22638f079ea1..000000000000
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.5.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="fcitx5-chinese-addons"
-
-inherit cmake unpacker xdg
-
-DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
-HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
-SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.zst"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
-IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
-REQUIRED_USE="
- webengine? ( gui )
-"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=app-i18n/fcitx-5.1.9:5
- >=app-i18n/libime-1.1.7:5[data?]
- >=dev-libs/boost-1.61:=
- cloudpinyin? ( net-misc/curl )
- lua? ( app-i18n/fcitx-lua:5 )
- opencc? ( app-i18n/opencc:= )
- gui? (
- qt5? (
- dev-qt/qtconcurrent:5
- app-i18n/fcitx-qt:5[qt5,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:5[widgets] )
- )
- qt6? (
- dev-qt/qtbase:6[concurrent]
- app-i18n/fcitx-qt:5[qt6,-onlyplugin]
- webengine? ( dev-qt/qtwebengine:6[widgets] )
- )
- )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- kde-frameworks/extra-cmake-modules:0
- virtual/pkgconfig
-"
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_BROWSER=$(usex webengine)
- -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
- -DENABLE_DATA=$(usex data)
- -DENABLE_GUI=$(usex gui)
- -DENABLE_OPENCC=$(usex opencc)
- -DENABLE_TEST=$(usex test)
- -DUSE_WEBKIT=no
- -DUSE_QT6=$(usex qt6)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-07-29 17:30 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-07-29 17:30 UTC (permalink / raw
To: gentoo-commits
commit: dd291edb7c16cdfe920da77a4b7a115107dbfd77
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 17:29:46 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 17:29:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd291edb
app-i18n/fcitx-chinese-addons: Stabilize 5.1.6 amd64, #936885
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
index 22638f079ea1..1c057a0a5cc4 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.z
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-2+ LGPL-2+"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~loong ~riscv ~x86"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
webengine? ( gui )
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-07-29 17:30 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-07-29 17:30 UTC (permalink / raw
To: gentoo-commits
commit: b7e3941cb9017fe1c367790535d24d6c34fc81f7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 17:29:49 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 17:29:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e3941c
app-i18n/fcitx-chinese-addons: Stabilize 5.1.6 x86, #936885
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
index 1c057a0a5cc4..a32151fe56b6 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.z
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-2+ LGPL-2+"
SLOT="5"
-KEYWORDS="amd64 ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~loong ~riscv x86"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
webengine? ( gui )
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-10-11 0:07 Yixun Lan
0 siblings, 0 replies; 17+ messages in thread
From: Yixun Lan @ 2024-10-11 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 442adf235ac1d4d3def1d0547ad7a5ab3ac7612e
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Wed Oct 9 17:29:52 2024 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 11 00:06:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442adf23
app-i18n/fcitx-chinese-addons: add 5.1.7
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/Manifest | 1 +
.../fcitx-chinese-addons-5.1.7.ebuild | 62 ++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/app-i18n/fcitx-chinese-addons/Manifest b/app-i18n/fcitx-chinese-addons/Manifest
index f9b1ea5a89dd..cfe05d92de35 100644
--- a/app-i18n/fcitx-chinese-addons/Manifest
+++ b/app-i18n/fcitx-chinese-addons/Manifest
@@ -1 +1,2 @@
DIST fcitx5-chinese-addons-5.1.6_dict.tar.zst 1005756 BLAKE2B c3b3c12c3b269c71c7136ba140fa833fb28d4ff2698213aa47bdb3fe50ee65830a99c9591180ae0bfd2873c7d84013f26df895f2574372a64cdea9ea887cb052 SHA512 f130f4492977662916a1591048832a37ec306f3664a2c5bc5225ba220ea5ffebc3ef78022b2b6d2d8475b556285a0d45508eaf00473f5b636d2e56a7c73d2f38
+DIST fcitx5-chinese-addons-5.1.7_dict.tar.zst 1014942 BLAKE2B fb386dad971b2a8751202733ef593b72d35f9ab8a266f13e6839ea25010cf54e45c287e10d285a02d268f16b5b8f7a3dc6f6f20ffcc79759d8c1ef1136a29cb5 SHA512 fe04699672f034bde328049a19f23b9dbea75a980e706fcaf95138294b8aaaee54eb9ec5c696c343d5e4ce4788216821ad3eb45cd669d94d2f3b67551ae7360f
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
new file mode 100644
index 000000000000..35568fd1a173
--- /dev/null
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="fcitx5-chinese-addons"
+
+inherit cmake unpacker xdg
+
+DESCRIPTION="Addons related to Chinese, including IME previous bundled inside fcitx4."
+HOMEPAGE="https://github.com/fcitx/fcitx5-chinese-addons"
+SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.zst"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
+REQUIRED_USE="
+ webengine? ( gui )
+"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=app-i18n/fcitx-5.1.11:5
+ >=app-i18n/libime-1.1.7:5[data?]
+ >=dev-libs/boost-1.61:=
+ cloudpinyin? ( net-misc/curl )
+ lua? ( app-i18n/fcitx-lua:5 )
+ opencc? ( app-i18n/opencc:= )
+ gui? (
+ qt5? (
+ dev-qt/qtconcurrent:5
+ app-i18n/fcitx-qt:5[qt5,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:5[widgets] )
+ )
+ qt6? (
+ dev-qt/qtbase:6[concurrent]
+ app-i18n/fcitx-qt:5[qt6,-onlyplugin]
+ webengine? ( dev-qt/qtwebengine:6[widgets] )
+ )
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ kde-frameworks/extra-cmake-modules:0
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_BROWSER=$(usex webengine)
+ -DENABLE_CLOUDPINYIN=$(usex cloudpinyin)
+ -DENABLE_DATA=$(usex data)
+ -DENABLE_GUI=$(usex gui)
+ -DENABLE_OPENCC=$(usex opencc)
+ -DENABLE_TEST=$(usex test)
+ -DUSE_WEBKIT=no
+ -DUSE_QT6=$(usex qt6)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-11-24 8:45 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2024-11-24 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 7d5b5558c219908d5a17553d60cce8f3c79a8692
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 24 08:45:01 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Nov 24 08:45:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5b5558
app-i18n/fcitx-chinese-addons: Stabilize 5.1.7 x86, #944495
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
index 35568fd1a173..3a1ec5883d72 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.z
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-2+ LGPL-2+"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv x86"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
webengine? ( gui )
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/
@ 2024-11-24 14:25 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2024-11-24 14:25 UTC (permalink / raw
To: gentoo-commits
commit: 441a0156bbe109cc0caec3bec4f827ee416a16a5
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 24 14:25:14 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Nov 24 14:25:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=441a0156
app-i18n/fcitx-chinese-addons: Stabilize 5.1.7 amd64, #944495
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
index 3a1ec5883d72..615c389e8f57 100644
--- a/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
+++ b/app-i18n/fcitx-chinese-addons/fcitx-chinese-addons-5.1.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.fcitx-im.org/fcitx5/${MY_PN}/${MY_PN}-${PV}_dict.tar.z
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-2+ LGPL-2+"
SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~loong ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~loong ~riscv x86"
IUSE="+data +gui webengine +cloudpinyin +qt5 qt6 lua +opencc test"
REQUIRED_USE="
webengine? ( gui )
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-11-24 14:25 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-24 8:45 [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-chinese-addons/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2024-11-24 14:25 Joonas Niilola
2024-10-11 0:07 Yixun Lan
2024-07-29 17:30 Sam James
2024-07-29 17:30 Sam James
2024-06-09 18:54 Matt Turner
2024-06-02 3:25 Yixun Lan
2024-06-02 3:25 Yixun Lan
2024-04-25 0:43 Yixun Lan
2024-04-25 0:43 Yixun Lan
2024-03-08 9:12 Yixun Lan
2024-01-17 9:04 Jakov Smolić
2024-01-16 17:50 Arthur Zamarin
2024-01-11 0:22 Yixun Lan
2024-01-11 0:22 Yixun Lan
2024-01-02 3:56 WANG Xuerui
2023-12-25 11:51 Yixun Lan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox