From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id F377C15807A for ; Mon, 09 Jun 2025 10:01:32 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E0A683431C3 for ; Mon, 09 Jun 2025 10:01:32 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 47DA71104A8; Mon, 09 Jun 2025 10:01:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3FAA21104A8 for ; Mon, 09 Jun 2025 10:01:15 +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 EFD2E34317C for ; Mon, 09 Jun 2025 10:01:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D8A529A7 for ; Mon, 09 Jun 2025 10:01:12 +0000 (UTC) From: "Alexander Puck Neuwirth" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexander Puck Neuwirth" Message-ID: <1749459280.ece96536ab1a04a8c09288e347945ca9f1d6e0f0.alexander@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/minimap2/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/minimap2/minimap2-2.24-r1.ebuild sci-biology/minimap2/minimap2-2.24.ebuild X-VCS-Directories: sci-biology/minimap2/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: ece96536ab1a04a8c09288e347945ca9f1d6e0f0 X-VCS-Branch: master Date: Mon, 09 Jun 2025 10:01:12 +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: c6a184c0-e40c-4c30-b670-137958746ada X-Archives-Hash: 8d96c0935f75bcaf49416d7cf8c99620 commit: ece96536ab1a04a8c09288e347945ca9f1d6e0f0 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Sun Jun 8 06:44:55 2025 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Mon Jun 9 08:54:40 2025 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ece96536 sci-biology/minimap2: DISTUTILS_USE_PEP517=setuptools Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> .../minimap2/{minimap2-2.24.ebuild => minimap2-2.24-r1.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sci-biology/minimap2/minimap2-2.24.ebuild b/sci-biology/minimap2/minimap2-2.24-r1.ebuild similarity index 90% rename from sci-biology/minimap2/minimap2-2.24.ebuild rename to sci-biology/minimap2/minimap2-2.24-r1.ebuild index 13bed2b34..96b427ef0 100644 --- a/sci-biology/minimap2/minimap2-2.24.ebuild +++ b/sci-biology/minimap2/minimap2-2.24-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools +DISTUTILS_EXT=1 PYTHON_COMPAT=( python3_13 ) DISTUTILS_OPTIONAL=1 inherit distutils-r1 @@ -22,7 +24,10 @@ DEPEND="sys-libs/zlib ${PYTHON_DEPS} )" RDEPEND="${DEPEND}" -BDEPEND="python? ( dev-python/cython[${PYTHON_USEDEP}] )" +BDEPEND=" + ${DISTUTILS_DEPS} + python? ( dev-python/cython[${PYTHON_USEDEP}] ) +" src_prepare(){ sed -e 's/-O2 //' -e 's/^CFLAGS=/CFLAGS+=/' -i Makefile || die