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 54C6A15808B for ; Sun, 10 Apr 2022 12:36:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73C4DE09CA; Sun, 10 Apr 2022 12:35:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 248B1E0964 for ; Sun, 10 Apr 2022 12:35:49 +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 DEB9734154C for ; Sun, 10 Apr 2022 12:35:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57B9F3AF for ; Sun, 10 Apr 2022 12:35:45 +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: <1649506792.27a7384c4c9299ee4854d9da2bacab66b8343953.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-fps/assaultcube/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-fps/assaultcube/assaultcube-1.3.0.2.ebuild X-VCS-Directories: games-fps/assaultcube/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 27a7384c4c9299ee4854d9da2bacab66b8343953 X-VCS-Branch: master Date: Sun, 10 Apr 2022 12:35:45 +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: 9c17d25f-ae83-4cea-b911-e3c535f8bfc6 X-Archives-Hash: 38e74a5cebcd4b0561bff9ac0c3780f2 commit: 27a7384c4c9299ee4854d9da2bacab66b8343953 Author: Duje Mihanović skole hr> AuthorDate: Sat Apr 9 12:19:52 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sat Apr 9 12:19:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=27a7384c games-fps/assaultcube: replace eapply{,user} with default Again, thanks to thesamesam for reporting this. Signed-off-by: Duje Mihanović skole.hr> games-fps/assaultcube/assaultcube-1.3.0.2.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/games-fps/assaultcube/assaultcube-1.3.0.2.ebuild b/games-fps/assaultcube/assaultcube-1.3.0.2.ebuild index d66c888b2..ef8e8f81f 100644 --- a/games-fps/assaultcube/assaultcube-1.3.0.2.ebuild +++ b/games-fps/assaultcube/assaultcube-1.3.0.2.ebuild @@ -22,14 +22,13 @@ RDEPEND="sys-libs/zlib DEPEND="${RDEPEND}" BDEPEND="sys-devel/clang" PATCHES=( - "${FILESDIR}/assaultcube-1.3.0.2-respect-ldflags.patch - ${FILESDIR}/assaultcube-1.3.0.2-fix-checkinstall.patch" # a script which checks for required libs and certain parts of the game + "${FILESDIR}/assaultcube-1.3.0.2-respect-ldflags.patch" + "${FILESDIR}/assaultcube-1.3.0.2-fix-checkinstall.patch" # a script which checks for required libs and certain parts of the game ) IUSE="debug" src_prepare() { - eapply ${PATCHES} - eapply_user + default sed -i 's|//#define PRODUCTION|#define PRODUCTION|' "${S}/source/src/cube.h" }