Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/yelp/
Date: Fri, 23 Sep 2022 04:12:44
Message-Id: 1663905815.b6f5e243e40d4d4a1c3796acafb4ad50b2fbb968.mattst88@gentoo
1 commit: b6f5e243e40d4d4a1c3796acafb4ad50b2fbb968
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 15:12:31 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 04:03:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6f5e243
7
8 gnome-extra/yelp: Version bump to 42.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/yelp/Manifest | 1 +
13 gnome-extra/yelp/yelp-42.2.ebuild | 58 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 59 insertions(+)
15
16 diff --git a/gnome-extra/yelp/Manifest b/gnome-extra/yelp/Manifest
17 index 35fbec65c029..11d14c22b404 100644
18 --- a/gnome-extra/yelp/Manifest
19 +++ b/gnome-extra/yelp/Manifest
20 @@ -1 +1,2 @@
21 DIST yelp-42.1.tar.xz 1512620 BLAKE2B a0ba02a560c19e516c42f77a34f3296dd6dd9d3dba9b34b2243a2c7689b7117cd82dea8e169ec7001ba15860c74f1c7ace061094516391b38f5054b566e613b2 SHA512 3c8150503e828c8d2994b7af6f7c673b696b01f4a82abcbbc0395909a0e0eb2d64a9e445a5b1683a0c9aa0abc7040cc563917e55b126879ce7c4dda117bbf3db
22 +DIST yelp-42.2.tar.xz 1506136 BLAKE2B dbde815af6902eebae0e6dcdb12e0e0c8981fa64608e6ba3c8950b908b13981c335011ee2e2240e8a96c4aff3f8b682d630ea34215918374e231220eb87e0f2b SHA512 7fd8da347b3cdb9b24a31eebe14c4964c5e41956caa2b79e70d6ea0c829d94f8428bbd96a2472c02d56673ca0ed1c75f7c6f874a59c4eea0b1440918a99969f4
23
24 diff --git a/gnome-extra/yelp/yelp-42.2.ebuild b/gnome-extra/yelp/yelp-42.2.ebuild
25 new file mode 100644
26 index 000000000000..db120a9de577
27 --- /dev/null
28 +++ b/gnome-extra/yelp/yelp-42.2.ebuild
29 @@ -0,0 +1,58 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +GNOME2_EAUTORECONF="yes"
35 +
36 +inherit gnome2
37 +
38 +DESCRIPTION="Help browser for GNOME"
39 +HOMEPAGE="https://wiki.gnome.org/Apps/Yelp"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
44 +
45 +RDEPEND="
46 + app-arch/bzip2:=
47 + >=app-arch/xz-utils-4.9:=
48 + dev-db/sqlite:3=
49 + >=dev-libs/glib-2.67.4:2
50 + >=dev-libs/libxml2-2.6.5:2
51 + >=dev-libs/libxslt-1.1.4
52 + >=gnome-extra/yelp-xsl-41.0
53 + >=net-libs/webkit-gtk-2.19.2:4
54 + >=x11-libs/gtk+-3.13.3:3
55 + >=gui-libs/libhandy-1.5.0:1
56 + x11-themes/adwaita-icon-theme
57 +"
58 +DEPEND="${RDEPEND}"
59 +BDEPEND="
60 + dev-libs/appstream-glib
61 + >=dev-util/gtk-doc-am-1.13
62 + dev-util/glib-utils
63 + dev-util/itstool
64 + >=sys-devel/gettext-0.19.8
65 + virtual/pkgconfig
66 +"
67 +
68 +PATCHES=(
69 + # Fix compatibility with Gentoo's sys-apps/man
70 + # https://bugzilla.gnome.org/show_bug.cgi?id=648854
71 + "${FILESDIR}"/${PN}-3.20.0-man-compatibility.patch # needs eautoreconf
72 +)
73 +
74 +src_configure() {
75 + gnome2_src_configure \
76 + --disable-static \
77 + --with-webkit2gtk-4-0 \
78 + --enable-bz2 \
79 + --enable-lzma \
80 + APPSTREAM_UTIL=$(type -P true)
81 +}
82 +
83 +src_install() {
84 + gnome2_src_install
85 + exeinto /usr/libexec/
86 + doexe "${S}"/libyelp/yelp-groff
87 +}