public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasystem/
Date: Sat, 13 Sep 2025 21:17:26 +0000 (UTC)	[thread overview]
Message-ID: <1757798170.b61de61f17d47f63fd30456846c12a5ff3612aad.conikost@gentoo> (raw)

commit:     b61de61f17d47f63fd30456846c12a5ff3612aad
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 13 21:16:10 2025 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Sep 13 21:16:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61de61f

dev-lua/luasystem: drop 0.5.1, 0.6.2

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lua/luasystem/Manifest               |  2 -
 dev-lua/luasystem/luasystem-0.5.1.ebuild | 89 --------------------------------
 dev-lua/luasystem/luasystem-0.6.2.ebuild | 89 --------------------------------
 3 files changed, 180 deletions(-)

diff --git a/dev-lua/luasystem/Manifest b/dev-lua/luasystem/Manifest
index 30f0bb728f94..5519050b6140 100644
--- a/dev-lua/luasystem/Manifest
+++ b/dev-lua/luasystem/Manifest
@@ -1,3 +1 @@
-DIST luasystem-0.5.1.tar.gz 77785 BLAKE2B 30cb0333f2c5c8671122e45af16998e01fddd916c12c7139be64fb3747640125a5984fe799cdbe126bdac0fc10786d635b82129def160f830cf6be3be0fa5faf SHA512 2e55cec79429aad45e1609c29b0e1d5b3d954f2daccac23435e718ec50471cfd87d21455eb398f2ffbec91cb639164b236c9025a302c8a49470de3d361983535
-DIST luasystem-0.6.2.tar.gz 80513 BLAKE2B 32d64634deb7f36d55e7522bd8389661f1fc306864c62837f978b0f90e12ea64d925e53c160ea535ce60856454642b7f8c8d8c5b1eca56e82bf9d51bfa7d351c SHA512 b5cce8448b382537101a1126e9c11af718b40b475e3c8ec1ff32975759c3e93214708491ac94fce61049e5316cce24efb8ad750912cd6e4e77a0c6fdcefc1d0c
 DIST luasystem-0.6.3.tar.gz 81707 BLAKE2B c4a176621144e0ac9c85319327ab5cbe5b64e64152129208b07b0b777ba2e866d3100e1c98f61542c6f298b680757ff2f343d5c9491b7bda0be6834ab95f3c90 SHA512 c0aaf907bd99e471a01f9fe24ef7876eb64c7225edde799e11cc27fd3b269b1a79cd9d583a3b651a9ae4677dcad433a5739ee1a17540340b54c7d36935ac30a0

diff --git a/dev-lua/luasystem/luasystem-0.5.1.ebuild b/dev-lua/luasystem/luasystem-0.5.1.ebuild
deleted file mode 100644
index d567a1e90d29..000000000000
--- a/dev-lua/luasystem/luasystem-0.5.1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-MY_PV="${PV/_p/-}"
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="Platform independent system calls for Lua"
-HOMEPAGE="https://github.com/lunarmodules/luasystem"
-SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	test? (
-		dev-lua/busted[${LUA_USEDEP}]
-		dev-lua/lua_cliargs[${LUA_USEDEP}]
-		${RDEPEND}
-	)
-"
-
-src_prepare() {
-	default
-
-	lua_copy_sources
-}
-
-lua_src_test() {
-	busted --exclude-tags=manual --lua=${ELUA} || die
-}
-
-src_test() {
-	lua_foreach_impl lua_src_test
-}
-
-lua_src_compile() {
-	pushd "${BUILD_DIR}" || die
-
-	local myemakeargs=(
-		"CC=$(tc-getCC)"
-		"LD=$(tc-getCC)"
-		"LUAINC_linux=$(lua_get_include_dir)"
-		"MYCFLAGS=${CFLAGS}"
-		"MYLDFLAGS=${LDFLAGS}"
-	)
-
-	emake "${myemakeargs[@]}" linux
-
-	popd
-}
-
-src_compile() {
-	lua_foreach_impl lua_src_compile
-}
-
-lua_src_install () {
-	pushd "${BUILD_DIR}" || die
-
-	local emakeargs=(
-		"INSTALL_TOP_CDIR=${ED}/$(lua_get_cmod_dir)"
-		"INSTALL_TOP_LDIR=${ED}/$(lua_get_lmod_dir)"
-		"LUA_INC=${ED}/$(lua_get_include_dir)"
-	)
-
-	emake "${emakeargs[@]}" install
-
-	insinto $(lua_get_lmod_dir)/system
-	doins system/init.lua
-
-	popd
-}
-
-src_install() {
-	lua_foreach_impl lua_src_install
-
-	einstalldocs
-}

