tio: upgrade 2.7 -> 3.8

* Added LUA support
* Replaced inih dependency by glib:
 All configuration file parsing has been reworked.
 The options parsing has been cleaned up.

 Compared to previously, configuration files now requires any default
 configurations to be put in a group/section named [default].

 Configuration file keywords such as "enable", "disable", "on",
 "off", "yes", "no", "0", "1" have been retired.
 Now only "true" and "false" apply to boolean configuration options.

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Fathi Boudra 2025-03-18 12:18:36 +01:00 committed by Khem Raj
parent 4b28e6b48f
commit 0657f744b8
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -2,18 +2,17 @@ SUMMARY = "tio - a simple serial device I/O tool"
DESCRIPTION = "tio is a simple serial device tool which features a \
straightforward command-line and configuration file interface to easily \
connect to serial TTY devices for basic I/O operations."
LICENSE = "GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=0e1a95b7892d3015ecd6d0016f601f2c"
DEPENDS += " glib-2.0 lua"
SRCREV = "01e637cdf4d2d781a87a2fa68e49e7f8fccd0552"
SRC_URI = "git://github.com/tio/tio;protocol=https;branch=master"
SRCREV = "1c32555c2a4f26b60f94757656825fc6684d6892"
S = "${WORKDIR}/git"
inherit meson pkgconfig
DEPENDS += " libinih"
RDEPENDS:${PN} += " libinih"
RDEPENDS:${PN} += " lua"
FILES:${PN} += " /usr/share/bash-completion/completions/tio "
FILES:${PN} += " ${datadir}/bash-completion/completions/tio"