From 44a8e18e48781db7e871b68fcf330e161a545631 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 24 Oct 2023 07:50:34 +0800 Subject: tio: upgrade 2.6 -> 2.7 Changelog: ========== * Add xmodem and ymodem file send support * tty_stdin_input_thread(): write to pipe only if byte_count > 0. * Ignore EINTR error. * CYGWIN: Add support for "COM*" naming. * chore: reorder log-strip and log-append * chore: update readme, bash completion, man page * fix: support --log-append in cli options Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj (cherry picked from commit f13c31afb38cd99e33cc933704d5948fdd1e0347) Signed-off-by: Armin Kuster --- meta-oe/recipes-support/tio/tio_2.6.bb | 19 ------------------- meta-oe/recipes-support/tio/tio_2.7.bb | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 meta-oe/recipes-support/tio/tio_2.6.bb create mode 100644 meta-oe/recipes-support/tio/tio_2.7.bb diff --git a/meta-oe/recipes-support/tio/tio_2.6.bb b/meta-oe/recipes-support/tio/tio_2.6.bb deleted file mode 100644 index faef290737..0000000000 --- a/meta-oe/recipes-support/tio/tio_2.6.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 = "88ef473362c5a1ff0dcd389fd5b1d4d6bf202472" - -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.7.bb b/meta-oe/recipes-support/tio/tio_2.7.bb new file mode 100644 index 0000000000..59c772b5d0 --- /dev/null +++ b/meta-oe/recipes-support/tio/tio_2.7.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;branch=master" +SRCREV = "1c32555c2a4f26b60f94757656825fc6684d6892" + +S = "${WORKDIR}/git" + +inherit meson pkgconfig + +DEPENDS += " libinih" +RDEPENDS:${PN} += " libinih" + +FILES:${PN} += " /usr/share/bash-completion/completions/tio " -- cgit v1.2.3-54-g00ecf