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 514EB13835A for ; Thu, 21 May 2020 09:17:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DFDCE088D; Thu, 21 May 2020 09:17:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 39AF6E088D for ; Thu, 21 May 2020 09:17:33 +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 E862234F6FC for ; Thu, 21 May 2020 09:17:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5692F256 for ; Thu, 21 May 2020 09:17:30 +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: <1590052639.d1cbdcc5fde38398eb2f7c27440aad6b590ab87a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/mathmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/mathmod/mathmod-4.1-r1.ebuild X-VCS-Directories: sci-mathematics/mathmod/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d1cbdcc5fde38398eb2f7c27440aad6b590ab87a X-VCS-Branch: master Date: Thu, 21 May 2020 09:17:30 +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: fff6d058-ece1-4674-95ae-aa0e911c165c X-Archives-Hash: 6df8ba8b93456d2f82a456a5025d25af commit: d1cbdcc5fde38398eb2f7c27440aad6b590ab87a Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 21 09:16:57 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 21 09:17:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cbdcc5 sci-mathematics/mathmod: EAPI-7, missing deps, fdo-mime--, xdg-utils Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-mathematics/mathmod/mathmod-4.1-r1.ebuild | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/sci-mathematics/mathmod/mathmod-4.1-r1.ebuild b/sci-mathematics/mathmod/mathmod-4.1-r1.ebuild index bdfb57706c6..fcf1e631ed4 100644 --- a/sci-mathematics/mathmod/mathmod-4.1-r1.ebuild +++ b/sci-mathematics/mathmod/mathmod-4.1-r1.ebuild @@ -1,18 +1,24 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit eutils gnome2-utils qmake-utils fdo-mime +EAPI=7 + +inherit desktop qmake-utils xdg-utils DESCRIPTION="Plot parametric and implicit surfaces" HOMEPAGE="https://www.facebook.com/pages/MathMod/529510253833102" SRC_URI="mirror://sourceforge/${PN}/${P}.src.zip" + LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="dev-qt/qtwidgets:5 dev-qt/qtopengl:5" +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtwidgets:5" DEPEND="${RDEPEND}" S="${WORKDIR}"/${PN}-branches-274-trunk @@ -33,11 +39,11 @@ src_install() { } pkg_postinst() { - gnome2_icon_cache_update - fdo-mime_desktop_database_update + xdg_icon_cache_update + xdg_desktop_database_update } pkg_postrm() { - gnome2_icon_cache_update - fdo-mime_desktop_database_update + xdg_icon_cache_update + xdg_desktop_database_update }