From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 03EEF158094 for ; Thu, 30 Jun 2022 09:02:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D178E0B09; Thu, 30 Jun 2022 09:02:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0B9BE0AEF for ; Thu, 30 Jun 2022 09:02:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B702234194A for ; Thu, 30 Jun 2022 09:02:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A8C451E for ; Thu, 30 Jun 2022 09:02:01 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1656579707.afac1af1f7b322179f046dade14e7e13235bd399.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xiphos/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xiphos/xiphos-4.2.1.ebuild X-VCS-Directories: app-text/xiphos/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: afac1af1f7b322179f046dade14e7e13235bd399 X-VCS-Branch: master Date: Thu, 30 Jun 2022 09:02:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b4b5d5fc-4c16-4802-a909-3277d4e1c128 X-Archives-Hash: eb3aee528a8dee93a9df1efd44ad4d8c commit: afac1af1f7b322179f046dade14e7e13235bd399 Author: Marek Szuba gentoo org> AuthorDate: Thu Jun 30 08:13:34 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Jun 30 09:01:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afac1af1 app-text/xiphos: drop 4.2.1 This removes the last gnome-extra/gtkhtml revdep from the tree. Bug: https://bugs.gentoo.org/667914 Signed-off-by: Marek Szuba gentoo.org> app-text/xiphos/xiphos-4.2.1.ebuild | 64 ------------------------------------- 1 file changed, 64 deletions(-) diff --git a/app-text/xiphos/xiphos-4.2.1.ebuild b/app-text/xiphos/xiphos-4.2.1.ebuild deleted file mode 100644 index a5bdd72a9066..000000000000 --- a/app-text/xiphos/xiphos-4.2.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake xdg-utils - -DESCRIPTION="A Gtk+-based Bible-study frontend for SWORD" -HOMEPAGE="https://xiphos.org/" -SRC_URI="https://github.com/crosswire/${PN}/releases/download/${PV}/${P}.tar.xz" - -LICENSE="GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1" -SLOT="0" -KEYWORDS="amd64" -IUSE="dbus debug" - -COMMON="sys-apps/util-linux - dev-libs/libxml2 - dev-libs/libxslt - dbus? ( dev-libs/dbus-glib )" -RDEPEND="${COMMON} - >=app-text/sword-1.8.1 - dev-libs/glib:2 - dev-libs/icu - gnome-extra/gtkhtml:4.0 - >=net-libs/biblesync-1.2.0 - net-libs/webkit-gtk:4 - sys-libs/zlib[minizip] - x11-libs/gtk+:3" -DEPEND="${RDEPEND}" -BDEPEND="${COMMON} - app-arch/zip - app-text/yelp-tools - dev-libs/appstream-glib - dev-util/desktop-file-utils - dev-util/glib-utils - dev-util/itstool - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-4.2.1-appdata_metainfo.patch - "${FILESDIR}"/${PN}-4.2.1-glib_version_min_required.patch -) - -src_configure() { - # TODO: stop using gtkhtml, it is deprecated (Bug #667914). However, as - # of 4.2.1 it is still required because the WebKit-based editor - # does not support webkit-gtk:4. - local mycmakeargs=( - -DDBUS=$(usex dbus) - -DDEBUG=$(usex debug) - -DGTKHTML=on - -DPOSTINST=off - ) - cmake_src_configure -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}