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: Sun, 08 May 2022 08:39:12
Message-Id: 1651999000.55d24b026f79e1cd15fe9fb1c3b82be9a41f70d3.hattya@gentoo
1 commit: 55d24b026f79e1cd15fe9fb1c3b82be9a41f70d3
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 08:36:40 2022 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 08:36:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55d24b02
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.8.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 0f6b2cc10ad9..3d6bc3749242 100644
19 --- a/app-i18n/ibus-table/Manifest
20 +++ b/app-i18n/ibus-table/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ibus-table-1.14.1.tar.gz 1451943 BLAKE2B e8fc54daf89aaee813de6788bef9f56a654ffdf4751acf3e2f622d971134c3aba906ca2b106f51b2fa305b8c65fb4db862f57f5f9e3e82a569c5a72e3017e627 SHA512 a658c2d370d173d2fe2f38c02c6b822a17771754ac98a856f954c4c998e90a857f9d54ed652c74159af9545d445001d202e7b5578e7694f8767f928b42db9055
23 DIST ibus-table-1.16.7.tar.gz 1463213 BLAKE2B 2d3eb68570c834f668f8d8f50ea4fc79cb1def331405f136000dda37d9be0150a442e2b92a29610632eefde42089f6c5b782ea63fa1d9b5fde9443419a6831cf SHA512 6dc08df4c5e7216b3b9e366c404dd6d89566937f83f58074aed1c5c925bc411568855ac08a8edab306b4b535da428ae660d4876a35e546aad75ede01aa608ee3
24 +DIST ibus-table-1.16.8.tar.gz 1468647 BLAKE2B acfb0cfce0e029abd55bc4465cac408be59a834761b2f1f5eca8798a11109bb9e885d17d1a1d171de5c7556308b1d7314fe97454a3a1fbd2494f492698ccc5ec SHA512 086650238b170db69ace0faacea6c8c9c03c099c59313cb7663b573f17bd4e9df9309dc9132708a89d6ce5cf00f4846ba50dab3462f31293b891487f1635aab2
25
26 diff --git a/app-i18n/ibus-table/ibus-table-1.16.8.ebuild b/app-i18n/ibus-table/ibus-table-1.16.8.ebuild
27 new file mode 100644
28 index 000000000000..7314f41b0540
29 --- /dev/null
30 +++ b/app-i18n/ibus-table/ibus-table-1.16.8.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="8"
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +PYTHON_REQ_USE="sqlite(+)"
38 +
39 +inherit gnome2-utils python-single-r1 xdg
40 +
41 +DESCRIPTION="Tables engines for IBus"
42 +HOMEPAGE="https://github.com/ibus/ibus/wiki"
43 +SRC_URI="https://github.com/kaio/${PN}/releases/download/${PV}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-2 LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="nls"
49 +RESTRICT="test"
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 +
52 +RDEPEND="${PYTHON_DEPS}
53 + $(python_gen_cond_dep '
54 + app-i18n/ibus[python(+),${PYTHON_USEDEP}]
55 + dev-python/pygobject:3[${PYTHON_USEDEP}]
56 + ')
57 + virtual/libiconv
58 + nls? ( virtual/libintl )"
59 +DEPEND="${RDEPEND}"
60 +BDEPEND="virtual/pkgconfig
61 + nls? ( sys-devel/gettext )"
62 +
63 +src_prepare() {
64 + python_fix_shebang .
65 +
66 + default
67 +}
68 +
69 +src_configure() {
70 + econf $(use_enable nls)
71 +}
72 +
73 +pkg_preinst() {
74 + xdg_pkg_preinst
75 + gnome2_schemas_savelist
76 +}
77 +
78 +pkg_postinst() {
79 + xdg_pkg_postinst
80 + gnome2_schemas_update
81 +}
82 +
83 +pkg_postrm() {
84 + xdg_pkg_postrm
85 + gnome2_schemas_update
86 +}