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-typing-booster/
Date: Wed, 30 Jun 2021 13:47:32
Message-Id: 1625060814.13c2c08e3ebc35551cb7b7ee53bba43f6c31f6ec.hattya@gentoo
1 commit: 13c2c08e3ebc35551cb7b7ee53bba43f6c31f6ec
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 30 13:46:54 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 13:46:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c2c08e
7
8 app-i18n/ibus-typing-booster: new upstream release
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/ibus-typing-booster/Manifest | 1 +
14 .../ibus-typing-booster-2.11.5.ebuild | 48 ++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/app-i18n/ibus-typing-booster/Manifest b/app-i18n/ibus-typing-booster/Manifest
18 index cdec4cbb431..d96e7b1ba97 100644
19 --- a/app-i18n/ibus-typing-booster/Manifest
20 +++ b/app-i18n/ibus-typing-booster/Manifest
21 @@ -1 +1,2 @@
22 DIST ibus-typing-booster-2.10.5.tar.gz 9448121 BLAKE2B 32e332df5e68a81c4f86df298389bb1fd9daf97b1f281bdc150183bd939a97021540aa81db5fa94ee3890c9b9a031a8eb75241da3716763ed6262fc5d5b3fb9d SHA512 f3bc5536874227b5482e46a097ac634a522651b3d200b33207705f5b1d87b8894dd962e19c389281fa5f32c1edbf3186dbfba12d718cbc6fa159d648bc622bf6
23 +DIST ibus-typing-booster-2.11.5.tar.gz 9485824 BLAKE2B 41d9aa2ba310e2db725e7809a67988fa69fee117b560d945a3cd935e7b2bbc372f448a531ed4ebd2a131dc1ffe3cb7d86b7d10fdbce56a2e241157f08a84ca69 SHA512 a30c81903b3d99f23a606f7f083615283ba64a0e62ac54183327447c33f6f7212472742036634522d36776a45ac72ce7874bcada624361f930785e2823652f0c
24
25 diff --git a/app-i18n/ibus-typing-booster/ibus-typing-booster-2.11.5.ebuild b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.11.5.ebuild
26 new file mode 100644
27 index 00000000000..4547ea3abfb
28 --- /dev/null
29 +++ b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.11.5.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +PYTHON_COMPAT=( python3_{7,8,9} )
36 +PYTHON_REQ_USE="sqlite(+)"
37 +
38 +inherit gnome2-utils python-single-r1 xdg
39 +
40 +DESCRIPTION="Completion input method for IBus"
41 +HOMEPAGE="https://mike-fabian.github.io/ibus-typing-booster"
42 +SRC_URI="https://github.com/mike-fabian/${PN}/releases/download/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +RESTRICT="test"
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +DEPEND="${PYTHON_DEPS}
52 + dev-libs/m17n-lib
53 + $(python_gen_cond_dep '
54 + app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
55 + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
56 + dev-python/pyenchant[${PYTHON_MULTI_USEDEP}]
57 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
58 + dev-python/pyxdg[${PYTHON_MULTI_USEDEP}]
59 + ')"
60 +RDEPEND="${DEPEND}
61 + >=dev-db/m17n-db-1.7"
62 +BDEPEND="sys-devel/gettext
63 + virtual/pkgconfig"
64 +
65 +pkg_preinst() {
66 + xdg_pkg_preinst
67 + gnome2_schemas_savelist
68 +}
69 +
70 +pkg_postinst() {
71 + xdg_pkg_postinst
72 + gnome2_schemas_update
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_pkg_postrm
77 + gnome2_schemas_update
78 +}