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 3F412158020 for ; Sat, 10 Dec 2022 07:56:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33AE3E07D8; Sat, 10 Dec 2022 07:56:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AB96E07D8 for ; Sat, 10 Dec 2022 07:56:47 +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 DA88C341159 for ; Sat, 10 Dec 2022 07:56:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D32154C for ; Sat, 10 Dec 2022 07:56:45 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1670658923.3c50f669432bad09c6c469d78f6d6889853a8010.ceamac@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-2.6-r1.ebuild net-p2p/p2pool/p2pool-9999.ebuild X-VCS-Directories: net-p2p/p2pool/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 3c50f669432bad09c6c469d78f6d6889853a8010 X-VCS-Branch: dev Date: Sat, 10 Dec 2022 07:56: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: 898773c0-bcf4-45ee-976b-4d6d745b5046 X-Archives-Hash: 302bdaf81e905884f23008c4e5f38869 commit: 3c50f669432bad09c6c469d78f6d6889853a8010 Author: Viorel Munteanu gentoo org> AuthorDate: Sat Dec 10 07:55:23 2022 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sat Dec 10 07:55:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c50f669 net-p2p/p2pool: don't strip files by default Closes: https://bugs.gentoo.org/884447 Signed-off-by: Viorel Munteanu gentoo.org> net-p2p/p2pool/p2pool-2.6-r1.ebuild | 9 +++++++++ net-p2p/p2pool/p2pool-9999.ebuild | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/net-p2p/p2pool/p2pool-2.6-r1.ebuild b/net-p2p/p2pool/p2pool-2.6-r1.ebuild index 14d4871b6..5b1d81a5e 100644 --- a/net-p2p/p2pool/p2pool-2.6-r1.ebuild +++ b/net-p2p/p2pool/p2pool-2.6-r1.ebuild @@ -66,6 +66,15 @@ src_unpack() { "${WORKDIR}"/${P}/external/src/robin-hood-hashing || die } +src_prepare() { + default + + # 884447: remove -s from OPTIMIZATION_FLAGS + sed -i 's/-s\>//' cmake/flags.cmake || die + + cmake_src_prepare +} + src_configure() { local mycmakeargs=( -DWITH_RANDOMX=OFF diff --git a/net-p2p/p2pool/p2pool-9999.ebuild b/net-p2p/p2pool/p2pool-9999.ebuild index 6f873b900..d0ce00169 100644 --- a/net-p2p/p2pool/p2pool-9999.ebuild +++ b/net-p2p/p2pool/p2pool-9999.ebuild @@ -19,6 +19,15 @@ DEPEND=" net-libs/czmq " +src_prepare() { + default + + # 884447: remove -s from OPTIMIZATION_FLAGS + sed -i 's/-s\>//' cmake/flags.cmake || die + + cmake_src_prepare +} + src_configure() { local mycmakeargs=( -DWITH_RANDOMX=OFF