From cf61a35fd7dcd0a5347732a06c62c69dfb28e2f2 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Thu, 6 Jun 2024 17:06:35 +0800 Subject: poke: upgrade 4.0 -> 4.1 Changelog: ============ - Invalid memory access in 'pkl_do_pass_1' has been fixed. - Access to possibly-uninitialized variable in IOS has been fixed. - In error reporting, poke no longer crashes when the input is not seekable. - Use of 'break'/'continue' in EXCOND operator's compound statement has been fixed to not crash the poke. - 'pokefmt' now has a man page. - Execution speed of 'pk-jojopatch' has been improved by disabling auto-remap feature. - Variable 'poke_interactive_p' is now documented in the manual. - Update jitter submodule to incorporate minor documentation update and a workaround for an Automake bug. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/poke/poke_4.0.bb | 33 ------------------------------- meta-oe/recipes-devtools/poke/poke_4.1.bb | 33 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 meta-oe/recipes-devtools/poke/poke_4.0.bb create mode 100644 meta-oe/recipes-devtools/poke/poke_4.1.bb diff --git a/meta-oe/recipes-devtools/poke/poke_4.0.bb b/meta-oe/recipes-devtools/poke/poke_4.0.bb deleted file mode 100644 index 9e68ba4ead..0000000000 --- a/meta-oe/recipes-devtools/poke/poke_4.0.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "GNU poke is an extensible editor for structured binary data" -HOMEPAGE = "https://pokology.org" -DESCRIPTION = "GNU poke is an interactive, extensible editor for binary data. Not limited to editing basic entities such as bits and bytes, it provides a full-fledged procedural, interactive programming language designed to describe data structures and to operate on them." -SECTION = "console/utils" -LICENSE = "GPL-3.0-or-later" -LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" - -SRC_URI = "${GNU_MIRROR}/poke/poke-${PV}.tar.gz \ - file://0003-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch \ - " - -DEPENDS = "flex-native bison-native bdwgc readline" - -SRC_URI[sha256sum] = "02bab22cb1fa6153a1b6a927c8bb3cd58d508543c144842a6d7ee74f19973a77" - -# poke does not support using out-of-tree builds -inherit autotools-brokensep gettext pkgconfig - -# The automatic m4 path detection gets confused, so force the right value from -# the poke bootstrap script. -acpaths = "-I ./m4" - -EXTRA_OECONF = "--disable-gui \ - --disable-libnbd \ - --with-libreadline-prefix=${STAGING_INCDIR} \ - " - -PACKAGECONFIG[mi] = "--enable-mi,--disable-mi,json-c" - -PACKAGES =+ "${PN}-emacs ${PN}-vim" - -FILES:${PN}-emacs += "${datadir}/emacs/site-lisp" -FILES:${PN}-vim += "${datadir}/vim/vimfiles" diff --git a/meta-oe/recipes-devtools/poke/poke_4.1.bb b/meta-oe/recipes-devtools/poke/poke_4.1.bb new file mode 100644 index 0000000000..2963680704 --- /dev/null +++ b/meta-oe/recipes-devtools/poke/poke_4.1.bb @@ -0,0 +1,33 @@ +SUMMARY = "GNU poke is an extensible editor for structured binary data" +HOMEPAGE = "https://pokology.org" +DESCRIPTION = "GNU poke is an interactive, extensible editor for binary data. Not limited to editing basic entities such as bits and bytes, it provides a full-fledged procedural, interactive programming language designed to describe data structures and to operate on them." +SECTION = "console/utils" +LICENSE = "GPL-3.0-or-later" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" + +SRC_URI = "${GNU_MIRROR}/poke/poke-${PV}.tar.gz \ + file://0003-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch \ + " + +DEPENDS = "flex-native bison-native bdwgc readline" + +SRC_URI[sha256sum] = "08ecaea41f7374acd4238e12bbf97e8cd5e572d5917e956b73b9d43026e9d740" + +# poke does not support using out-of-tree builds +inherit autotools-brokensep gettext pkgconfig + +# The automatic m4 path detection gets confused, so force the right value from +# the poke bootstrap script. +acpaths = "-I ./m4" + +EXTRA_OECONF = "--disable-gui \ + --disable-libnbd \ + --with-libreadline-prefix=${STAGING_INCDIR} \ + " + +PACKAGECONFIG[mi] = "--enable-mi,--disable-mi,json-c" + +PACKAGES =+ "${PN}-emacs ${PN}-vim" + +FILES:${PN}-emacs += "${datadir}/emacs/site-lisp" +FILES:${PN}-vim += "${datadir}/vim/vimfiles" -- cgit v1.2.3-54-g00ecf