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 1BD14138350 for ; Sun, 5 Apr 2020 11:01:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B162E0A0B; Sun, 5 Apr 2020 11:01:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 41A76E0A0B for ; Sun, 5 Apr 2020 11:01:17 +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 4FD3934EEE2 for ; Sun, 5 Apr 2020 11:01:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E26861B9 for ; Sun, 5 Apr 2020 11:01:14 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1586035384.84e64b141cad19839c7757b79630866a1b8d821b.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-arcade/opensurge/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-arcade/opensurge/opensurge-0.5.0_p1.ebuild games-arcade/opensurge/opensurge-9999.ebuild X-VCS-Directories: games-arcade/opensurge/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 84e64b141cad19839c7757b79630866a1b8d821b X-VCS-Branch: master Date: Sun, 5 Apr 2020 11:01:14 +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: 2ece2919-1cc0-4fda-99e3-4d2c81e9f21c X-Archives-Hash: 6acbd7261b7ff47d19418f6d8fe8e513 commit: 84e64b141cad19839c7757b79630866a1b8d821b Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sat Apr 4 21:23:04 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 4 21:23:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84e64b14 games-arcade/opensurge: Move from cmake-utils to cmake Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> games-arcade/opensurge/opensurge-0.5.0_p1.ebuild | 8 ++++---- games-arcade/opensurge/opensurge-9999.ebuild | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild index 8105565..071f9fa 100644 --- a/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild +++ b/games-arcade/opensurge/opensurge-0.5.0_p1.ebuild @@ -1,9 +1,9 @@ -# Copyright 2019 Gentoo Authors +# Copyright 2019-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils +inherit cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -38,7 +38,7 @@ src_prepare() { sed -i '/INSTALL(TARGETS "${GAME_UNIXNAME}" /s/"${CMAKE_INSTALL_PREFIX}/\0\/bin/' \ CMakeLists.txt || die "Failed fixing executable target" - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -47,5 +47,5 @@ src_configure() { -DCMAKE_INSTALL_PREFIX="/usr" ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/games-arcade/opensurge/opensurge-9999.ebuild b/games-arcade/opensurge/opensurge-9999.ebuild index da9d296..e56fc30 100644 --- a/games-arcade/opensurge/opensurge-9999.ebuild +++ b/games-arcade/opensurge/opensurge-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2019 Gentoo Authors +# Copyright 2019-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils +inherit cmake MY_PV="${PV/_/-}"