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: Fri, 28 Aug 2020 13:15:16
Message-Id: 1598620439.96a447fa4b2b034a79fb0d079874de0810b4c963.hattya@gentoo
1 commit: 96a447fa4b2b034a79fb0d079874de0810b4c963
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 13:13:59 2020 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 13:13:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a447fa
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.6.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 cc98f7fb910..23eea47a8ff 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.9.4.tar.gz 8222228 BLAKE2B 8ba79ceaff6cd5ce37d093b08438a22ffb7b1295bba6d0b3af141b5804e89d04807d14fa5c5ce959ff728d76fcc5e60c0a51f113baa172710d59866733bd9741 SHA512 9c323301deccec0904cb2a2e34015ef11885ecd635ddb99afc6811a7f684dca448a026301155ae26fe0a38c00ca0a4d714ff933c39a60e4299434cfbca455d58
23 DIST ibus-typing-booster-2.9.5.tar.gz 8236281 BLAKE2B 749890cc3477db890603c9a700bff1a097fd2cd09d01477f319658c65c73688903171e49a0284176ce396d83587ef23a067a0aabe81c57bf70479050a15e8c80 SHA512 58db7d7e687512d8c436b23c28e1c614d56f486de13153f5ddfddecf32595f6de8c8289273b288c1df857dac5577df3eea48ca900b709a13b9c91b2e0ec21286
24 +DIST ibus-typing-booster-2.9.6.tar.gz 8238571 BLAKE2B f0d64d71c778bc47427ae7b87a23d53f77a537765113334cada73312452cfc0c66f8a321ff17f7722da6554230347253ac2bd0e311b4c5a8831dc17f34e8ef72 SHA512 d3038b744ba5049fed8cf4ba9d455502ef3061f35604d135ffb15604bbac78be1b4ba4232528daf87cb750772309cc9745d7ebc31ced2fc989395e0c62701eb4
25
26 diff --git a/app-i18n/ibus-typing-booster/ibus-typing-booster-2.9.6.ebuild b/app-i18n/ibus-typing-booster/ibus-typing-booster-2.9.6.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.6.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 +}