From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1371127-garchives=archives.gentoo.org@lists.gentoo.org> 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 D3E3A15808B for <garchives@archives.gentoo.org>; Sat, 26 Feb 2022 19:53:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF775E08CD; Sat, 26 Feb 2022 19:53:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D59E8E08CD for <gentoo-commits@lists.gentoo.org>; Sat, 26 Feb 2022 19:53:52 +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 0F0CA343257 for <gentoo-commits@lists.gentoo.org>; Sat, 26 Feb 2022 19:53:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E6FD2F9 for <gentoo-commits@lists.gentoo.org>; Sat, 26 Feb 2022 19:53:50 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1645905217.5214925f943e0722ad4d3b150a9dd606823e7bd6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/openmesh/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/openmesh/openmesh-7.1-r1.ebuild media-gfx/openmesh/openmesh-7.1.ebuild X-VCS-Directories: media-gfx/openmesh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5214925f943e0722ad4d3b150a9dd606823e7bd6 X-VCS-Branch: master Date: Sat, 26 Feb 2022 19:53:50 +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: 3278e818-3e72-49af-9fc3-0d783c1549c5 X-Archives-Hash: 5d987f9e767729beb543ee7c88f7a687 commit: 5214925f943e0722ad4d3b150a9dd606823e7bd6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Feb 26 19:43:29 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Feb 26 19:53:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5214925f media-gfx/openmesh: update EAPI 6 -> 8 Signed-off-by: Sam James <sam <AT> gentoo.org> .../openmesh/{openmesh-7.1.ebuild => openmesh-7.1-r1.ebuild} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/media-gfx/openmesh/openmesh-7.1.ebuild b/media-gfx/openmesh/openmesh-7.1-r1.ebuild similarity index 86% rename from media-gfx/openmesh/openmesh-7.1.ebuild rename to media-gfx/openmesh/openmesh-7.1-r1.ebuild index 19b09a04fb5a..4f02e9b682d2 100644 --- a/media-gfx/openmesh/openmesh-7.1.ebuild +++ b/media-gfx/openmesh/openmesh-7.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit cmake-utils +inherit cmake MY_PN="OpenMesh" MY_PV="${PV/_rc/-RC}" @@ -33,7 +33,7 @@ DEPEND="${RDEPEND} " src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # Fix libdir and remove rpath. sed -i \ @@ -57,10 +57,10 @@ src_configure() { -DOPENMESH_BUILD_UNIT_TESTS=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure } src_test() { cd "${BUILD_DIR}" || die - LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${BUILD_DIR}/Build/$(get_libdir) ctest --verbose + LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/Build/$(get_libdir)" cmake_src_test --verbose }