From c4d4e192f48e98a0386980baa415218cb496048f Mon Sep 17 00:00:00 2001 From: wangmy Date: Mon, 25 Apr 2022 15:31:12 +0800 Subject: hexedit: upgrade 1.5 -> 1.6 april 2022 - 1.6 - configure script must error-out when (n)curses isn't found - Move SIGWINCH handling from handler to NCURSES - Make configure.ac compliant with autoconf >= 2.70 - Check that malloc did not return NULL - Fix a possible memory leak in findFile() - Prevent division by zero on empty files. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-extended/hexedit/hexedit_1.5.bb | 20 -------------------- meta-oe/recipes-extended/hexedit/hexedit_1.6.bb | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 meta-oe/recipes-extended/hexedit/hexedit_1.5.bb create mode 100644 meta-oe/recipes-extended/hexedit/hexedit_1.6.bb diff --git a/meta-oe/recipes-extended/hexedit/hexedit_1.5.bb b/meta-oe/recipes-extended/hexedit/hexedit_1.5.bb deleted file mode 100644 index e996593135..0000000000 --- a/meta-oe/recipes-extended/hexedit/hexedit_1.5.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "view and edit files in hexadecimal or in ASCII" -HOMEPAGE = "http://rigaux.org/hexedit.html" -SECTION = "console/utils" -LICENSE = "GPL-2.0-or-later" -DEPENDS = "ncurses" - -LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" - -SRC_URI = "git://github.com/pixel/hexedit.git;branch=master;protocol=https \ - " - -SRCREV = "baf45a289360a39a05253949fb9d1b50e4668d8a" - -S = "${WORKDIR}/git" - -inherit autotools-brokensep update-alternatives - -ALTERNATIVE:${PN} = "hexedit" -ALTERNATIVE_LINK_NAME[hexedit] = "${bindir}/hexedit" - diff --git a/meta-oe/recipes-extended/hexedit/hexedit_1.6.bb b/meta-oe/recipes-extended/hexedit/hexedit_1.6.bb new file mode 100644 index 0000000000..d2b23b41b4 --- /dev/null +++ b/meta-oe/recipes-extended/hexedit/hexedit_1.6.bb @@ -0,0 +1,20 @@ +SUMMARY = "view and edit files in hexadecimal or in ASCII" +HOMEPAGE = "http://rigaux.org/hexedit.html" +SECTION = "console/utils" +LICENSE = "GPL-2.0-or-later" +DEPENDS = "ncurses" + +LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" + +SRC_URI = "git://github.com/pixel/hexedit.git;branch=master;protocol=https \ + " + +SRCREV = "eab92dcaa34b66bc5182772afc9fda4ac8a27597" + +S = "${WORKDIR}/git" + +inherit autotools-brokensep update-alternatives + +ALTERNATIVE:${PN} = "hexedit" +ALTERNATIVE_LINK_NAME[hexedit] = "${bindir}/hexedit" + -- cgit v1.2.3-54-g00ecf