Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages /
lua-linenoise
Commits:
23b15fe1 by Caleb Maclennan at 2026-01-06T00:04:08+03:00
upgpkg: 0.9-10: Overhaul for Lua 5.5
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = lua-linenoise
pkgdesc = A binding for the linenoise command line library
pkgver = 0.9
- pkgrel = 9
+ pkgrel = 10
url = https://github.com/hoelzro/lua-linenoise
arch = x86_64
license = MIT
@@ -9,6 +9,7 @@ pkgbase = lua-linenoise
makedepends = lua51
makedepends = lua52
makedepends = lua53
+ makedepends = lua54
makedepends = luarocks
source =
lua-linenoise-0.9.tar.gz::https://github.com/hoelzro/lua-linenoise/archive/0.9.tar.gz
sha256sums =
cc1cdb4047edd056a10dcdeec853dbaf5088e2202941d579e4592584d733f09c
@@ -20,3 +21,5 @@ pkgname = lua51-linenoise
pkgname = lua52-linenoise
pkgname = lua53-linenoise
+
+pkgname = lua54-linenoise
=====================================
PKGBUILD
=====================================
@@ -3,9 +3,9 @@
pkgbase=lua-linenoise
_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname"
"lua54-$_rockname")
pkgver=0.9
-pkgrel=9
+pkgrel=10
_rockrel=1
pkgdesc='A binding for the linenoise command line library'
arch=(x86_64)
@@ -15,6 +15,7 @@ makedepends=(lua
lua51
lua52
lua53
+ lua54
luarocks)
_archive="$pkgbase-$pkgver"
_rock="$_rockname-$pkgver-$_rockrel.linux-$CARCH.rock"
@@ -24,7 +25,7 @@
sha256sums=('cc1cdb4047edd056a10dcdeec853dbaf5088e2202941d579e4592584d733f09c')
build() {
cd "$_archive"
- for LUAVER in 5.{1,2,3,4}; do
+ for LUAVER in 5.{1,2,3,4,5}; do
luarocks --lua-version "$LUAVER" \
make --pack-binary-rock --deps-mode none -- "$_rockspec"
install -Dm0644 -t "lua-$LUAVER/" "$_rock"
@@ -40,7 +41,7 @@ _package() {
}
package_lua-linenoise() {
- _package 5.4
+ _package 5.5
}
package_lua51-linenoise() {
@@ -54,3 +55,7 @@ package_lua52-linenoise() {
package_lua53-linenoise() {
_package 5.3
}
+
+package_lua54-linenoise() {
+ _package 5.4
+}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lua-linenoise/-/commit/23b15fe1f3f0f3caed1cf2993c6fee31fdb79253
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/lua-linenoise/-/commit/23b15fe1f3f0f3caed1cf2993c6fee31fdb79253
You're receiving this email because of your account on gitlab.archlinux.org.