commit: de043f330871162adf5d53e6ed469f7dcd436823
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 26 12:58:20 2025 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Jun 26 12:58:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de043f33
app-i18n/ibus-table: new upstream release
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/ibus-table/Manifest | 1 +
app-i18n/ibus-table/ibus-table-1.17.14.ebuild | 55 +++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/app-i18n/ibus-table/Manifest b/app-i18n/ibus-table/Manifest
index 7cbf278c1885..b9889033cada 100644
--- a/app-i18n/ibus-table/Manifest
+++ b/app-i18n/ibus-table/Manifest
@@ -1 +1,2 @@
DIST ibus-table-1.17.12.tar.gz 1611585 BLAKE2B
9ce1c7e08f352bc525419e0052ce44000d787656bc32f0f7e5feb824a4fa9c6cefd7385f9c7e8e28856477a0b0bd06ee354067194327588a1fbc1557903fe7b7
SHA512
144347a806437f29189d7d8a1a02aeca2e6d98988c11123010a5cd8db2efecb72bf7af3480867e5bf538e797e101cede6ea6f052e7f5f8ccbc009ee5c573e612
+DIST ibus-table-1.17.14.tar.gz 1625465 BLAKE2B
70a16c1ed3098c81b1d19694ed30bed7244a6e683289eeb4461fc08a3e122a981df31b815e533dcb7e628aec003461030088ecfc57c976bf6446e091ff60e474
SHA512
8a4ac3833c81d990b5174664220bf3c3556d328f3181615c5b17f8ba5995b7a1239e1e8d0166acb81e9b82b2019f7c431a984698c7e0dd1bae1f49a7305bcf76
diff --git a/app-i18n/ibus-table/ibus-table-1.17.14.ebuild
b/app-i18n/ibus-table/ibus-table-1.17.14.ebuild
new file mode 100644
index 000000000000..f0cbc40946ed
--- /dev/null
+++ b/app-i18n/ibus-table/ibus-table-1.17.14.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+PYTHON_COMPAT=( python3_{10..13} )
+PYTHON_REQ_USE="sqlite(+)"
+
+inherit gnome2-utils python-single-r1 xdg
+
+DESCRIPTION="Tables engines for IBus"
+HOMEPAGE="https://github.com/ibus/ibus/wiki"
+SRC_URI="https://github.com/kaio/${PN}/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+RESTRICT="test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ $(python_gen_cond_dep '
+ app-i18n/ibus[python(+),${PYTHON_USEDEP}]
+ dev-python/pygobject:3[${PYTHON_USEDEP}]
+ ')
+ virtual/libiconv
+ nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+ nls? ( sys-devel/gettext )"
+
+src_prepare() {
+ python_fix_shebang .
+
+ default
+}
+
+src_configure() {
+ econf $(use_enable nls)
+}
+
+pkg_preinst() {
+ xdg_pkg_preinst
+ gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome2_schemas_update
+}