diff --git a/dev-lua/luasystem/luasystem-0.6.2.ebuild b/dev-lua/luasystem/luasystem-0.6.2.ebuild
deleted file mode 100644
index d567a1e90d29..000000000000
--- a/dev-lua/luasystem/luasystem-0.6.2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-MY_PV="${PV/_p/-}"
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="Platform independent system calls for Lua"
-HOMEPAGE="https://github.com/lunarmodules/luasystem"
-SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	test? (
-		dev-lua/busted[${LUA_USEDEP}]
-		dev-lua/lua_cliargs[${LUA_USEDEP}]
-		${RDEPEND}
-	)
-"
-
-src_prepare() {
-	default
-
-	lua_copy_sources
-}
-
-lua_src_test() {
-	busted --exclude-tags=manual --lua=${ELUA} || die
-}
-
-src_test() {
-	lua_foreach_impl lua_src_test
-}
-
-lua_src_compile() {
-	pushd "${BUILD_DIR}" || die
-
-	local myemakeargs=(
-		"CC=$(tc-getCC)"
-		"LD=$(tc-getCC)"
-		"LUAINC_linux=$(lua_get_include_dir)"
-		"MYCFLAGS=${CFLAGS}"
-		"MYLDFLAGS=${LDFLAGS}"
-	)
-
-	emake "${myemakeargs[@]}" linux
-
-	popd
-}
-
-src_compile() {
-	lua_foreach_impl lua_src_compile
-}
-
-lua_src_install () {
-	pushd "${BUILD_DIR}" || die
-
-	local emakeargs=(
-		"INSTALL_TOP_CDIR=${ED}/$(lua_get_cmod_dir)"
-		"INSTALL_TOP_LDIR=${ED}/$(lua_get_lmod_dir)"
-		"LUA_INC=${ED}/$(lua_get_include_dir)"
-	)
-
-	emake "${emakeargs[@]}" install
-
-	insinto $(lua_get_lmod_dir)/system
-	doins system/init.lua
-
-	popd
-}
-
-src_install() {
-	lua_foreach_impl lua_src_install
-
-	einstalldocs
-}


             reply	other threads:[~2025-09-13 21:17 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-13 21:17 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-13  1:30 [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasystem/ Sam James
2025-09-12 20:29 Arthur Zamarin
2025-09-12 18:23 Michał Górny
2025-09-12  8:45 Arthur Zamarin
2025-09-12  3:40 Sam James
2025-09-12  3:40 Sam James
2025-08-10 22:53 Conrad Kostecki
2025-07-12 10:09 Arthur Zamarin
2025-07-05 16:34 Arthur Zamarin
2025-07-04 19:02 Sam James
2025-07-03  8:51 Sam James
2025-06-29 22:02 Sam James
2025-06-29 22:02 Sam James
2025-05-21 21:19 Sam James
2025-04-16 19:53 Conrad Kostecki
2025-04-10 20:15 Conrad Kostecki
2025-04-09 17:31 Arthur Zamarin
2025-04-09  2:04 Sam James
2025-04-09  2:04 Sam James
2025-04-09  2:04 Sam James
2025-04-09  2:04 Sam James
2025-04-08 19:52 Arthur Zamarin
2025-03-23 22:46 Conrad Kostecki
2025-03-08 23:21 Conrad Kostecki
2025-01-24  6:29 Arthur Zamarin
2025-01-24  6:29 Arthur Zamarin
2025-01-24  3:30 Sam James
2025-01-24  2:23 Sam James
2025-01-24  2:23 Sam James
2025-01-24  2:23 Sam James
2024-12-23 20:01 Conrad Kostecki
2024-12-23 20:01 Conrad Kostecki
2024-12-23 20:01 Conrad Kostecki
2024-09-15 14:59 Conrad Kostecki
2024-07-14 12:30 Conrad Kostecki
2024-06-27 15:40 Conrad Kostecki
2024-06-10 20:39 William Hubbs
2023-12-23 21:51 Conrad Kostecki
2021-09-18 12:29 Marek Szuba
2021-04-22 19:31 Sergei Trofimovich
2021-04-21 21:03 Conrad Kostecki
2021-04-21 20:44 Conrad Kostecki
2021-04-20 21:20 Sergei Trofimovich
2021-03-16 17:37 Conrad Kostecki
2021-01-24  3:52 Sam James
2021-01-23 22:51 Sam James
2021-01-23 22:51 Sam James
2020-12-03 13:11 Marek Szuba
2020-11-30 13:33 Conrad Kostecki
2020-11-29 17:11 Sergei Trofimovich
2020-11-29 15:37 Conrad Kostecki
2020-11-29 15:37 Conrad Kostecki
2020-11-28 17:45 Conrad Kostecki
2020-11-28 17:45 Conrad Kostecki
2020-11-26 23:04 Sergei Trofimovich
2020-11-26  8:32 Sam James
2020-11-25 10:28 Thomas Deutschmann
2020-11-24  1:52 Sam James
2020-10-12 10:57 Conrad Kostecki
2018-12-29 12:10 Mikle Kolyada
2018-04-01 11:48 Mikle Kolyada
2018-03-27  8:06 Sergei Trofimovich
2018-03-27  7:31 Sergei Trofimovich
2017-03-16 10:27 Michael Palimaka
2017-01-07  1:52 Aaron Bauman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1757798170.b61de61f17d47f63fd30456846c12a5ff3612aad.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox