Files
meta-openembedded/meta-oe/recipes-graphics/libtsm/libtsm_4.5.0.bb
T
Wang Mingyu 6d7794e799 libtsm: upgrade 4.4.3 -> 4.5.0
Changelog:
=============
- Support for terminal bell and keyboard LEDs
- Fix build musl
- test/vte: fix memory leak in vte tests
- Refactor scrollback and selection
- screen: Fix wrong attribute for new cells when resizing
- Fix remove from sb
- Fix get next line
- Fix scrollback position
- test: robustness, make the test faster.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-05-12 01:06:51 -07:00

34 lines
1.2 KiB
BlitzBasic

SUMMARY = "Terminal Emulator State Machine"
DESCRIPTION = "\
TSM is a state machine for DEC VT100-VT520 compatible terminal emulators. \
It tries to support all common standards while keeping compatibility to \
existing emulators like xterm, gnome-terminal, konsole, etc. \
TSM itself does not provide any rendering nor window management. It is a \
simple plain state machine without any external dependencies. It can be \
used to implement terminal emulators, but also to implement other \
applications that need to interpret terminal escape sequences. \
"
HOMEPAGE = "https://github.com/kmscon/libtsm"
BUGTRACKER = "https://github.com/kmscon/libtsm/issues"
CVE_PRODUCT = "libtsm"
SECTION = "libs"
LICENSE = "MIT & LGPL-2.1-or-later"
LIC_FILES_CHKSUM = "\
file://COPYING;md5=69e8256cdc4e949f86fedf94b1b320b4 \
file://LICENSE_htable;md5=2d5025d4aa3495befef8f17206a5b0a1 \
"
DEPENDS = "xkeyboard-config"
SRC_URI = "git://github.com/kmscon/libtsm;protocol=https;branch=main;tag=v${PV}"
SRCREV = "556373437d1c5f57f4dfc7c6cc1330e5088a4174"
inherit meson pkgconfig
EXTRA_OEMESON:append = " \
-Dextra_debug=false \
-Dtests=false \
-Dgtktsm=false \
"