Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-pinyin/
Date: Thu, 27 Aug 2020 02:15:51
Message-Id: 1598494522.fc7f4b841ab679168e8a4f90b57bf59867618ccb.dlan@gentoo
1 commit: fc7f4b841ab679168e8a4f90b57bf59867618ccb
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 27 02:14:48 2020 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 27 02:15:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7f4b84
7
8 app-i18n/ibus-pinyin: cleanup old
9
10 Closes: https://bugs.gentoo.org/735190
11 Package-Manager: Portage-3.0.0, Repoman-2.3.23
12 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
13
14 app-i18n/ibus-pinyin/ibus-pinyin-1.5.0-r3.ebuild | 52 ------------------------
15 1 file changed, 52 deletions(-)
16
17 diff --git a/app-i18n/ibus-pinyin/ibus-pinyin-1.5.0-r3.ebuild b/app-i18n/ibus-pinyin/ibus-pinyin-1.5.0-r3.ebuild
18 deleted file mode 100644
19 index 71734165967..00000000000
20 --- a/app-i18n/ibus-pinyin/ibus-pinyin-1.5.0-r3.ebuild
21 +++ /dev/null
22 @@ -1,52 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="6"
27 -PYTHON_COMPAT=( python2_7 )
28 -
29 -inherit autotools python-single-r1
30 -
31 -DESCRIPTION="Chinese Pinyin and Bopomofo engines for IBus"
32 -HOMEPAGE="https://github.com/ibus/ibus/wiki"
33 -SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="boost lua nls"
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -RDEPEND="${PYTHON_DEPS}
42 - app-i18n/pyzy
43 - dev-db/sqlite:3
44 - $(python_gen_cond_dep '
45 - app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
46 - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
47 - ')
48 - boost? ( dev-libs/boost )
49 - lua? ( =dev-lang/lua-5.1*:= )
50 - nls? ( virtual/libintl )"
51 -DEPEND="${RDEPEND}
52 - dev-util/intltool
53 - sys-devel/autoconf-archive
54 - virtual/pkgconfig
55 - nls? ( sys-devel/gettext )"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-boost.patch
59 - "${FILESDIR}"/${P}-content-type-method.patch
60 -)
61 -
62 -src_prepare() {
63 - sed -i "s/python/${EPYTHON}/" setup/${PN/-/-setup-}.in
64 -
65 - default
66 - eautoreconf
67 -}
68 -
69 -src_configure() {
70 - econf \
71 - $(use_enable boost) \
72 - $(use_enable lua lua-extension) \
73 - $(use_enable nls)
74 -}