mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
25c2aa2773
Changelog:
=============
* Bug fixes
- Handle 'strdup' error correctly in mmap IO device.
- Exclude unnamed fields when traversing struct types. Fixes bug 31836.
- Replace 'strtok' with 'strtok_r' in pkl-ast.
- Fix the compiler to not accept invalid use of 'break'/'continue'
statements.
- Fix the compiler to emit the correct code for valid 'break'/'continue'
statements in more unconventional cases.
- Fix 'iogetb' to always produce a bit offset due to signature of
'iobias' function.
- Fix 'pkl_loc_to_source' to handle compilation from buffer correctly.
- Fix use of 'assert' function in parser.
* Improvements
- Diagnostics for invalid casts has been improved.
- Improve diagnostics of '.ios' command.
* Build system update
- Handle execution errors for 'pokefmt' tests.
* Pickles update
- 'diff_structured' function in 'diff' pickle has been fixed to detect
"simple types" correctly (types that have value semantics instead of
reference semantics).
* Documentation update
- Update reference manual to use '.vm disa' as short name for
'.vm disassemble' instead of '.vm dis'.
* Internal changes
- Internal machinery for compiler builtins has been removed. These were
no longer necessary.
* Jitter update
- Update jitter submodule to incorporate a fix for 'configure' portability
issue on some old systems.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
34 lines
1.3 KiB
BlitzBasic
34 lines
1.3 KiB
BlitzBasic
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] = "8aaf36e61e367a53140ea40e2559e9ec512e779c42bee34e7ac24b34ba119bde"
|
|
|
|
# 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"
|