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 C928D158013 for ; Fri, 8 Dec 2023 12:41:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B97D2BC016; Fri, 8 Dec 2023 12:41:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E68FF2BC016 for ; Fri, 8 Dec 2023 12:41:37 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1718833FE2A for ; Fri, 8 Dec 2023 12:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E129146C for ; Fri, 8 Dec 2023 12:41:35 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1702039291.daa972beb773afaf3f35c319aa9d9a079903595e.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/nvc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/nvc/nvc-1.11.0.ebuild X-VCS-Directories: sci-electronics/nvc/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: daa972beb773afaf3f35c319aa9d9a079903595e X-VCS-Branch: master Date: Fri, 8 Dec 2023 12:41:35 +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: b6e7daa0-b733-42cd-8faf-7391e1056d67 X-Archives-Hash: d8b326b9eec58ed79473530099d9bc4e commit: daa972beb773afaf3f35c319aa9d9a079903595e Author: Maciej Barć gentoo org> AuthorDate: Fri Dec 8 12:29:50 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Dec 8 12:41:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa972be sci-electronics/nvc: remove jit, not available Closes: https://bugs.gentoo.org/919451 Signed-off-by: Maciej Barć gentoo.org> sci-electronics/nvc/nvc-1.11.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sci-electronics/nvc/nvc-1.11.0.ebuild b/sci-electronics/nvc/nvc-1.11.0.ebuild index c1e70970c3cf..6dd03d3a04b4 100644 --- a/sci-electronics/nvc/nvc-1.11.0.ebuild +++ b/sci-electronics/nvc/nvc-1.11.0.ebuild @@ -11,8 +11,9 @@ DESCRIPTION="NVC is a VHDL compiler and simulator" HOMEPAGE="https://www.nickg.me.uk/nvc/ https://github.com/nickg/nvc/" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/nickg/nvc.git" NVC_SOURCEDIR="${WORKDIR}"/${PN}-${PV} @@ -26,8 +27,7 @@ fi LICENSE="GPL-3+" SLOT="0" -IUSE="debug jit llvm" -REQUIRED_USE="jit? ( llvm )" +IUSE="debug llvm" RESTRICT="test" # Some tests fail. RDEPEND=" @@ -89,7 +89,6 @@ src_configure() { --enable-vital --with-bash-completion="$(get_bashcompdir)" $(use_enable debug) - $(use_enable jit) $(use_enable llvm) ) econf "${myconf[@]}"