From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1229539-garchives=archives.gentoo.org@lists.gentoo.org>
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 BE0911382C5
	for <garchives@archives.gentoo.org>; Tue,  8 Dec 2020 11:44:52 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E3785E085A;
	Tue,  8 Dec 2020 11:44:51 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(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 C88FBE085A
	for <gentoo-commits@lists.gentoo.org>; Tue,  8 Dec 2020 11:44:51 +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 A9BF7340D32
	for <gentoo-commits@lists.gentoo.org>; Tue,  8 Dec 2020 11:44:50 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 109272C5
	for <gentoo-commits@lists.gentoo.org>; Tue,  8 Dec 2020 11:44:49 +0000 (UTC)
From: "Marek Szuba" <marecki@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" <marecki@gentoo.org>
Message-ID: <1607427877.e30dd3dfa0288649b8b5f5784c95ede6e35ce7e6.marecki@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/moarvm/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-lang/moarvm/moarvm-2020.11.ebuild
X-VCS-Directories: dev-lang/moarvm/
X-VCS-Committer: marecki
X-VCS-Committer-Name: Marek Szuba
X-VCS-Revision: e30dd3dfa0288649b8b5f5784c95ede6e35ce7e6
X-VCS-Branch: master
Date: Tue,  8 Dec 2020 11:44:49 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: f4d0fd07-507f-4fea-9a8f-8a2549ddf120
X-Archives-Hash: 986c7f8c5b166761eea80166c815cba7

commit:     e30dd3dfa0288649b8b5f5784c95ede6e35ce7e6
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  8 11:30:23 2020 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Dec  8 11:44:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e30dd3df

dev-lang/moarvm-2020.11: remove unused dev-lang/lua dependency

At least the more recent versions of MoarVM do *not* depend on Lua -
neither the binary nor the shared library link against liblua.so,
moarvm-2020.11 builds and installs fine on a system with no
dev-lang/lua present, and having examined the source code Lua scripts
only appear in two places:
 - in the test suite of 3rdparty/dyncall - irrelevant to use because our
   MoarVM ebuilds are test-restricted for unrelated reasons, and in any
   case that would be a *build-time* rather than a *run-time* dependency;
 - in 3rdparty/dynasm - which however are only used at build time to
   generate C code for the JIT compiler, and even then the build scripts
   use the bundled minilua (a stripped-down Lua5.1 implementation used
   to bootstrap LuaJIT, of which DynASM is a part) rather than any
   system Lua interpreter.

Bug: https://bugs.gentoo.org/752579
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-lang/moarvm/moarvm-2020.11.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-lang/moarvm/moarvm-2020.11.ebuild b/dev-lang/moarvm/moarvm-2020.11.ebuild
index 8e60e5d5cdc..05561a98ca2 100644
--- a/dev-lang/moarvm/moarvm-2020.11.ebuild
+++ b/dev-lang/moarvm/moarvm-2020.11.ebuild
@@ -26,7 +26,6 @@ IUSE="asan clang debug doc +jit optimize static-libs ubsan"
 
 RDEPEND="dev-libs/libatomic_ops
 		>=dev-libs/libuv-1.26
-		dev-lang/lua:0=
 		dev-libs/libffi"
 DEPEND="${RDEPEND}
 	clang? ( >=sys-devel/clang-3.1 )