diff options
author | 2024-08-14 22:33:11 +0200 | |
---|---|---|
committer | 2024-08-14 22:40:48 +0200 | |
commit | 01c4a13cd3e75d51168cecd933a5e82e2928f7eb (patch) | |
tree | 29cf245a7cffdf60fb66d02397642341e19a3cf1 /dev-db | |
parent | dev-db/redis: add 7.4.0 (diff) | |
download | gentoo-01c4a13cd3e75d51168cecd933a5e82e2928f7eb.tar.gz gentoo-01c4a13cd3e75d51168cecd933a5e82e2928f7eb.tar.bz2 gentoo-01c4a13cd3e75d51168cecd933a5e82e2928f7eb.zip |
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 <arkamar@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/redis/redis-7.4.0.ebuild | 4 |
1 files 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 ) |