diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-04-11 06:58:39 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-04-11 06:58:39 +0000 |
| commit | 5d32ec2c14acd2f28433d5a5b2a147814c889e69 (patch) | |
| tree | e729ed710689ffe0c9bdfe7f533d7ed48d34fd1f /dev-lua | |
| parent | b88c79c2030696cd329a70d2360dd21a64f87ca3 (diff) | |
| download | baldeagleos-repo-5d32ec2c14acd2f28433d5a5b2a147814c889e69.tar.gz baldeagleos-repo-5d32ec2c14acd2f28433d5a5b2a147814c889e69.tar.xz baldeagleos-repo-5d32ec2c14acd2f28433d5a5b2a147814c889e69.zip | |
Adding metadata
Diffstat (limited to 'dev-lua')
| -rw-r--r-- | dev-lua/lanes/Manifest | 1 | ||||
| -rw-r--r-- | dev-lua/lanes/lanes-3.17.0.ebuild | 95 | ||||
| -rw-r--r-- | dev-lua/lanes/lanes-3.17.1.ebuild | 2 | ||||
| -rw-r--r-- | dev-lua/luasystem/Manifest | 2 | ||||
| -rw-r--r-- | dev-lua/luasystem/luasystem-0.4.5.ebuild | 89 | ||||
| -rw-r--r-- | dev-lua/luasystem/luasystem-0.5.0.ebuild | 89 |
6 files changed, 1 insertions, 277 deletions
diff --git a/dev-lua/lanes/Manifest b/dev-lua/lanes/Manifest index 14f58ea6c3eb..8ff6779a6da8 100644 --- a/dev-lua/lanes/Manifest +++ b/dev-lua/lanes/Manifest @@ -1,2 +1 @@ -DIST lanes-3.17.0.tar.gz 449193 BLAKE2B 110c05bdf46b9e5faf7e4ebf52992799fc2d1a993411a9488c75fc8134a267650348152299e91f94d1af8378a0e8a06c5485a364aad3cf246d7339006c89a924 SHA512 b9866cf1af54c758c840d2f6df3e14e6231f952b651d1196262a4b14d1361dd55697cba467998e90a69d876bcde5beffd25f3f8b53c387534b292650c25c357d DIST lanes-3.17.1.tar.gz 448968 BLAKE2B 9e0d8931f361b9e6a47df0e0d4d710458bc0f62a0aaab4fdafab94ab213273789fc54ecef2c22731baae563cca841eeed35135c1d4598be4e2a45d61e116a4a4 SHA512 0e541ce394a06cad291663f618f953fe94c1eb60531c6e25311ef90318d31dfcebab75ee94f5e4f5441e344035701f4c47d578d949cb8a0c20c88b534333d0ba diff --git a/dev-lua/lanes/lanes-3.17.0.ebuild b/dev-lua/lanes/lanes-3.17.0.ebuild deleted file mode 100644 index c1aead48e35d..000000000000 --- a/dev-lua/lanes/lanes-3.17.0.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-{1,3,4} luajit ) - -inherit lua toolchain-funcs - -DESCRIPTION="Lightweight, native, lazy evaluating multithreading library" -HOMEPAGE="https://github.com/LuaLanes/lanes" -SRC_URI="https://github.com/LuaLanes/lanes/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="test" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -# Tests are currently somehow problematic. -# https://github.com/LuaLanes/lanes/issues/197 -# https://github.com/LuaLanes/lanes/issues/198 -RESTRICT="test" - -RDEPEND="${LUA_DEPS}" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - test? ( ${RDEPEND} ) -" - -HTML_DOCS=( "docs/." ) - -PATCHES=( - "${FILESDIR}/${PN}-3.13.0-makefile.patch" -) - -src_prepare() { - default - - lua_copy_sources -} - -lua_src_compile() { - pushd "${BUILD_DIR}" || die - - local myemakeargs=( - "CC=$(tc-getCC)" - "LUA=${ELUA}" - "LUA_FLAGS=$(lua_get_CFLAGS)" - "LUA_LIBS=" - "OPT_FLAGS=${CFLAGS}" - ) - - tc-export PKG_CONFIG - - emake "${myemakeargs[@]}" - - popd -} - -src_compile() { - lua_foreach_impl lua_src_compile -} - -lua_src_test() { - pushd "${BUILD_DIR}" || die - - emake LUA="${ELUA}" test - - popd -} - -src_test() { - lua_foreach_impl lua_src_test -} - -lua_src_install() { - pushd "${BUILD_DIR}" || die - - local myemakeargs=( - "LUA_LIBDIR=${ED}/$(lua_get_cmod_dir)" - "LUA_SHAREDIR=${ED}/$(lua_get_lmod_dir)" - ) - - emake "${myemakeargs[@]}" install - - popd -} - -src_install() { - lua_foreach_impl lua_src_install - - einstalldocs -} diff --git a/dev-lua/lanes/lanes-3.17.1.ebuild b/dev-lua/lanes/lanes-3.17.1.ebuild index 1251cc918a2f..6f1cc2e28212 100644 --- a/dev-lua/lanes/lanes-3.17.1.ebuild +++ b/dev-lua/lanes/lanes-3.17.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/LuaLanes/lanes/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" IUSE="test" REQUIRED_USE="${LUA_REQUIRED_USE}" diff --git a/dev-lua/luasystem/Manifest b/dev-lua/luasystem/Manifest index 860e95600f7a..6393bf2d2f68 100644 --- a/dev-lua/luasystem/Manifest +++ b/dev-lua/luasystem/Manifest @@ -1,3 +1 @@ -DIST luasystem-0.4.5.tar.gz 75630 BLAKE2B 3f269e4d45026e53f40dabee78e655e400a72312e5cdb3680027f1725e694e45d4cd313b2eb11224fe3901c240f50d94187bc8acb83de78bbf26b878e6915c2a SHA512 e7e8fe6aa09f625c0b97f48799f7b00d80e8ac0d00efedf258ae72f7d0f4283d43c285e09b32ab8707c228403eadda98727ce260d7fc9ed9dbd67877a55a6203 -DIST luasystem-0.5.0.tar.gz 77366 BLAKE2B a6825c193e54c0e879f988b33a50732fbc79579948463d96b7b2c552e12b2efd31bd4f8e6c9f918bed9911131509131208d1c1ca93e4d1e50f767d69889040d6 SHA512 c701e2dd3588c06fe66ca2fe55ecf61244cc82bd41d976873f3dbf9b5938cea0bfcd9b0196455c8db6a9cb0c4911785d1de5e30f51c8ef398d2fe1e93443c069 DIST luasystem-0.5.1.tar.gz 77785 BLAKE2B 30cb0333f2c5c8671122e45af16998e01fddd916c12c7139be64fb3747640125a5984fe799cdbe126bdac0fc10786d635b82129def160f830cf6be3be0fa5faf SHA512 2e55cec79429aad45e1609c29b0e1d5b3d954f2daccac23435e718ec50471cfd87d21455eb398f2ffbec91cb639164b236c9025a302c8a49470de3d361983535 diff --git a/dev-lua/luasystem/luasystem-0.4.5.ebuild b/dev-lua/luasystem/luasystem-0.4.5.ebuild deleted file mode 100644 index d6ff6cfba222..000000000000 --- a/dev-lua/luasystem/luasystem-0.4.5.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,3,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.5.0.ebuild b/dev-lua/luasystem/luasystem-0.5.0.ebuild deleted file mode 100644 index 46e3b328249f..000000000000 --- a/dev-lua/luasystem/luasystem-0.5.0.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,3,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 -} |
