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 0088D1382C5 for ; Wed, 20 May 2020 22:18:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CBABE0A85; Wed, 20 May 2020 22:18:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 235D5E0A85 for ; Wed, 20 May 2020 22:18:07 +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 22FD434F2BC for ; Wed, 20 May 2020 22:18:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5E79257 for ; Wed, 20 May 2020 22:18:04 +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: <1590013072.b137168024a19fafb2885c4916aed9d9b50064eb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qtagger/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild X-VCS-Directories: media-sound/qtagger/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b137168024a19fafb2885c4916aed9d9b50064eb X-VCS-Branch: master Date: Wed, 20 May 2020 22:18:04 +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: b762a8aa-4eb0-402b-935c-08158e692654 X-Archives-Hash: 8287faaf9427d6db5afac9722e17da59 commit: b137168024a19fafb2885c4916aed9d9b50064eb Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 20 21:48:00 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 20 22:17:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1371680 media-sound/qtagger: EAPI-7 bump, switch to cmake, missing DEPEND Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild b/media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild index 460a0e65440..f85a7a431ed 100644 --- a/media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild +++ b/media-sound/qtagger/qtagger-1.0.1_p20150402.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 CMAKE_MAKEFILE_GENERATOR="emake" COMMIT=0e74fe022ddbb689f7bae0460a21be303114029b -inherit cmake-utils qmake-utils vcs-snapshot +inherit cmake qmake-utils DESCRIPTION="Simple Qt5 ID3v2 tag editor" HOMEPAGE="https://github.com/DOOMer/qtagger" @@ -16,6 +16,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" +BDEPEND="dev-qt/linguist-tools:5" DEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 @@ -24,12 +25,14 @@ DEPEND=" " RDEPEND="${DEPEND}" +S="${WORKDIR}/${PN}-${COMMIT}" + src_prepare() { # fix doc installation path sed -i -e "s/doc\/${PN}/doc\/${PF}/" CMakeLists.txt || die sed -i -e "s/share%1doc%1qtagger/share%1doc%1${PF}/" src/mainwindow.cpp || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -37,11 +40,11 @@ src_configure() { -DCMAKE_NO_BUILTIN_CHRPATH:BOOL=ON -DQT_LRELEASE_EXECUTABLE=$(qt5_get_bindir)/lrelease ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install rm "${ED}"/usr/share/doc/${PF}/LICENSE || die }