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 5925315800F for ; Sun, 19 Feb 2023 16:46:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A07A2E0893; Sun, 19 Feb 2023 16:46:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85AD9E0893 for ; Sun, 19 Feb 2023 16:46:56 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93855335D17 for ; Sun, 19 Feb 2023 16:46:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9C968BA for ; Sun, 19 Feb 2023 16:46:52 +0000 (UTC) From: "John Helmert III" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John Helmert III" Message-ID: <1676825101.eb99c47fd51e71b5a4ddaf6cffa2b55e69e3e802.ajak@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rizin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rizin/rizin-0.5.0-r1.ebuild dev-util/rizin/rizin-0.5.0.ebuild X-VCS-Directories: dev-util/rizin/ X-VCS-Committer: ajak X-VCS-Committer-Name: John Helmert III X-VCS-Revision: eb99c47fd51e71b5a4ddaf6cffa2b55e69e3e802 X-VCS-Branch: master Date: Sun, 19 Feb 2023 16:46:52 +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: b775e6d0-89bf-459b-bf17-8dd47b6402ee X-Archives-Hash: b6edb00b2cf22318253de2a28cac8d47 commit: eb99c47fd51e71b5a4ddaf6cffa2b55e69e3e802 Author: John Helmert III gentoo org> AuthorDate: Sun Feb 19 16:44:18 2023 +0000 Commit: John Helmert III gentoo org> CommitDate: Sun Feb 19 16:45:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb99c47f dev-util/rizin: fix dependencies Closes: https://bugs.gentoo.org/895378 Signed-off-by: John Helmert III gentoo.org> .../rizin/{rizin-0.5.0.ebuild => rizin-0.5.0-r1.ebuild} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-util/rizin/rizin-0.5.0.ebuild b/dev-util/rizin/rizin-0.5.0-r1.ebuild similarity index 95% rename from dev-util/rizin/rizin-0.5.0.ebuild rename to dev-util/rizin/rizin-0.5.0-r1.ebuild index 5bb4702d4c90..7144a4dcffb4 100644 --- a/dev-util/rizin/rizin-0.5.0.ebuild +++ b/dev-util/rizin/rizin-0.5.0-r1.ebuild @@ -25,14 +25,15 @@ IUSE="test" RESTRICT="test? ( fetch ) !test? ( test )" RDEPEND=" - sys-apps/file app-arch/lz4:0= + app-arch/xz-utils dev-libs/capstone:0= - dev-libs/libuv:0= + dev-libs/libmspack dev-libs/libzip:0= dev-libs/openssl:0= >=dev-libs/tree-sitter-0.19.0 dev-libs/xxhash + sys-apps/file sys-libs/zlib:0= " DEPEND="${RDEPEND}" @@ -67,13 +68,15 @@ src_configure() { local emesonargs=( -Dcli=enabled -Duse_sys_capstone=enabled - -Duse_sys_magic=enabled + -Duse_sys_libmspack=enabled -Duse_sys_libzip=enabled - -Duse_sys_zlib=enabled -Duse_sys_lz4=enabled - -Duse_sys_xxhash=enabled + -Duse_sys_lzma=enabled + -Duse_sys_magic=enabled -Duse_sys_openssl=enabled -Duse_sys_tree_sitter=enabled + -Duse_sys_xxhash=enabled + -Duse_sys_zlib=enabled $(meson_use test enable_tests) $(meson_use test enable_rz_test)