summaryrefslogtreecommitdiff
path: root/dev-lua
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2025-08-25 15:02:05 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2025-08-26 16:13:26 +0300
commit5126f6d93790aa6472cf6a018b7e97a6bb306eb1 (patch)
tree742c62c0f7134b6ea6a52527c0a87c4fc3513cf9 /dev-lua
parent39759de78ec42fffaf6a507bc9eadac254be97e0 (diff)
downloadgentoo-5126f6d93790aa6472cf6a018b7e97a6bb306eb1.tar.gz
gentoo-5126f6d93790aa6472cf6a018b7e97a6bb306eb1.tar.bz2
gentoo-5126f6d93790aa6472cf6a018b7e97a6bb306eb1.zip
dev-lua/lutok: drop 0.4-r11, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-lua')
-rw-r--r--dev-lua/lutok/Manifest1
-rw-r--r--dev-lua/lutok/lutok-0.4-r11.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-lua/lutok/Manifest b/dev-lua/lutok/Manifest
index daf3fd0c8cab..bd5370ac3f14 100644
--- a/dev-lua/lutok/Manifest
+++ b/dev-lua/lutok/Manifest
@@ -1,2 +1 @@
-DIST lutok-0.4.tar.gz 489570 BLAKE2B b4bc26d9a4901901e6ca66a41bc42ccc2f82697ff14e64c1bea35b4a9ed08b6f13ecfa9aaabb54e25fb3e4f3aea03791c225c4c8fc6ed3e0387d34d933a228e9 SHA512 664f30099bfbb30978e24068a9232a4ff1b5b1839c601bf784f35f6bb1394558067495093a3b0343c94e756d2e4186a32a8227baf5934c15c45905f7c0a5d19c
DIST lutok-0.6.tar.gz 47380 BLAKE2B 47f371dfa0cdc165398ad74b0d768d90c74c74ec4c7fa6fac747f915a5a35290a1e190950360c38d3f9165dcc1172aed0ababba3a84e33f54d52d83eea096e32 SHA512 b88d932ca151f72e48a0c6f3070418013e24083c142c745e35513406057686333f562e1fc159d5e35ca0e511b79e3c0b5dfd2431d050dc421b1e22283b88865d
diff --git a/dev-lua/lutok/lutok-0.4-r11.ebuild b/dev-lua/lutok/lutok-0.4-r11.ebuild
deleted file mode 100644
index 6a80771ee83f..000000000000
--- a/dev-lua/lutok/lutok-0.4-r11.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2017-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-LUA_COMPAT=( lua5-{1..4} )
-
-inherit lua-single
-
-DESCRIPTION="Lightweight C++ API library for Lua"
-HOMEPAGE="https://github.com/freebsd/lutok"
-SRC_URI="https://github.com/freebsd/lutok/releases/download/${P}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
- test? (
- dev-libs/atf
- dev-util/kyua
- )
-"
-DEPEND="${LUA_DEPS}"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- :
-}
-
-src_configure() {
- # Uses std::auto_ptr (deprecated in c++11, removed in c++17)
- # <https://github.com/jmmv/lutok/issues/7>
- export CXXFLAGS="-std=c++14 ${CXXFLAGS}"
-
- lua_setup
- local myconf=(
- --enable-shared
- --disable-static
- LUA_CFLAGS="$(lua_get_CFLAGS)"
- LUA_LIBS="$(lua_get_LIBS)"
- )
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
- rm -rf "${ED}"/usr/tests || die
- find "${ED}" -name '*.la' -type f -delete || die
-}