Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/gimp-help/
Date: Tue, 11 Feb 2020 10:20:36
Message-Id: 1581416410.0e227570475e0b1becac7f986ac7f2a6b59a36ac.mgorny@gentoo
1 commit: 0e227570475e0b1becac7f986ac7f2a6b59a36ac
2 Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Sun Feb 9 10:30:58 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 10:20:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e227570
7
8 app-doc/gimp-help: fix missing python_check_deps()
9
10 Closes: https://bugs.gentoo.org/708566
11 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
12 Closes: https://github.com/gentoo/gentoo/pull/14603
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 app-doc/gimp-help/gimp-help-2.10.0.ebuild | 6 +++++-
16 app-doc/gimp-help/gimp-help-2.8.2.ebuild | 6 +++++-
17 2 files changed, 10 insertions(+), 2 deletions(-)
18
19 diff --git a/app-doc/gimp-help/gimp-help-2.10.0.ebuild b/app-doc/gimp-help/gimp-help-2.10.0.ebuild
20 index 7041b5998ba..5180a87afe2 100644
21 --- a/app-doc/gimp-help/gimp-help-2.10.0.ebuild
22 +++ b/app-doc/gimp-help/gimp-help-2.10.0.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 +# Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29 @@ -23,6 +23,10 @@ DEPEND="$(python_gen_any_dep 'dev-libs/libxml2[python,${PYTHON_USEDEP}]')
30 dev-libs/libxslt
31 "
32
33 +python_check_deps() {
34 + has_version "dev-libs/libxml2[${PYTHON_USEDEP}]"
35 +}
36 +
37 src_configure() {
38 econf --without-gimp
39 }
40
41 diff --git a/app-doc/gimp-help/gimp-help-2.8.2.ebuild b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
42 index eddf386a020..f1f2dea4b62 100644
43 --- a/app-doc/gimp-help/gimp-help-2.8.2.ebuild
44 +++ b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
45 @@ -1,4 +1,4 @@
46 -# Copyright 1999-2019 Gentoo Authors
47 +# Copyright 1999-2020 Gentoo Authors
48 # Distributed under the terms of the GNU General Public License v2
49
50 EAPI=6
51 @@ -21,6 +21,10 @@ DEPEND="${PYTHON_DEPS}
52 sys-devel/gettext
53 "
54
55 +python_check_deps() {
56 + has_version "dev-libs/libxml2[${PYTHON_USEDEP}]"
57 +}
58 +
59 src_configure() {
60 econf --without-gimp
61 }