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: Sun, 28 Nov 2021 13:21:57
Message-Id: 1638105706.52a5b525540297c46540a4d10b3dfa2c78b1a709.hattya@gentoo
1 commit: 52a5b525540297c46540a4d10b3dfa2c78b1a709
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 28 13:18:33 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 28 13:21:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52a5b525
7
8 app-i18n/ibus-typing-booster: new upstream release
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/ibus-typing-booster/Manifest | 1 +
14 .../ibus-typing-booster-2.15.7.ebuild | 54 ++++++++++++++++++++++
15 2 files changed, 55 insertions(+)
16
17 diff --git a/app-i18n/ibus-typing-booster/Manifest b/app-i18n/ibus-typing-booster/Manifest
18 index e154561f047f..30c60dc6eb0e 100644
19 --- a/app-i18n/ibus-typing-booster/Manifest
20 +++ b/app-i18n/ibus-typing-booster/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ibus-typing-booster-2.14.12.tar.gz 10226257 BLAKE2B 5dae530a7ec425e8bd3c6009d0bdb9b8d321c8670769ddf80ba7f706d6b5140f21f184f877603de3cc6f425a4a1953c645eb177c9fa8183ecfd091ccfb32353a SHA512 09d1898c3ac8a1dc79768df7a44c33862a0b0fbb2122d184f1e8a839b8c3c71191fe5ef932f9e649ac715c8093a5c277d5783594f8defc06ecc13727b851ffa5
23 DIST ibus-typing-booster-2.14.13.tar.gz 10239396 BLAKE2B 1c4db896f28f3f1b58bd3071fb6f2d5c1b2b4e0fbad43568ae25d69f301d4ce408ca6c2fb829818f6981c2f212c499c1dfabc3511f09f7a9f5c3d4ae2d08a212 SHA512 4e1f1c39fea030f1f056966007127afeb5c6c098a66ecd6fe0b4ea60f302438e072d6d409ef2bee9ea5b0d1048b5a22d7e4fad9f7f509362e2af251855f6e535
24 +DIST ibus-typing-booster-2.15.7.tar.gz 10249949 BLAKE2B da2a24f66e3e8b57a91a71d521dc8c5d271bdba226d37870f0db0fb60ed9bb8f5fa1a752c6afdddb7044bd82b334d5a53810d7a64f5dbd439aaa19ab4a29117e SHA512 012e0ea8adf4f1f6ee02df05a306c0efd30cc6dd83b09496319390aa48a700a089e52d0ca46a6f3e077e39e4903b77e5c34715d33e7bf724d03c682c53bcb5e5
25
26 diff --git a/app-i18n/ibus-typing-booster/ibus-typing-booster-2.15.7.ebuild b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.15.7.ebuild
27 new file mode 100644
28 index 000000000000..34ef03a80db1
29 --- /dev/null
30 +++ b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.15.7.ebuild
31 @@ -0,0 +1,54 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +PYTHON_REQ_USE="sqlite(+)"
38 +
39 +inherit gnome2-utils python-single-r1 xdg
40 +
41 +DESCRIPTION="Completion input method for IBus"
42 +HOMEPAGE="https://mike-fabian.github.io/ibus-typing-booster"
43 +SRC_URI="https://github.com/mike-fabian/${PN}/releases/download/${PV}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3+"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +RESTRICT="test"
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 +
52 +DEPEND="${PYTHON_DEPS}
53 + dev-libs/m17n-lib
54 + $(python_gen_cond_dep '
55 + app-i18n/ibus[python(+),${PYTHON_USEDEP}]
56 + dev-python/dbus-python[${PYTHON_USEDEP}]
57 + dev-python/pyenchant[${PYTHON_USEDEP}]
58 + dev-python/pygobject:3[${PYTHON_USEDEP}]
59 + dev-python/pyxdg[${PYTHON_USEDEP}]
60 + ')"
61 +RDEPEND="${DEPEND}
62 + >=dev-db/m17n-db-1.7"
63 +BDEPEND="sys-devel/gettext
64 + virtual/pkgconfig"
65 +
66 +src_prepare() {
67 + default
68 +
69 + sed -i "s|/usr\(/bin/sh\)|\1|" {engine,setup}/*.in
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 +}