Files
gentoo/dev-lua/luajson/luajson-1.3.4-r1.ebuild
Sam James adab4b0ceb dev-lua/luajson: fix compat w/ >=dev-lua/lpeg-1.1.0
(Linked the 2nd bug as Vitaly seems to have cited it.)

Bug: https://github.com/harningt/luajson/issues/47
Bug: https://github.com/harningt/luajson/issues/51
Signed-off-by: Sam James <sam@gentoo.org>
2025-10-05 03:07:27 +01:00

42 lines
891 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{1..4} luajit )
inherit lua
DESCRIPTION="JSON Parser/Constructor for Lua"
HOMEPAGE="https://www.eharning.us/wiki/luajson/"
SRC_URI="https://github.com/harningt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RDEPEND="dev-lua/lpeg[${LUA_USEDEP}]"
# Require lunitx, which is not in the tree yet
RESTRICT="test"
DOCS=( README.md docs/ReleaseNotes-${PV}.txt docs/LuaJSON.txt )
PATCHES=(
"${FILESDIR}"/${PN}-1.3.4-lpeg-1.1.patch
)
# nothing to compile
src_compile() { :; }
lua_src_install() {
emake DESTDIR="${ED}" INSTALL_LMOD="$(lua_get_lmod_dir)" install
}
src_install() {
lua_foreach_impl lua_src_install
einstalldocs
}