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: Sat, 01 Aug 2020 12:50:42
Message-Id: 1596286128.21e073b9d21176bdcf392fb28135bbf9f2cf22c2.hattya@gentoo
1 commit: 21e073b9d21176bdcf392fb28135bbf9f2cf22c2
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 12:48:48 2020 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 12:48:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e073b9
7
8 app-i18n/ibus-typing-booster: new upstream release
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/ibus-typing-booster/Manifest | 1 +
14 .../ibus-typing-booster-2.9.4.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 49af86ca62a..4faa5ab42a5 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.8.3.tar.gz 8184044 BLAKE2B 06b7bc3c39f8c135d5e6d2c90ceaa2df8c38041cb4cc7d583cc335bb3bbdbf4915a6bcb0fff80bbaae797e8bda74bed26077ab4739a8f9584ecfaade833eefbb SHA512 18cee36b5f5c3d6da1cb455e785317c0e2b9826e49e3b2655f4f7a3fce4bdd279ff24614083559996031876702879530799a709e196dc5d68345f0d942972dff
23 DIST ibus-typing-booster-2.9.0.tar.gz 8191076 BLAKE2B 4b0e53679b907fce56361c60aed2d50f0ac3bef422f9c56b4b5ca8733734c0341f90dfbcf2a9db747a801d999a49198de2b091badf8efe141d22fddb9b35ec6c SHA512 33e0c53e3f16e312eee7db2395d0a5506150e60a47882a7531c9d082e0ca405aabd922b4774a507399d31f38feed78fb87a09efc5550f08dd3794703f1fab235
24 +DIST ibus-typing-booster-2.9.4.tar.gz 8222228 BLAKE2B 8ba79ceaff6cd5ce37d093b08438a22ffb7b1295bba6d0b3af141b5804e89d04807d14fa5c5ce959ff728d76fcc5e60c0a51f113baa172710d59866733bd9741 SHA512 9c323301deccec0904cb2a2e34015ef11885ecd635ddb99afc6811a7f684dca448a026301155ae26fe0a38c00ca0a4d714ff933c39a60e4299434cfbca455d58
25
26 diff --git a/app-i18n/ibus-typing-booster/ibus-typing-booster-2.9.4.ebuild b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.9.4.ebuild
27 new file mode 100644
28 index 00000000000..ed1abe74544
29 --- /dev/null
30 +++ b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.9.4.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +PYTHON_COMPAT=( python3_{6,7,8} )
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_MULTI_USEDEP}]
56 + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
57 + dev-python/pyenchant[${PYTHON_MULTI_USEDEP}]
58 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
59 + dev-python/pyxdg[${PYTHON_MULTI_USEDEP}]
60 + ')"
61 +RDEPEND="${DEPEND}
62 + >=dev-db/m17n-db-1.7"
63 +BDEPEND="sys-devel/gettext
64 + virtual/pkgconfig"
65 +
66 +pkg_preinst() {
67 + xdg_pkg_preinst
68 + gnome2_schemas_savelist
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_pkg_postinst
73 + gnome2_schemas_update
74 +}
75 +
76 +pkg_postrm() {
77 + xdg_pkg_postrm
78 + gnome2_schemas_update
79 +}