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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DA06F15812D for ; Tue, 31 Dec 2024 14:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE90BE07A9; Tue, 31 Dec 2024 14:23:17 +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 44BC2E07B2 for ; Tue, 31 Dec 2024 14:23:17 +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 5845B335D2B for ; Tue, 31 Dec 2024 14:23:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD1B297F for ; Tue, 31 Dec 2024 14:23:14 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1735654953.d0977ceabf102fd8b7d570902a5feb516f71016c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/yass/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/yass/metadata.xml sci-biology/yass/yass-1.14-r3.ebuild X-VCS-Directories: sci-biology/yass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d0977ceabf102fd8b7d570902a5feb516f71016c X-VCS-Branch: master Date: Tue, 31 Dec 2024 14:23:14 +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: 6d9512be-fd9c-467a-a9fe-b6cbd3e4494e X-Archives-Hash: 02a9d73c4bb9fc9c8058814e0f9e85e6 commit: d0977ceabf102fd8b7d570902a5feb516f71016c Author: NHOrus yahoo com> AuthorDate: Mon Dec 30 17:07:08 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 31 14:22:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0977cea sci-biology/yass: Remove USE=dmalloc It's janky and causes build failures Bug: https://bugs.gentoo.org/946814 Signed-off-by: NHOrus yahoo.com> Signed-off-by: Sam James gentoo.org> sci-biology/yass/metadata.xml | 1 - sci-biology/yass/yass-1.14-r3.ebuild | 9 +++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/sci-biology/yass/metadata.xml b/sci-biology/yass/metadata.xml index 1235113d13c6..4688bfdad406 100644 --- a/sci-biology/yass/metadata.xml +++ b/sci-biology/yass/metadata.xml @@ -6,7 +6,6 @@ Gentoo Biology Project - Enable debugging with the dmalloc library Build for environments with low amounts of memory diff --git a/sci-biology/yass/yass-1.14-r3.ebuild b/sci-biology/yass/yass-1.14-r3.ebuild index 3913c44f4580..be75847e2ad0 100644 --- a/sci-biology/yass/yass-1.14-r3.ebuild +++ b/sci-biology/yass/yass-1.14-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,10 +12,7 @@ SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="dmalloc lowmem threads" - -DEPEND="dmalloc? ( dev-libs/dmalloc )" -RDEPEND="${DEPEND}" +IUSE="lowmem threads" PATCHES=( "${FILESDIR}"/${PV}-as-needed.patch ) @@ -28,5 +25,5 @@ src_configure() { econf \ $(use_enable threads) \ $(use_enable lowmem lowmemory) \ - $(use_with dmalloc) + --without-dmalloc }