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 4B03E15808B for ; Sat, 9 Apr 2022 12:22:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52383E0848; Sat, 9 Apr 2022 12:22:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 76C49E0848 for ; Sat, 9 Apr 2022 12:22:45 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28816341410 for ; Sat, 9 Apr 2022 12:22:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86E3C391 for ; Sat, 9 Apr 2022 12:22:42 +0000 (UTC) From: "Duje Mihanović" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Duje Mihanović" Message-ID: <1649506792.27a7384c4c9299ee4854d9da2bacab66b8343953.duje.mihanovic@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: duje.mihanovic X-VCS-Committer-Name: Duje Mihanović X-VCS-Revision: 27a7384c4c9299ee4854d9da2bacab66b8343953 X-VCS-Branch: dev Date: Sat, 9 Apr 2022 12:22:42 +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: 3ee7c87f-1a1e-416a-be31-22686a643942 X-Archives-Hash: f648df803c97f053a9a3a754d2b773f6 commit: 27a7384c4c9299ee4854d9da2bacab66b8343953 Author: Duje Mihanović skole hr> AuthorDate: Sat Apr 9 12:19:52 2022 +0000 Commit: Duje Mihanović skole hr> 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" }