From 9356340655b3a4f87f98be88f2d167bb2514a54c Mon Sep 17 00:00:00 2001 From: Richard Tollerton Date: Fri, 13 Sep 2024 12:29:58 -0500 Subject: tmux: Upgrade to 3.4 Changes vs 3.3a are located at https://raw.githubusercontent.com/tmux/tmux/3.4/CHANGES. However, the most pressing reason to upgrade is that tmux crashes on copy, see https://github.com/tmux/tmux/issues/3699. tmux's config parser was rewritten to use yacc, which necessitates DEPENDS += bison-native. drop md5sum Signed-off-by: Rich Tollerton Signed-off-by: Khem Raj --- meta-oe/recipes-extended/tmux/tmux_3.3a.bb | 26 -------------------------- meta-oe/recipes-extended/tmux/tmux_3.4.bb | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 26 deletions(-) delete mode 100644 meta-oe/recipes-extended/tmux/tmux_3.3a.bb create mode 100644 meta-oe/recipes-extended/tmux/tmux_3.4.bb diff --git a/meta-oe/recipes-extended/tmux/tmux_3.3a.bb b/meta-oe/recipes-extended/tmux/tmux_3.3a.bb deleted file mode 100644 index 099a9ab581..0000000000 --- a/meta-oe/recipes-extended/tmux/tmux_3.3a.bb +++ /dev/null @@ -1,26 +0,0 @@ -SUMMARY = "Terminal multiplexer" -HOMEPAGE = "http://tmux.sourceforge.net" -SECTION = "console/utils" - -LICENSE = "ISC" -LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" - -DEPENDS = "ncurses libevent" - -SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" -SRC_URI[md5sum] = "8eee5883b9f6550fa4efaad0c9ec38f3" -SRC_URI[sha256sum] = "e4fd347843bd0772c4f48d6dde625b0b109b7a380ff15db21e97c11a4dcdf93f" - -UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" -UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)" - -inherit autotools pkgconfig - -PACKAGECONFIG ??= "" -PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," - -do_configure:prepend() { - # The 'compat' directory is needed for output during the build but it's - # not automatically created when building outside the source directory. - mkdir -p ${B}/compat -} diff --git a/meta-oe/recipes-extended/tmux/tmux_3.4.bb b/meta-oe/recipes-extended/tmux/tmux_3.4.bb new file mode 100644 index 0000000000..4360edf4ba --- /dev/null +++ b/meta-oe/recipes-extended/tmux/tmux_3.4.bb @@ -0,0 +1,25 @@ +SUMMARY = "Terminal multiplexer" +HOMEPAGE = "http://tmux.sourceforge.net" +SECTION = "console/utils" + +LICENSE = "ISC" +LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf19144bdaca107" + +DEPENDS = "ncurses libevent bison-native" + +SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" +SRC_URI[sha256sum] = "551ab8dea0bf505c0ad6b7bb35ef567cdde0ccb84357df142c254f35a23e19aa" + +UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" +UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)" + +inherit autotools pkgconfig + +PACKAGECONFIG ??= "" +PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter," + +do_configure:prepend() { + # The 'compat' directory is needed for output during the build but it's + # not automatically created when building outside the source directory. + mkdir -p ${B}/compat +} -- cgit v1.2.3-54-g00ecf