From 0657f744b87b5c224bb47047a8dbd9ed96463a6a Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Tue, 18 Mar 2025 12:18:36 +0100 Subject: 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 Signed-off-by: Khem Raj --- meta-oe/recipes-support/tio/tio_2.7.bb | 19 ------------------- meta-oe/recipes-support/tio/tio_3.8.bb | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 19 deletions(-) delete mode 100644 meta-oe/recipes-support/tio/tio_2.7.bb create mode 100644 meta-oe/recipes-support/tio/tio_3.8.bb diff --git a/meta-oe/recipes-support/tio/tio_2.7.bb b/meta-oe/recipes-support/tio/tio_2.7.bb deleted file mode 100644 index 59c772b5d0..0000000000 --- a/meta-oe/recipes-support/tio/tio_2.7.bb +++ /dev/null @@ -1,19 +0,0 @@ -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" - -SRC_URI = "git://github.com/tio/tio;protocol=https;branch=master" -SRCREV = "1c32555c2a4f26b60f94757656825fc6684d6892" - -S = "${WORKDIR}/git" - -inherit meson pkgconfig - -DEPENDS += " libinih" -RDEPENDS:${PN} += " libinih" - -FILES:${PN} += " /usr/share/bash-completion/completions/tio " diff --git a/meta-oe/recipes-support/tio/tio_3.8.bb b/meta-oe/recipes-support/tio/tio_3.8.bb new file mode 100644 index 0000000000..93c116d984 --- /dev/null +++ b/meta-oe/recipes-support/tio/tio_3.8.bb @@ -0,0 +1,18 @@ +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" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig + +RDEPENDS:${PN} += " lua" + +FILES:${PN} += " ${datadir}/bash-completion/completions/tio" -- cgit v1.2.3-54-g00ecf