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 AB961138335 for ; Fri, 15 Feb 2019 23:08:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1DC2E08A6; Fri, 15 Feb 2019 23:07:56 +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 88668E08A6 for ; Fri, 15 Feb 2019 23:07:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 37134335CEC for ; Fri, 15 Feb 2019 23:07:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1139754C for ; Fri, 15 Feb 2019 23:07:52 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1550272053.2e788870da80fc4f38ec90df61844f0a383391d7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/quiterss/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/quiterss/quiterss-9999.ebuild X-VCS-Directories: net-news/quiterss/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2e788870da80fc4f38ec90df61844f0a383391d7 X-VCS-Branch: master Date: Fri, 15 Feb 2019 23:07:52 +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: 8f2bc5e0-3a0d-40cc-b98d-b647f1da61fe X-Archives-Hash: 4218ea24480090d571b3a09af893afd3 commit: 2e788870da80fc4f38ec90df61844f0a383391d7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Feb 15 22:30:25 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 15 23:07:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e788870 net-news/quiterss: Switch from gnome2-utils to xdg, EAPI-7 bump Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> net-news/quiterss/quiterss-9999.ebuild | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/net-news/quiterss/quiterss-9999.ebuild b/net-news/quiterss/quiterss-9999.ebuild index 2f26f2b7e33..af15f832bbd 100644 --- a/net-news/quiterss/quiterss-9999.ebuild +++ b/net-news/quiterss/quiterss-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit gnome2-utils qmake-utils xdg-utils +inherit qmake-utils xdg DESCRIPTION="A Qt-based RSS/Atom feed reader" HOMEPAGE="https://quiterss.org" @@ -20,7 +20,10 @@ LICENSE="GPL-3" SLOT="0" IUSE="" -RDEPEND=" +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" >=dev-db/sqlite-3.11.1:3 dev-qt/qtcore:5 dev-qt/qtgui:5 @@ -33,15 +36,13 @@ RDEPEND=" dev-qt/qtwidgets:5 dev-qt/qtxml:5 " -DEPEND="${RDEPEND} - virtual/pkgconfig -" +RDEPEND="${DEPEND}" DOCS=( AUTHORS CHANGELOG README.md ) src_configure() { local myqmakeargs=( - PREFIX="${EPREFIX%/}/usr" + PREFIX="${EPREFIX}/usr" SYSTEMQTSA=1 ) eqmake5 "${myqmakeargs[@]}" @@ -51,13 +52,3 @@ src_install() { emake INSTALL_ROOT="${D}" install einstalldocs } - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update -}