From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1552899-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 9A0F1158089
	for <garchives@archives.gentoo.org>; Fri,  8 Sep 2023 07:40:21 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D411D2BC022;
	Fri,  8 Sep 2023 07:40:20 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(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 pigeon.gentoo.org (Postfix) with ESMTPS id BA8F62BC022
	for <gentoo-commits@lists.gentoo.org>; Fri,  8 Sep 2023 07:40:20 +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 AAD16335C8E
	for <gentoo-commits@lists.gentoo.org>; Fri,  8 Sep 2023 07:40:19 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F5D0113F
	for <gentoo-commits@lists.gentoo.org>; Fri,  8 Sep 2023 07:40:18 +0000 (UTC)
From: "Adam Pimentel" <adam.pimentel@protonmail.com>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Adam Pimentel" <adam.pimentel@protonmail.com>
Message-ID: <1694158792.c016fb574a357f095a91401bab286d6fd11a6655.adam.pimentel@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/p2pool/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: net-p2p/p2pool/p2pool-3.6.2.ebuild
X-VCS-Directories: net-p2p/p2pool/
X-VCS-Committer: adam.pimentel
X-VCS-Committer-Name: Adam Pimentel
X-VCS-Revision: c016fb574a357f095a91401bab286d6fd11a6655
X-VCS-Branch: dev
Date: Fri,  8 Sep 2023 07:40:18 +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: 04f8015d-f08f-48f2-bab6-bdbf84415e30
X-Archives-Hash: 46bdfb3afee4ceffc791cd748e12d544

commit:     c016fb574a357f095a91401bab286d6fd11a6655
Author:     Adam Pimentel <adam.pimentel <AT> protonmail <DOT> com>
AuthorDate: Fri Sep  8 07:39:52 2023 +0000
Commit:     Adam Pimentel <adam.pimentel <AT> protonmail <DOT> com>
CommitDate: Fri Sep  8 07:39:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c016fb57

net-p2p/p2pool: disable built-in randomx

Signed-off-by: Adam Pimentel <adam.pimentel <AT> protonmail.com>

 net-p2p/p2pool/p2pool-3.6.2.ebuild | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/net-p2p/p2pool/p2pool-3.6.2.ebuild b/net-p2p/p2pool/p2pool-3.6.2.ebuild
index ea749c1ebb..5bf25e9f96 100644
--- a/net-p2p/p2pool/p2pool-3.6.2.ebuild
+++ b/net-p2p/p2pool/p2pool-3.6.2.ebuild
@@ -33,6 +33,14 @@ src_prepare() {
 	cmake_src_prepare
 }
 
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_RANDOMX=OFF
+	)
+	
+	cmake_src_configure
+}
+
 src_install(){
 	dobin "${BUILD_DIR}/p2pool"
 }