diff options
author | wangmy <wangmy@fujitsu.com> | 2022-04-25 15:31:12 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-04-25 11:00:43 -0700 |
commit | c4d4e192f48e98a0386980baa415218cb496048f (patch) | |
tree | 673eef32e46a0d50cdec366428e631bcbed18936 /meta-oe/recipes-extended/hexedit/hexedit_1.5.bb | |
parent | f18dd93373b8f271995b5b024666fb971a198338 (diff) | |
download | meta-openembedded-c4d4e192f48e98a0386980baa415218cb496048f.tar.gz |
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 <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/hexedit/hexedit_1.5.bb')
-rw-r--r-- | meta-oe/recipes-extended/hexedit/hexedit_1.5.bb | 20 |
1 files changed, 0 insertions, 20 deletions
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 e99659313..000000000 --- a/meta-oe/recipes-extended/hexedit/hexedit_1.5.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | SUMMARY = "view and edit files in hexadecimal or in ASCII" | ||
2 | HOMEPAGE = "http://rigaux.org/hexedit.html" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "GPL-2.0-or-later" | ||
5 | DEPENDS = "ncurses" | ||
6 | |||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" | ||
8 | |||
9 | SRC_URI = "git://github.com/pixel/hexedit.git;branch=master;protocol=https \ | ||
10 | " | ||
11 | |||
12 | SRCREV = "baf45a289360a39a05253949fb9d1b50e4668d8a" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit autotools-brokensep update-alternatives | ||
17 | |||
18 | ALTERNATIVE:${PN} = "hexedit" | ||
19 | ALTERNATIVE_LINK_NAME[hexedit] = "${bindir}/hexedit" | ||
20 | |||