lua-stdlib-normalize: add 5.4, properly version

This commit is contained in:
q66 2020-07-01 04:48:02 +02:00
parent 7f8c7a81f9
commit 2ed4c77652
5 changed files with 31 additions and 10 deletions

View file

@ -0,0 +1 @@
lua54-stdlib-normalize

View file

@ -1 +1 @@
lua-stdlib-normalize lua54-stdlib-normalize

View file

@ -1 +1 @@
lua-stdlib-normalize lua54-stdlib-normalize

View file

@ -0,0 +1 @@
lua54-stdlib-normalize

View file

@ -1,11 +1,12 @@
# Template file for 'lua-stdlib-normalize' # Template file for 'lua54-stdlib-normalize'
pkgname=lua-stdlib-normalize pkgname=lua54-stdlib-normalize
version=2.0.3 version=2.0.3
revision=1 revision=2
archs=noarch archs=noarch
wrksrc=normalize-${version} wrksrc=normalize-${version}
depends="lua lua-stdlib-debug" depends="lua54 lua54-stdlib-debug"
short_desc="Collection of normalized Lua functions (Lua 5.3)" _desc="Collection of normalized Lua functions"
short_desc="${_desc} (5.4.x)"
maintainer="Daniel Santana <daniel@santana.tech>" maintainer="Daniel Santana <daniel@santana.tech>"
license="MIT" license="MIT"
homepage="https://lua-stdlib.github.io/normalize/" homepage="https://lua-stdlib.github.io/normalize/"
@ -13,7 +14,7 @@ distfiles="https://github.com/lua-stdlib/normalize/archive/v${version}.tar.gz"
checksum=2038c38da542cf274b0b7512928e5b649c90a34f36c8919fbbbc2524b4ef716d checksum=2038c38da542cf274b0b7512928e5b649c90a34f36c8919fbbbc2524b4ef716d
do_install() { do_install() {
for _lua_version in 5.1 5.2 5.3; do for _lua_version in 5.1 5.2 5.3 5.4; do
vmkdir usr/share/lua/$_lua_version/ vmkdir usr/share/lua/$_lua_version/
vcopy lib/std usr/share/lua/$_lua_version/ vcopy lib/std usr/share/lua/$_lua_version/
done done
@ -25,7 +26,7 @@ do_install() {
lua51-stdlib-normalize_package() { lua51-stdlib-normalize_package() {
depends="lua51 lua51-stdlib-debug" depends="lua51 lua51-stdlib-debug"
short_desc="${short_desc/5.3/5.1}" short_desc="${_desc} (5.1.x)"
pkg_install() { pkg_install() {
vmove usr/share/lua/5.1 vmove usr/share/lua/5.1
vdoc NEWS.md vdoc NEWS.md
@ -37,7 +38,7 @@ lua51-stdlib-normalize_package() {
lua52-stdlib-normalize_package() { lua52-stdlib-normalize_package() {
depends="lua52 lua52-stdlib-debug" depends="lua52 lua52-stdlib-debug"
short_desc="${short_desc/5.3/5.2}" short_desc="${_desc} (5.2.x)"
pkg_install() { pkg_install() {
vmove usr/share/lua/5.2 vmove usr/share/lua/5.2
vdoc NEWS.md vdoc NEWS.md
@ -46,3 +47,21 @@ lua52-stdlib-normalize_package() {
vlicense LICENSE.md vlicense LICENSE.md
} }
} }
lua53-stdlib-normalize_package() {
depends="lua53 lua53-stdlib-debug"
short_desc="${_desc} (5.3.x)"
pkg_install() {
vmove usr/share/lua/5.3
vdoc NEWS.md
vdoc README.md
vdoc AUTHORS.md
vlicense LICENSE.md
}
}
lua-stdlib-normalize_package() {
depends="lua53-stdlib-normalize>=${version}_${revision}"
short_desc+="${_desc} (5.3.x) (transitional dummy package)"
build_style=meta
}