summaryrefslogtreecommitdiff
path: root/dev-lang/lua
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-lang/lua
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-lang/lua')
-rw-r--r--dev-lang/lua/Manifest3
-rw-r--r--dev-lang/lua/files/5.1/0001-extern_C.patch20
-rw-r--r--dev-lang/lua/files/5.1/0002-Fix-stack-overflow-in-vararg-functions.patch17
-rw-r--r--dev-lang/lua/files/lua-5.1.4-test.patch11
-rw-r--r--dev-lang/lua/lua-5.1.5-r200.ebuild50
-rw-r--r--dev-lang/lua/lua-5.3.6-r102.ebuild51
-rw-r--r--dev-lang/lua/lua-5.4.8.ebuild51
-rw-r--r--dev-lang/lua/metadata.xml14
8 files changed, 0 insertions, 217 deletions
diff --git a/dev-lang/lua/Manifest b/dev-lang/lua/Manifest
deleted file mode 100644
index 98045c7c6596..000000000000
--- a/dev-lang/lua/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST lua-5.1.5.tar.xz 397416 BLAKE2B ef3880d78be1def383a9db6753b7aec4160f6fa8719529c2ea6266015771a23a1be81424520de10bb087a86081f1ec48c58c36eb8b24bff53adb6bd8d791e31b SHA512 bd827cb2e63cd71d15d846eb29c8745bf869e7b70e12c565ce173623d1fcd29dabf4d33a99c48f294151bb580d830c112cf178e2d80a5a5c36acc7b3bfcd7d24
-DIST lua-5.3.6.tar.xz 541220 BLAKE2B c356cec06b14cdcbb29e382c951491432a3189618f9fd8c8832bdc8c831640fbcb9e212db05b61a577633c5fe9831e75a158cb97720c1e51cab27544526c9e24 SHA512 9a632a90806fa71398d70be7d38769065c1258fd94709cef72236753b42131b8d30da2a5dd28c74211ef8d04b0c30f52d0c593d49c2e8686568c8896b69577d7
-DIST lua-5.4.8.tar.xz 624428 BLAKE2B 673b927768eecbce296d94d2d05a896d6a4e86a5db27ac4e0b97017efcf1a465083cb7d88a58cc5e9f75e8cb8125d09fb9df573e556acf018a21f187ebfe59b5 SHA512 c8001304dc1bb622521282358856e40eb9277a8d0496614211ff8d1865d14fadd8d584d0636831ca5de8ca57462b90e1484701e91b05f3d685c736b9e72905ca
diff --git a/dev-lang/lua/files/5.1/0001-extern_C.patch b/dev-lang/lua/files/5.1/0001-extern_C.patch
deleted file mode 100644
index 6e4f711f0ecd..000000000000
--- a/dev-lang/lua/files/5.1/0001-extern_C.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-https://salsa.debian.org/lua-team/lua5.1/-/blob/master/debian/patches/0003-extern_C.patch
-
-From: "John V. Belmonte" <jbelmonte@debian.org>
-Date: Tue, 26 Aug 2014 16:20:49 +0200
-Subject: extern_C
-
---- a/src/luaconf.h.in
-+++ b/src/luaconf.h.in
-@@ -168,7 +168,11 @@
-
- #else
-
-+#ifdef __cplusplus
-+#define LUA_API extern "C"
-+#else
- #define LUA_API extern
-+#endif
-
- #endif
-
diff --git a/dev-lang/lua/files/5.1/0002-Fix-stack-overflow-in-vararg-functions.patch b/dev-lang/lua/files/5.1/0002-Fix-stack-overflow-in-vararg-functions.patch
deleted file mode 100644
index 2bb5657b4d45..000000000000
--- a/dev-lang/lua/files/5.1/0002-Fix-stack-overflow-in-vararg-functions.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://salsa.debian.org/lua-team/lua5.1/-/blob/master/debian/patches/0004-Fix-stack-overflow-in-vararg-functions.patch
-
-From: Enrico Tassi <gareuselesinge@debian.org>
-Date: Tue, 26 Aug 2014 16:20:55 +0200
-Subject: Fix stack overflow in vararg functions (CVE-2014-5461)
-
---- a/src/ldo.c
-+++ b/src/ldo.c
-@@ -274,7 +274,7 @@ int luaD_precall (lua_State *L, StkId func, int nresults) {
- CallInfo *ci;
- StkId st, base;
- Proto *p = cl->p;
-- luaD_checkstack(L, p->maxstacksize);
-+ luaD_checkstack(L, p->maxstacksize + p->numparams);
- func = restorestack(L, funcr);
- if (!p->is_vararg) { /* no varargs? */
- base = func + 1;
diff --git a/dev-lang/lua/files/lua-5.1.4-test.patch b/dev-lang/lua/files/lua-5.1.4-test.patch
deleted file mode 100644
index 4dcfbb9d6969..000000000000
--- a/dev-lang/lua/files/lua-5.1.4-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/test/sieve.lua
-+++ b/test/sieve.lua
-@@ -14,7 +14,7 @@
- while 1 do
- local n = g()
- if n == nil then return end
-- if math.mod(n, p) ~= 0 then coroutine.yield(n) end
-+ if math.fmod(n, p) ~= 0 then coroutine.yield(n) end
- end
- end)
- end
diff --git a/dev-lang/lua/lua-5.1.5-r200.ebuild b/dev-lang/lua/lua-5.1.5-r200.ebuild
deleted file mode 100644
index c2e920d5e7c0..000000000000
--- a/dev-lang/lua/lua-5.1.5-r200.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit libtool optfeature
-
-DESCRIPTION="A powerful light-weight programming language designed for extending applications"
-HOMEPAGE="https://www.lua.org/"
-# tarballs produced from ${PV} branches in https://gitweb.gentoo.org/proj/lua-patches.git
-SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="5.1"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="+deprecated readline"
-
-DEPEND="
- >=app-eselect/eselect-lua-3
- readline? ( sys-libs/readline:= )
- !dev-lang/lua:0"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${SLOT} )
-
-src_prepare() {
- ! use deprecated && PATCHES+=(
- "${FILESDIR}"/${PN}-5.1.4-test.patch
- )
- default
- elibtoolize
-}
-
-src_configure() {
- econf \
- $(use_enable deprecated) \
- $(use_with readline)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- eselect lua set --if-unset "${PN}${SLOT}"
-
- optfeature "Lua support for Emacs" app-emacs/lua-mode
-}
diff --git a/dev-lang/lua/lua-5.3.6-r102.ebuild b/dev-lang/lua/lua-5.3.6-r102.ebuild
deleted file mode 100644
index 963b4be068b9..000000000000
--- a/dev-lang/lua/lua-5.3.6-r102.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic libtool optfeature
-
-DESCRIPTION="A powerful light-weight programming language designed for extending applications"
-HOMEPAGE="https://www.lua.org/"
-# tarballs produced from ${PV} branches in https://gitweb.gentoo.org/proj/lua-patches.git
-SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="5.3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="+deprecated readline"
-
-DEPEND="
- >=app-eselect/eselect-lua-3
- readline? ( sys-libs/readline:= )
- !dev-lang/lua:0"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- elibtoolize
-
- if use elibc_musl; then
- # locales on musl are non-functional (#834153)
- # https://wiki.musl-libc.org/open-issues.html#Locale-limitations
- sed -e 's|os.setlocale("pt_BR") or os.setlocale("ptb")|false|g' \
- -i tests/literals.lua || die
- fi
-}
-
-src_configure() {
- use deprecated && append-cppflags -DLUA_COMPAT_5_1 -DLUA_COMPAT_5_2
- econf $(use_with readline)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- eselect lua set --if-unset "${PN}${SLOT}"
-
- optfeature "Lua support for Emacs" app-emacs/lua-mode
-}
diff --git a/dev-lang/lua/lua-5.4.8.ebuild b/dev-lang/lua/lua-5.4.8.ebuild
deleted file mode 100644
index ca17f8773e15..000000000000
--- a/dev-lang/lua/lua-5.4.8.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic libtool optfeature
-
-DESCRIPTION="A powerful light-weight programming language designed for extending applications"
-HOMEPAGE="https://www.lua.org/"
-# tarballs produced from ${PV} branches in https://gitweb.gentoo.org/proj/lua-patches.git
-SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="5.4"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="+deprecated readline"
-
-DEPEND="
- >=app-eselect/eselect-lua-3
- readline? ( sys-libs/readline:= )
- !dev-lang/lua:0"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- elibtoolize
-
- if use elibc_musl; then
- # locales on musl are non-functional (#834153)
- # https://wiki.musl-libc.org/open-issues.html#Locale-limitations
- sed -e 's|os.setlocale("pt_BR") or os.setlocale("ptb")|false|g' \
- -i tests/literals.lua || die
- fi
-}
-
-src_configure() {
- use deprecated && append-cppflags -DLUA_COMPAT_5_3
- econf $(use_with readline)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- eselect lua set --if-unset "${PN}${SLOT}"
-
- optfeature "Lua support for Emacs" app-emacs/lua-mode
-}
diff --git a/dev-lang/lua/metadata.xml b/dev-lang/lua/metadata.xml
deleted file mode 100644
index 29700972f00e..000000000000
--- a/dev-lang/lua/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>robbat2@gentoo.org</email>
- <name>Robin H. Johnson</name>
- </maintainer>
- <use>
- <flag name="deprecated">make deprecated data structures/routines available</flag>
- </use>
- <upstream>
- <remote-id type="github">lua/lua</remote-id>
- </upstream>
-</pkgmetadata>