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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA1571581F3 for ; Mon, 2 Dec 2024 15:11:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1C05E07EA; Mon, 2 Dec 2024 15:11:36 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BFFECE07EA for ; Mon, 2 Dec 2024 15:11:36 +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 ADE49342FAB for ; Mon, 2 Dec 2024 15:11:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBAD11F0B for ; Mon, 2 Dec 2024 15:11:32 +0000 (UTC) From: "Nicolas PARLANT" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas PARLANT" Message-ID: <1733152290.37e6ad58b0f66a576bec1f7b183aeca036bc050f.ppn@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lua/fifo/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lua/fifo/Manifest dev-lua/fifo/fifo-0.2.ebuild dev-lua/fifo/metadata.xml X-VCS-Directories: dev-lua/fifo/ X-VCS-Committer: ppn X-VCS-Committer-Name: Nicolas PARLANT X-VCS-Revision: 37e6ad58b0f66a576bec1f7b183aeca036bc050f X-VCS-Branch: dev Date: Mon, 2 Dec 2024 15:11:32 +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: f0fefafa-8011-4f94-b31d-0cc48151c213 X-Archives-Hash: 144d216b6200a5a02527ebeb001ac9fe commit: 37e6ad58b0f66a576bec1f7b183aeca036bc050f Author: Nicolas PARLANT parhuet fr> AuthorDate: Mon Dec 2 13:46:58 2024 +0000 Commit: Nicolas PARLANT parhuet fr> CommitDate: Mon Dec 2 15:11:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37e6ad58 dev-lua/fifo: new package, add 0.2 Signed-off-by: Nicolas PARLANT parhuet.fr> dev-lua/fifo/Manifest | 1 + dev-lua/fifo/fifo-0.2.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ dev-lua/fifo/metadata.xml | 11 +++++++++++ 3 files changed, 50 insertions(+) diff --git a/dev-lua/fifo/Manifest b/dev-lua/fifo/Manifest new file mode 100644 index 000000000..0a56c4fa3 --- /dev/null +++ b/dev-lua/fifo/Manifest @@ -0,0 +1 @@ +DIST fifo-0.2.tar.gz 5210 BLAKE2B 08d4df04b49d2edddddb966320baf751b873a1e833af9da83375e02e36e55f40a544de1fc287f994692bfcfd1494574908deb5f5a6a4adea309639174d6e246b SHA512 db2e0d2117c70ab0daa6e83141b95f198689e6568aab51e8300ca5577c1a517de249b9514ad8a3476239da3d9bceb699726ead913126817c0801f7ec5d419306 diff --git a/dev-lua/fifo/fifo-0.2.ebuild b/dev-lua/fifo/fifo-0.2.ebuild new file mode 100644 index 000000000..af574a13c --- /dev/null +++ b/dev-lua/fifo/fifo-0.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit lua + +MY_PN="${PN}.lua" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Fifo library for Lua" +HOMEPAGE="https://github.com/daurnimator/fifo.lua" +SRC_URI="https://github.com/daurnimator/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/${MY_P}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +REQUIRED_USE="${LUA_REQUIRED_USE}" + +DEPEND="${LUA_DEPS}" +RDEPEND="${DEPEND}" + +lua_enable_tests busted + +lua_src_install() { + insinto $(lua_get_lmod_dir) + doins ${PN}.lua +} + +src_install() { + lua_foreach_impl lua_src_install + einstalldocs +} diff --git a/dev-lua/fifo/metadata.xml b/dev-lua/fifo/metadata.xml new file mode 100644 index 000000000..97eea74e7 --- /dev/null +++ b/dev-lua/fifo/metadata.xml @@ -0,0 +1,11 @@ + + + + + nicolas.parlant@parhuet.fr + Nicolas PARLANT + + + daurnimator/fifo.lua + +