From 6ad6e3696117844ecfb1006beeb1d46da3e91c19 Mon Sep 17 00:00:00 2001 From: Akinori Hattori Date: Sat, 24 Jan 2026 22:39:33 +0900 Subject: [PATCH] app-i18n/ibus-table: new upstream release Signed-off-by: Akinori Hattori --- app-i18n/ibus-table/Manifest | 1 + app-i18n/ibus-table/ibus-table-1.17.17.ebuild | 55 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 app-i18n/ibus-table/ibus-table-1.17.17.ebuild diff --git a/app-i18n/ibus-table/Manifest b/app-i18n/ibus-table/Manifest index c7642aa529c52..f89e01303d39b 100644 --- a/app-i18n/ibus-table/Manifest +++ b/app-i18n/ibus-table/Manifest @@ -1 +1,2 @@ DIST ibus-table-1.17.16.tar.gz 1628244 BLAKE2B 973c25955afac921a1146fca59d459066d2250962e3150fa1345c345f0d5405d97dcabd82a4317c7644158228c92eeff06edd7c45bd1ebb3061c2b5d00fef30f SHA512 e7d9102b85f1f96470afdee270ca630e9b54cd668c29173740ee9e504d9977fd1569f3c0b64323b30c5afd71493b095a84f34175b07c5db453f89b935075083e +DIST ibus-table-1.17.17.tar.gz 1662181 BLAKE2B 8cfb8ffe97d8a5e02f526c96d6e5f55e77cc8632b4bab9cfa4ced13b5baf9d5d1c68de301b239b8a9d421aca0f02fe901e077b65744fad999220e7de6a95611c SHA512 88a084e9f495db482a71e07d665ec097c823f02e92e57957fd36ef6aaf9fd7a59f09bef6d62ab5e973e2f98845e096c7b80951ddf44f41d80eaa8eb3869fc8c9 diff --git a/app-i18n/ibus-table/ibus-table-1.17.17.ebuild b/app-i18n/ibus-table/ibus-table-1.17.17.ebuild new file mode 100644 index 0000000000000..f9283d2e0d3c4 --- /dev/null +++ b/app-i18n/ibus-table/ibus-table-1.17.17.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2026 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 +}