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 3B04D159C9B for ; Wed, 14 Aug 2024 20:42:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 764C32BC019; Wed, 14 Aug 2024 20:42:48 +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 5ACD82BC019 for ; Wed, 14 Aug 2024 20:42:48 +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 502D6343097 for ; Wed, 14 Aug 2024 20:42:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A83241EE7 for ; Wed, 14 Aug 2024 20:42:44 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1723668048.01c4a13cd3e75d51168cecd933a5e82e2928f7eb.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/redis-7.4.0.ebuild X-VCS-Directories: dev-db/redis/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 01c4a13cd3e75d51168cecd933a5e82e2928f7eb X-VCS-Branch: master Date: Wed, 14 Aug 2024 20:42:44 +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: 090bda83-2b1a-42ed-92fc-3b388faa8495 X-Archives-Hash: 71415cfe6318cfd65c27b47b5201a27e commit: 01c4a13cd3e75d51168cecd933a5e82e2928f7eb Author: Petr Vaněk gentoo org> AuthorDate: Wed Aug 14 20:33:11 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Aug 14 20:40:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01c4a13c dev-db/redis: re-enable jemalloc by default and correct its use flags Redis newly requires jemalloc with stats USE flag enabled. See-also: https://github.com/gentoo/gentoo/pull/38145 Closes: https://bugs.gentoo.org/937915 Signed-off-by: Petr Vaněk gentoo.org> dev-db/redis/redis-7.4.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-db/redis/redis-7.4.0.ebuild b/dev-db/redis/redis-7.4.0.ebuild index 5d003100cbbd..8d583a5f437c 100644 --- a/dev-db/redis/redis-7.4.0.ebuild +++ b/dev-db/redis/redis-7.4.0.ebuild @@ -18,11 +18,11 @@ SRC_URI="https://download.redis.io/releases/${P}.tar.gz" LICENSE="Boost-1.0 SSPL-1" SLOT="0/$(ver_cut 1-2)" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="jemalloc selinux ssl systemd tcmalloc test" +IUSE="+jemalloc selinux ssl systemd tcmalloc test" RESTRICT="!test? ( test )" DEPEND=" - jemalloc? ( >=dev-libs/jemalloc-5.1:= ) + jemalloc? ( >=dev-libs/jemalloc-5.1:=[stats] ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools )