commit: a8ed681733c65186d707c73690894d50bce1f6e2
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 16 13:08:44 2025 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sat Aug 16 13:08:44 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ed6817
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.15.ebuild | 55 +++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/app-i18n/ibus-table/Manifest b/app-i18n/ibus-table/Manifest
index 743f5e9e7392..4d7a57a4aeac 100644
--- a/app-i18n/ibus-table/Manifest
+++ b/app-i18n/ibus-table/Manifest
@@ -1 +1,2 @@
DIST ibus-table-1.17.14.tar.gz 1625465 BLAKE2B
70a16c1ed3098c81b1d19694ed30bed7244a6e683289eeb4461fc08a3e122a981df31b815e533dcb7e628aec003461030088ecfc57c976bf6446e091ff60e474
SHA512
8a4ac3833c81d990b5174664220bf3c3556d328f3181615c5b17f8ba5995b7a1239e1e8d0166acb81e9b82b2019f7c431a984698c7e0dd1bae1f49a7305bcf76
+DIST ibus-table-1.17.15.tar.gz 1627549 BLAKE2B
fae8afdc95406d81f091607d98531c7f7767ed4b2142d1fb9f92985a72a7c16f2cbe165fcdcc9ce146529f2b5be8ff7c2635dd3047f7a0b8d54794ae7f1308dc
SHA512
0553d5296ae78ecfaed7fd36e3711457013a6ceb6fd4ad2f30b42ad9d5aae9605d4dee49121aba1b839bb13a9ec9bd8d4e98b83ff2c389178064170cd6c55ff3
diff --git a/app-i18n/ibus-table/ibus-table-1.17.15.ebuild
b/app-i18n/ibus-table/ibus-table-1.17.15.ebuild
new file mode 100644
index 000000000000..f0cbc40946ed
--- /dev/null
+++ b/app-i18n/ibus-table/ibus-table-1.17.15.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
+}