Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
lua-alt-getopt
Commits:
ad84abf2 by Antonio Rojas at 2026-03-06T18:20:36+01:00
upgpkg: 0.8.0-3: lua 5.5 rebuild
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = lua-alt-getopt
pkgdesc = Lua module for processing options similar to getopt_long(3)
pkgver = 0.8.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/cheusov/lua-alt-getopt
arch = any
license = MIT
@@ -9,7 +9,7 @@ pkgbase = lua-alt-getopt
sha512sums =
1c0768e98793ee060a8a70bc47355abf5feac3b51d9844a26816267c0901df9f30c9ef3280766dec2c5b754123ca548c8f49cb294bf4f04c378c62ea377e09de
pkgname = lua-alt-getopt
- pkgdesc = Lua module for processing options similar to getopt_long(3)
for Lua 5.4
+ pkgdesc = Lua module for processing options similar to getopt_long(3)
for Lua 5.5
pkgname = lua51-alt-getopt
pkgdesc = Lua module for processing options similar to getopt_long(3)
for Lua 5.1
@@ -19,3 +19,6 @@ pkgname = lua52-alt-getopt
pkgname = lua53-alt-getopt
pkgdesc = Lua module for processing options similar to getopt_long(3)
for Lua 5.3
+
+pkgname = lua54-alt-getopt
+ pkgdesc = Lua module for processing options similar to getopt_long(3)
for Lua 5.4
=====================================
PKGBUILD
=====================================
@@ -3,9 +3,9 @@
# Old Maintainer: Gustavo Alvarez <[email protected]>
# contributor: Cameron Banta <[email protected]>
-pkgname=(lua-alt-getopt lua51-alt-getopt lua52-alt-getopt lua53-alt-getopt)
+pkgname=(lua-alt-getopt lua51-alt-getopt lua52-alt-getopt lua53-alt-getopt
lua54-alt-getopt)
pkgver=0.8.0
-pkgrel=2
+pkgrel=3
pkgdesc="Lua module for processing options similar to getopt_long(3)"
license=('MIT')
arch=('any')
@@ -37,10 +37,18 @@ package_lua53-alt-getopt() {
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
-package_lua-alt-getopt() {
+package_lua54-alt-getopt() {
pkgdesc="$pkgdesc for Lua 5.4"
cd "${pkgbase}-${pkgver}"
install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.4/alt_getopt.lua"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
+
+package_lua-alt-getopt() {
+ pkgdesc="$pkgdesc for Lua 5.5"
+
+ cd "${pkgbase}-${pkgver}"
+ install -Dm644 alt_getopt.lua "${pkgdir}/usr/share/lua/5.5/alt_getopt.lua"
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lua-alt-getopt/-/commit/ad84abf2993a86068be2bd96fb5a742abe92413c
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lua-alt-getopt/-/commit/ad84abf2993a86068be2bd96fb5a742abe92413c
You're receiving this email because of your account on gitlab.archlinux.org.