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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6361B158003 for ; Fri, 9 Sep 2022 07:59:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5433DE091B; Fri, 9 Sep 2022 07:59:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 404BBE091B for ; Fri, 9 Sep 2022 07:59:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 663193407E6 for ; Fri, 9 Sep 2022 07:59:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 966895D4 for ; Fri, 9 Sep 2022 07:59:39 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1662710347.21e54323d127e6518fcfb490b73a67dbd44c54ac.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tinyxml2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/tinyxml2/tinyxml2-9.0.0-r1.ebuild dev-libs/tinyxml2/tinyxml2-9.0.0.ebuild X-VCS-Directories: dev-libs/tinyxml2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 21e54323d127e6518fcfb490b73a67dbd44c54ac X-VCS-Branch: master Date: Fri, 9 Sep 2022 07:59:39 +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: e7305cef-24fd-4f7b-819f-2881c7ba07ec X-Archives-Hash: 3251fccace2efcf40e7125ee433f5fea commit: 21e54323d127e6518fcfb490b73a67dbd44c54ac Author: Sam James gentoo org> AuthorDate: Fri Sep 9 07:59:07 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Sep 9 07:59:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e54323 dev-libs/tinyxml2: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> .../{tinyxml2-9.0.0.ebuild => tinyxml2-9.0.0-r1.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-libs/tinyxml2/tinyxml2-9.0.0.ebuild b/dev-libs/tinyxml2/tinyxml2-9.0.0-r1.ebuild similarity index 82% rename from dev-libs/tinyxml2/tinyxml2-9.0.0.ebuild rename to dev-libs/tinyxml2/tinyxml2-9.0.0-r1.ebuild index 9299951c20bf..77637717145c 100644 --- a/dev-libs/tinyxml2/tinyxml2-9.0.0.ebuild +++ b/dev-libs/tinyxml2/tinyxml2-9.0.0-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit cmake-multilib +inherit cmake DESCRIPTION="A simple, small, efficient, C++ XML parser" HOMEPAGE="http://www.grinninglizard.com/tinyxml2/ https://github.com/leethomason/tinyxml2/" @@ -15,7 +15,10 @@ KEYWORDS="amd64 arm arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv sparc x86" IUSE="test" RESTRICT="!test? ( test )" -multilib_src_configure() { - local mycmakeargs=( -DBUILD_TESTING=$(usex test) ) +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + cmake_src_configure }