From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1177097-garchives=archives.gentoo.org@lists.gentoo.org> 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 D65D31382C5 for <garchives@archives.gentoo.org>; Thu, 4 Jun 2020 20:07:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12A21E0898; Thu, 4 Jun 2020 20:07:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CAEB5E0898 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jun 2020 20:07:47 +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 AB75834EF85 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jun 2020 20:07:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09360268 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jun 2020 20:07:42 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1591301242.b1a4cb71d3b40a398ebca2d76e521643ce31b5ee.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/musicbrainz/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/musicbrainz/musicbrainz-5.1.0.ebuild X-VCS-Directories: media-libs/musicbrainz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b1a4cb71d3b40a398ebca2d76e521643ce31b5ee X-VCS-Branch: master Date: Thu, 4 Jun 2020 20:07:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0657967a-034c-4dbf-bc20-1b8708a34a97 X-Archives-Hash: f4ba9020330bb802bc53f8ad16d59360 commit: b1a4cb71d3b40a398ebca2d76e521643ce31b5ee Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Thu Jun 4 20:06:59 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Jun 4 20:07:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a4cb71 media-libs/musicbrainz: EAPI-7 bump, switch to cmake.eclass Drop obsolete c++14 flag Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> media-libs/musicbrainz/musicbrainz-5.1.0.ebuild | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild b/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild index 25b005bc1bd..fb349000f07 100644 --- a/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild +++ b/media-libs/musicbrainz/musicbrainz-5.1.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils flag-o-matic +inherit cmake DESCRIPTION="Client Library for accessing the latest XML based MusicBrainz web service" HOMEPAGE="https://musicbrainz.org/doc/libmusicbrainz" @@ -13,6 +13,7 @@ LICENSE="LGPL-2.1" SLOT="5/1" # soname of libmusicbrainz5.so KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="examples test" + RESTRICT="!test? ( test )" RDEPEND=" @@ -29,18 +30,11 @@ PATCHES=( "${FILESDIR}/${P}-no-wildcards.patch" ) src_prepare() { use test || cmake_comment_add_subdirectory tests - cmake-utils_src_prepare -} - -src_configure() { - # bug 619668 - append-cxxflags -std=c++14 - - cmake-utils_src_configure + cmake_src_prepare } src_install() { - cmake-utils_src_install + cmake_src_install if use examples; then docinto examples