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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B50C7138334 for ; Wed, 13 Mar 2019 14:31:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AFD8E08CE; Wed, 13 Mar 2019 14:31:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74A3AE08CE for ; Wed, 13 Mar 2019 14:31:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B9CF335D01 for ; Wed, 13 Mar 2019 14:31:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BDCB569 for ; Wed, 13 Mar 2019 14:31:29 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1552487478.969af26cb901ff1c0de5e1b4e3b1dd23684bf47c.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/hexchat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/hexchat/hexchat-9999.ebuild X-VCS-Directories: net-irc/hexchat/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 969af26cb901ff1c0de5e1b4e3b1dd23684bf47c X-VCS-Branch: master Date: Wed, 13 Mar 2019 14:31:29 +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: d9a18e80-c4e0-4e39-8163-fe8e6ba10efa X-Archives-Hash: 443aa18b22238d013f8b7c67824f592b commit: 969af26cb901ff1c0de5e1b4e3b1dd23684bf47c Author: Lars Wendler gentoo org> AuthorDate: Wed Mar 13 14:29:43 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Mar 13 14:31:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969af26c net-irc/hexchat: Bumped live ebuild to EAPI-7 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> net-irc/hexchat/hexchat-9999.ebuild | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/net-irc/hexchat/hexchat-9999.ebuild b/net-irc/hexchat/hexchat-9999.ebuild index 7ef4db04615..1b4f2fa6067 100644 --- a/net-irc/hexchat/hexchat-9999.ebuild +++ b/net-irc/hexchat/hexchat-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_{4,5,6,7} ) -inherit gnome2-utils meson mono-env python-single-r1 xdg-utils +inherit meson mono-env python-single-r1 xdg DESCRIPTION="Graphical IRC client based on XChat" HOMEPAGE="https://hexchat.github.io/" @@ -24,7 +24,7 @@ SLOT="0" IUSE="dbus debug +gtk libcanberra libnotify libproxy libressl lua perl plugin-checksum plugin-fishlim plugin-sysinfo python ssl theme-manager" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -COMMON_DEPEND=" +RDEPEND=" dev-libs/glib:2 dbus? ( dev-libs/dbus-glib ) gtk? ( @@ -51,9 +51,8 @@ COMMON_DEPEND=" ) )" -RDEPEND="${COMMON_DEPEND}" -DEPEND=" - ${COMMON_DEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/glib-utils app-arch/xz-utils app-text/iso-codes @@ -100,15 +99,13 @@ src_install() { pkg_preinst() { if use gtk ; then - gnome2_icon_savelist + xdg_pkg_preinst fi } pkg_postinst() { if use gtk ; then - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update + xdg_pkg_postinst else elog "You have disabled the gtk USE flag. This means you don't have" elog "the GTK-GUI for HexChat but only a text interface called \"hexchat-text\"." @@ -130,8 +127,6 @@ pkg_postinst() { pkg_postrm() { if use gtk ; then - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update + xdg_pkg_postrm fi }