summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/pocketpy
Commit message (Collapse)AuthorAgeFilesLines
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-251-1/+0
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.5 -> 2.0.6Wang Mingyu2025-03-111-1/+1
| | | | | | | | | | | | | | Changelog: ========= - add pybind11 implementation for module reload - Improve memory managements (mem-v2) - implement array2d.chunked_array2d[T, TContext] - Add test cases for array2d.chunked_array2d - Refactor Frame struct - [lz4] Make lz4 a submodule. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.4 -> 2.0.5Wang Mingyu2025-01-241-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ============ - use cpython % and // impl - add colorcvt module - add py_importlib_reload and importlib module - add py_interrupt and set single handler for REPL - add PK_LOW_MEMORY_MODE - reduce type's memory cost - allow customize malloc, realloc and free - make C99 compilers work - fix win32 clang build - avoid undefined behavior signed int overflow - fix pybind11 implementation for error_already_set Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: Add pic options to cflagsKhem Raj2025-01-071-0/+2
| | | | | | | | | Ensures that PIC is always used to build Fixes error: relocation R_386_PC32 cannot be used against symbol 'LZ4_compress_fast_extState'; recompile with -fPIC Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.3 -> 2.0.4Wang Mingyu2025-01-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: update to version 2.0.3Michael Fitzmayer2024-12-081-1/+1
| | | | | | | | | | | | | - Fix some type annotation usage e.g. int | None. - Fix some builtins hash functions - Fix a severe bug of dict - Clean up #defines - Improve array2d - Fix a bug of super - Fix a bug of context manager Signed-off-by: Michael Fitzmayer <mail@michael-fitzmayer.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Add recipe: pocketpy 2.0.2Michael Fitzmayer2024-11-211-0/+32
pocketpy is a portable Python 3.x Interpreter in Modern C. It aims to be an alternative to lua for game scripting, with elegant syntax, powerful features and competitive performance. pkpy is extremely easy to embed via a single header file pocketpy.h, without external dependencies. Signed-off-by: Michael Fitzmayer <mail@michael-fitzmayer.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>