diff options
| author | Fathi Boudra <fathi.boudra@linaro.org> | 2025-03-18 12:18:36 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-03-18 07:36:56 -0700 |
| commit | 0657f744b87b5c224bb47047a8dbd9ed96463a6a (patch) | |
| tree | b7f4602c6d6a0962f801eb473ad0f0d62253420a | |
| parent | 4b28e6b48fed7fdf9348617ba8a38ce8b18ba19e (diff) | |
| download | meta-openembedded-0657f744b87b5c224bb47047a8dbd9ed96463a6a.tar.gz | |
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>
| -rw-r--r-- | meta-oe/recipes-support/tio/tio_3.8.bb (renamed from meta-oe/recipes-support/tio/tio_2.7.bb) | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta-oe/recipes-support/tio/tio_2.7.bb b/meta-oe/recipes-support/tio/tio_3.8.bb index 59c772b5d0..93c116d984 100644 --- a/meta-oe/recipes-support/tio/tio_2.7.bb +++ b/meta-oe/recipes-support/tio/tio_3.8.bb | |||
| @@ -2,18 +2,17 @@ SUMMARY = "tio - a simple serial device I/O tool" | |||
| 2 | DESCRIPTION = "tio is a simple serial device tool which features a \ | 2 | DESCRIPTION = "tio is a simple serial device tool which features a \ |
| 3 | straightforward command-line and configuration file interface to easily \ | 3 | straightforward command-line and configuration file interface to easily \ |
| 4 | connect to serial TTY devices for basic I/O operations." | 4 | connect to serial TTY devices for basic I/O operations." |
| 5 | |||
| 6 | LICENSE = "GPL-2.0-or-later" | 5 | LICENSE = "GPL-2.0-or-later" |
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0e1a95b7892d3015ecd6d0016f601f2c" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0e1a95b7892d3015ecd6d0016f601f2c" |
| 7 | DEPENDS += " glib-2.0 lua" | ||
| 8 | SRCREV = "01e637cdf4d2d781a87a2fa68e49e7f8fccd0552" | ||
| 8 | 9 | ||
| 9 | SRC_URI = "git://github.com/tio/tio;protocol=https;branch=master" | 10 | SRC_URI = "git://github.com/tio/tio;protocol=https;branch=master" |
| 10 | SRCREV = "1c32555c2a4f26b60f94757656825fc6684d6892" | ||
| 11 | 11 | ||
| 12 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
| 13 | 13 | ||
| 14 | inherit meson pkgconfig | 14 | inherit meson pkgconfig |
| 15 | 15 | ||
| 16 | DEPENDS += " libinih" | 16 | RDEPENDS:${PN} += " lua" |
| 17 | RDEPENDS:${PN} += " libinih" | ||
| 18 | 17 | ||
| 19 | FILES:${PN} += " /usr/share/bash-completion/completions/tio " | 18 | FILES:${PN} += " ${datadir}/bash-completion/completions/tio" |
