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 857C8158137 for ; Mon, 10 Jul 2023 18:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEB22E07EF; Mon, 10 Jul 2023 18:56:02 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3A5FE07EF for ; Mon, 10 Jul 2023 18:56:02 +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 6FE70335D6E for ; Mon, 10 Jul 2023 18:56:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99B4CA99 for ; Mon, 10 Jul 2023 18:55:59 +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: <1689015355.0d3571ea162f22f677f583c4e249e0027b40fed8.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/luau/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/luau/Manifest dev-lang/luau/luau-0.583.ebuild dev-lang/luau/metadata.xml X-VCS-Directories: dev-lang/luau/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 0d3571ea162f22f677f583c4e249e0027b40fed8 X-VCS-Branch: master Date: Mon, 10 Jul 2023 18:55:59 +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: af70a86f-a9fe-4e3b-b2de-d0daefcaa3f6 X-Archives-Hash: 71cd60b7d626f5284d2bf042859beb49 commit: 0d3571ea162f22f677f583c4e249e0027b40fed8 Author: Maciej Barć gentoo org> AuthorDate: Mon Jul 10 14:26:00 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Jul 10 18:55:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3571ea dev-lang/luau: new package; add 0.583 Signed-off-by: Maciej Barć gentoo.org> dev-lang/luau/Manifest | 1 + dev-lang/luau/luau-0.583.ebuild | 36 ++++++++++++++++++++++++++++++++++++ dev-lang/luau/metadata.xml | 24 ++++++++++++++++++++++++ 3 files changed, 61 insertions(+) diff --git a/dev-lang/luau/Manifest b/dev-lang/luau/Manifest new file mode 100644 index 000000000000..fb67345f8cf9 --- /dev/null +++ b/dev-lang/luau/Manifest @@ -0,0 +1 @@ +DIST luau-0.583.tar.gz 5575214 BLAKE2B 17088d4d5026854a5aac29d80a20ab8901753a3d8b89c21491df44202d07433f801d10a8e9443bc21f3318cda059000e43ed2cc2cb5926d3464f47ac7352a3c4 SHA512 45964e485354839c42b44f1482b372d47bce95302122fbba2288a0880bc964e30e934bdd6a62d0b6b2e6d725bdbe3332f67dc136fa64b28be9b3a0b2bc55d16b diff --git a/dev-lang/luau/luau-0.583.ebuild b/dev-lang/luau/luau-0.583.ebuild new file mode 100644 index 000000000000..c7bee4916d90 --- /dev/null +++ b/dev-lang/luau/luau-0.583.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Gradually typed embeddable scripting language derived from Lua" +HOMEPAGE="https://luau-lang.org/ + https://github.com/Roblox/luau/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Roblox/${PN}.git" +else + SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +DOCS=( CONTRIBUTING.md README.md SECURITY.md ) + +src_test() { + "${BUILD_DIR}"/Luau.UnitTest || die + "${BUILD_DIR}"/Luau.Conformance || die +} + +src_install() { + exeinto /usr/bin + doexe "${BUILD_DIR}"/luau{,-analyze,-ast,-compile,-reduce} + + einstalldocs +} diff --git a/dev-lang/luau/metadata.xml b/dev-lang/luau/metadata.xml new file mode 100644 index 000000000000..bc6dc6ae3533 --- /dev/null +++ b/dev-lang/luau/metadata.xml @@ -0,0 +1,24 @@ + + + + + + xgqt@gentoo.org + Maciej Barć + + + Luau is a fast, small, safe, gradually typed embeddable scripting language + derived from Lua. It is designed to be backwards compatible with Lua 5.1, + as well as incorporating some features from future Lua releases, but also + expands the feature set (most notably with type annotations). Luau is + largely implemented from scratch, with the language runtime being a very + heavily modified version of Lua 5.1 runtime, with completely rewritten + interpreter and other performance innovations. The runtime mostly preserves + Lua 5.1 API, so existing bindings should be more or less compatible with a + few caveats. + + + https://github.com/Roblox/luau/issues/ + Roblox/luau + +