Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xiphos/
Date: Thu, 30 Jun 2022 09:02:05
Message-Id: 1656579707.afac1af1f7b322179f046dade14e7e13235bd399.marecki@gentoo
1 commit: afac1af1f7b322179f046dade14e7e13235bd399
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 08:13:34 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 09:01:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afac1af1
7
8 app-text/xiphos: drop 4.2.1
9
10 This removes the last gnome-extra/gtkhtml revdep from the tree.
11
12 Bug: https://bugs.gentoo.org/667914
13 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
14
15 app-text/xiphos/xiphos-4.2.1.ebuild | 64 -------------------------------------
16 1 file changed, 64 deletions(-)
17
18 diff --git a/app-text/xiphos/xiphos-4.2.1.ebuild b/app-text/xiphos/xiphos-4.2.1.ebuild
19 deleted file mode 100644
20 index a5bdd72a9066..000000000000
21 --- a/app-text/xiphos/xiphos-4.2.1.ebuild
22 +++ /dev/null
23 @@ -1,64 +0,0 @@
24 -# Copyright 1999-2022 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit cmake xdg-utils
30 -
31 -DESCRIPTION="A Gtk+-based Bible-study frontend for SWORD"
32 -HOMEPAGE="https://xiphos.org/"
33 -SRC_URI="https://github.com/crosswire/${PN}/releases/download/${PV}/${P}.tar.xz"
34 -
35 -LICENSE="GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1"
36 -SLOT="0"
37 -KEYWORDS="amd64"
38 -IUSE="dbus debug"
39 -
40 -COMMON="sys-apps/util-linux
41 - dev-libs/libxml2
42 - dev-libs/libxslt
43 - dbus? ( dev-libs/dbus-glib )"
44 -RDEPEND="${COMMON}
45 - >=app-text/sword-1.8.1
46 - dev-libs/glib:2
47 - dev-libs/icu
48 - gnome-extra/gtkhtml:4.0
49 - >=net-libs/biblesync-1.2.0
50 - net-libs/webkit-gtk:4
51 - sys-libs/zlib[minizip]
52 - x11-libs/gtk+:3"
53 -DEPEND="${RDEPEND}"
54 -BDEPEND="${COMMON}
55 - app-arch/zip
56 - app-text/yelp-tools
57 - dev-libs/appstream-glib
58 - dev-util/desktop-file-utils
59 - dev-util/glib-utils
60 - dev-util/itstool
61 - virtual/pkgconfig"
62 -
63 -PATCHES=(
64 - "${FILESDIR}"/${PN}-4.2.1-appdata_metainfo.patch
65 - "${FILESDIR}"/${PN}-4.2.1-glib_version_min_required.patch
66 -)
67 -
68 -src_configure() {
69 - # TODO: stop using gtkhtml, it is deprecated (Bug #667914). However, as
70 - # of 4.2.1 it is still required because the WebKit-based editor
71 - # does not support webkit-gtk:4.
72 - local mycmakeargs=(
73 - -DDBUS=$(usex dbus)
74 - -DDEBUG=$(usex debug)
75 - -DGTKHTML=on
76 - -DPOSTINST=off
77 - )
78 - cmake_src_configure
79 -}
80 -
81 -pkg_postinst() {
82 - xdg_icon_cache_update
83 -}
84 -
85 -pkg_postrm() {
86 - xdg_icon_cache_update
87 -}