Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-table/
Date: Sat, 06 Aug 2022 01:00:31
Message-Id: 1659747614.22270eb93a2ce70969b4963716cc90715c52e7ce.hattya@gentoo
1 commit: 22270eb93a2ce70969b4963716cc90715c52e7ce
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 6 01:00:14 2022 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 6 01:00:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22270eb9
7
8 app-i18n/ibus-table: new upstream release
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/ibus-table/Manifest | 1 +
14 app-i18n/ibus-table/ibus-table-1.16.10.ebuild | 55 +++++++++++++++++++++++++++
15 2 files changed, 56 insertions(+)
16
17 diff --git a/app-i18n/ibus-table/Manifest b/app-i18n/ibus-table/Manifest
18 index aa5795ad8217..dd60b54f7771 100644
19 --- a/app-i18n/ibus-table/Manifest
20 +++ b/app-i18n/ibus-table/Manifest
21 @@ -1 +1,2 @@
22 +DIST ibus-table-1.16.10.tar.gz 1518611 BLAKE2B 610f4448bb59cffef4e11b069dc5d3f6aa0eadffe6f6af7da07b2b24da0969dc63dc05717694c7b61ac5e18c14433b4af6a111a7076bd8a69871e70ea8fe357e SHA512 3e3dc4ec6aea974d7b0f171375448090e117c70a3ba3d1b6c218db481725e58c65adce55839f826ec274d33f926377d0390bcd505af1911c5b9f68910d0c3497
23 DIST ibus-table-1.16.9.tar.gz 1474440 BLAKE2B 8380c9549e4295850c81279e73b774beea610ebb632bc8a04fe0ce37a02c702652c0ec49ed3596851e05d2f151320daf60eb2631c8bbe439aee8c7e2834398f5 SHA512 840de16f62820456812c036ed84f99900d2d49885a9a6131da97efbec149ea426ab4a966541b16a18dbcedf38b6f78803b3fb04a5134258bb3796d3b9caf0b08
24
25 diff --git a/app-i18n/ibus-table/ibus-table-1.16.10.ebuild b/app-i18n/ibus-table/ibus-table-1.16.10.ebuild
26 new file mode 100644
27 index 000000000000..7314f41b0540
28 --- /dev/null
29 +++ b/app-i18n/ibus-table/ibus-table-1.16.10.ebuild
30 @@ -0,0 +1,55 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="8"
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +PYTHON_REQ_USE="sqlite(+)"
37 +
38 +inherit gnome2-utils python-single-r1 xdg
39 +
40 +DESCRIPTION="Tables engines for IBus"
41 +HOMEPAGE="https://github.com/ibus/ibus/wiki"
42 +SRC_URI="https://github.com/kaio/${PN}/releases/download/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2 LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="nls"
48 +RESTRICT="test"
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +RDEPEND="${PYTHON_DEPS}
52 + $(python_gen_cond_dep '
53 + app-i18n/ibus[python(+),${PYTHON_USEDEP}]
54 + dev-python/pygobject:3[${PYTHON_USEDEP}]
55 + ')
56 + virtual/libiconv
57 + nls? ( virtual/libintl )"
58 +DEPEND="${RDEPEND}"
59 +BDEPEND="virtual/pkgconfig
60 + nls? ( sys-devel/gettext )"
61 +
62 +src_prepare() {
63 + python_fix_shebang .
64 +
65 + default
66 +}
67 +
68 +src_configure() {
69 + econf $(use_enable nls)
70 +}
71 +
72 +pkg_preinst() {
73 + xdg_pkg_preinst
74 + gnome2_schemas_savelist
75 +}
76 +
77 +pkg_postinst() {
78 + xdg_pkg_postinst
79 + gnome2_schemas_update
80 +}
81 +
82 +pkg_postrm() {
83 + xdg_pkg_postrm
84 + gnome2_schemas_update
85 +}