Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/gimp-help/
Date: Wed, 16 Sep 2020 08:04:38
Message-Id: 1600243453.6bf0e2eae719f66a579a5fe363b2f504b34fc650.juippis@gentoo
1 commit: 6bf0e2eae719f66a579a5fe363b2f504b34fc650
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 08:03:47 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 08:04:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf0e2ea
7
8 app-doc/gimp-help: return 2.8.2 ebuild
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 app-doc/gimp-help/Manifest | 1 +
13 app-doc/gimp-help/gimp-help-2.8.2.ebuild | 35 ++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/app-doc/gimp-help/Manifest b/app-doc/gimp-help/Manifest
17 index 03774772800..9024553a992 100644
18 --- a/app-doc/gimp-help/Manifest
19 +++ b/app-doc/gimp-help/Manifest
20 @@ -1 +1,2 @@
21 DIST gimp-help-2.10.0.tar.bz2 187092180 BLAKE2B 29a7fbe3fcb6f3210aeda4bc514d7e0eeca05f9fabd3b9022c7ed1e5a9432876cc3bf530632648e2eb50509add4e387106d9705a1c17469e33496daec737d21b SHA512 2f6d5e7cf0c3b4960c92074ef02d51a1d089c148f6453a66e453a3084cdede280f72c6b77d35f66777adbda8aa273ec2a472fb538142e51bb263c3077eec473a
22 +DIST gimp-help-2.8.2.tar.bz2 158504580 BLAKE2B d0023a4290879f97e3365f1208427997d1facc09a7ed4ac0a274615e9eff378c9a4da0d7c5190bc24ad27c2b03d6c513003297d835562b0fa3e02685443d15e9 SHA512 3afdaa8b2f005d939d039d2e22c8306145e7b7acaca5ef89279998e87931e99d1fe607f1337f7796d667d5c6be456ba976b3c8a937c9dd6b1888d7158cfbed67
23
24 diff --git a/app-doc/gimp-help/gimp-help-2.8.2.ebuild b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
25 new file mode 100644
26 index 00000000000..a4c03371443
27 --- /dev/null
28 +++ b/app-doc/gimp-help/gimp-help-2.8.2.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 )
36 +inherit python-any-r1
37 +
38 +DESCRIPTION="GNU Image Manipulation Program help files"
39 +HOMEPAGE="https://docs.gimp.org/"
40 +SRC_URI="mirror://gimp/help/${P}.tar.bz2"
41 +
42 +LICENSE="FDL-1.2"
43 +SLOT="2"
44 +KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
45 +IUSE=""
46 +
47 +DEPEND="${PYTHON_DEPS}
48 + $(python_gen_any_dep 'dev-libs/libxml2[python,${PYTHON_USEDEP}]')
49 + dev-libs/libxslt
50 + sys-devel/gettext
51 +"
52 +
53 +python_check_deps() {
54 + has_version "dev-libs/libxml2[${PYTHON_USEDEP}]"
55 +}
56 +
57 +src_configure() {
58 + econf --without-gimp
59 +}
60 +
61 +src_compile() {
62 + # see https://bugs.gentoo.org/677198
63 + emake -j 1
64 +}