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 AA480138334 for ; Sun, 30 Jun 2019 12:37:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66F99E088A; Sun, 30 Jun 2019 12:37:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4DE64E088A for ; Sun, 30 Jun 2019 12:37:08 +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 298E1346D1F for ; Sun, 30 Jun 2019 12:37:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D268618 for ; Sun, 30 Jun 2019 12:37:03 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1561898207.96409616430ab2063296de939c6c8d31d9664685.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mkvtoolnix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild X-VCS-Directories: media-video/mkvtoolnix/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 96409616430ab2063296de939c6c8d31d9664685 X-VCS-Branch: master Date: Sun, 30 Jun 2019 12:37:03 +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: 79ff2ea6-f610-41f2-937e-34b3a12f1a13 X-Archives-Hash: f0521789524279c5eb59f892e44784f0 commit: 96409616430ab2063296de939c6c8d31d9664685 Author: Pacho Ramos gentoo org> AuthorDate: Sun Jun 30 12:30:12 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jun 30 12:36:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96409616 media-video/mkvtoolnix: Newer libfmt needed, use xdg.eclass Closes: https://bugs.gentoo.org/688620 Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Pacho Ramos gentoo.org> media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild b/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild index 8837542e21d..67e541fbc01 100644 --- a/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild +++ b/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit toolchain-funcs versionator multiprocessing xdg-utils qmake-utils gnome2-utils +inherit toolchain-funcs versionator multiprocessing qmake-utils xdg if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://gitlab.com/mbunkus/mkvtoolnix.git" @@ -22,7 +22,7 @@ IUSE="debug nls pch test qt5" # check NEWS.md for build system changes entries for boost/libebml/libmatroska # version requirement updates and other packaging info RDEPEND=" - dev-libs/libfmt:= + >=dev-libs/libfmt-5.3.0:= >=dev-libs/boost-1.49.0:= >=dev-libs/libebml-1.3.7:= dev-libs/pugixml @@ -70,7 +70,7 @@ pkg_pretend() { } src_prepare() { - default + xdg_src_prepare [[ ${PV} == "9999" ]] && { ./autogen.sh || die; } } @@ -116,15 +116,3 @@ src_install() { einstalldocs doman doc/man/*.1 } - -pkg_postrm() { - xdg_mimeinfo_database_update - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postinst() { - xdg_mimeinfo_database_update - xdg_desktop_database_update - gnome2_icon_cache_update -}