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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62D851382C5 for ; Sun, 6 Jun 2021 00:38:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4191AE08FA; Sun, 6 Jun 2021 00:38:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99CF0E08FA for ; Sun, 6 Jun 2021 00:38:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 918C7340DB8 for ; Sun, 6 Jun 2021 00:38:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8885799 for ; Sun, 6 Jun 2021 00:38:08 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1622939534.53e334d850765ddcf72f8a7316b93c337bcaee45.jakov.smolic@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/jellyfish/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/jellyfish/jellyfish-1.1.12.ebuild X-VCS-Directories: sci-biology/jellyfish/ X-VCS-Committer: jakov.smolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 53e334d850765ddcf72f8a7316b93c337bcaee45 X-VCS-Branch: master Date: Sun, 6 Jun 2021 00:38:08 +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: 6b18d123-3e20-4543-8c93-95a5ee2d480b X-Archives-Hash: 0a418d2fb8506c030080ab09a7183c2e commit: 53e334d850765ddcf72f8a7316b93c337bcaee45 Author: Jakov Smolic sartura hr> AuthorDate: Sun Jun 6 00:31:52 2021 +0000 Commit: Jakov Smolić sartura hr> CommitDate: Sun Jun 6 00:32:14 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=53e334d8 sci-biology/jellyfish: Call econf in src_configure in 1.1.12 Closes: https://bugs.gentoo.org/755752 Signed-off-by: Jakov Smolic sartura.hr> sci-biology/jellyfish/jellyfish-1.1.12.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sci-biology/jellyfish/jellyfish-1.1.12.ebuild b/sci-biology/jellyfish/jellyfish-1.1.12.ebuild index f7b7e1d29..15a2d7bca 100644 --- a/sci-biology/jellyfish/jellyfish-1.1.12.ebuild +++ b/sci-biology/jellyfish/jellyfish-1.1.12.ebuild @@ -18,21 +18,18 @@ SLOT="1" KEYWORDS="~amd64 ~x86" IUSE="cpu_flags_x86_sse" -DEPEND="" -DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -src_prepare(){ +src_configure() { # --with-sse enable SSE # --with-half enable half float (16 bits) # --with-int128 enable int128 local myconf use cpu_flags_x86_sse && myconf+=( --with-sse ) econf ${myconf[@]} - eapply_user } -src_install(){ +src_install() { default # install the binary under jellyfish1 name like Debian/Ubuntu to avoid name clash with jellyfish2 and allow simultaneous installs mv "${ED}"/usr/bin/jellyfish "${ED}"/usr/bin/jellyfish1 || die