Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/icu/
Date: Sat, 25 May 2019 21:58:07
Message-Id: 1558820860.07188077c30eed8ba772b325af3c58017d9d6f0b.asturm@gentoo
1 commit: 07188077c30eed8ba772b325af3c58017d9d6f0b
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Fri May 24 23:17:31 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 25 21:47:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07188077
7
8 dev-libs/icu: Add dependency on Python 3
9
10 Move app-doc/doxygen to BDEPEND.
11
12 Closes: https://bugs.gentoo.org/686658
13 Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 dev-libs/icu/icu-64.2.ebuild | 8 ++++----
17 1 file changed, 4 insertions(+), 4 deletions(-)
18
19 diff --git a/dev-libs/icu/icu-64.2.ebuild b/dev-libs/icu/icu-64.2.ebuild
20 index 812e1823833..3575c236827 100644
21 --- a/dev-libs/icu/icu-64.2.ebuild
22 +++ b/dev-libs/icu/icu-64.2.ebuild
23 @@ -2,8 +2,9 @@
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 +PYTHON_COMPAT=(python{3_5,3_6,3_7})
28
29 -inherit flag-o-matic toolchain-funcs autotools multilib-minimal
30 +inherit autotools flag-o-matic multilib-minimal python-any-r1 toolchain-funcs
31
32 DESCRIPTION="International Components for Unicode"
33 HOMEPAGE="http://www.icu-project.org/"
34 @@ -16,11 +17,10 @@ SLOT="0/${PV}"
35 KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
36 IUSE="debug doc examples static-libs"
37
38 -DEPEND="
39 - doc? ( app-doc/doxygen[dot] )
40 -"
41 BDEPEND="
42 + ${PYTHON_DEPS}
43 virtual/pkgconfig
44 + doc? ( app-doc/doxygen[dot] )
45 "
46
47 S="${WORKDIR}/${PN}/source"