From 2352915607f05621b00f9fa659e329dd80902656 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 13 Jun 2023 09:40:22 +0800 Subject: tio: upgrade 2.5 -> 2.6 Changelog: ========== * Remove warning when using pattern option * Add --log-append option * Update man page * Update README * Fix line termination for response wait feature * Update tty device listing configuration * Move map variables to tty to keep them all in one spot * Configure socket mapping flags from tty parsing logic. Remove duplicate parsing logic in socket * Support input mapping modes for sockets * Various spelling fixes * avoid "warning: unused parameter" on setspeed stub * use right /dev/ path on Haiku * Update README with details on snap confinement Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-support/tio/tio_2.5.bb | 19 ------------------- meta-oe/recipes-support/tio/tio_2.6.bb | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 meta-oe/recipes-support/tio/tio_2.5.bb create mode 100644 meta-oe/recipes-support/tio/tio_2.6.bb diff --git a/meta-oe/recipes-support/tio/tio_2.5.bb b/meta-oe/recipes-support/tio/tio_2.5.bb deleted file mode 100644 index 1f69e1a9e0..0000000000 --- a/meta-oe/recipes-support/tio/tio_2.5.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;nobranch=1" -SRCREV = "a2bbab068428275febeea13906654b9e58400c95" - -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_2.6.bb b/meta-oe/recipes-support/tio/tio_2.6.bb new file mode 100644 index 0000000000..1a83a2e420 --- /dev/null +++ b/meta-oe/recipes-support/tio/tio_2.6.bb @@ -0,0 +1,19 @@ +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;nobranch=1" +SRCREV = "88ef473362c5a1ff0dcd389fd5b1d4d6bf202472" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig + +DEPENDS += " libinih" +RDEPENDS:${PN} += " libinih" + +FILES:${PN} += " /usr/share/bash-completion/completions/tio " -- cgit 1.2.3-korg