From 0ffa4bc5aff14d735dcf7eaaeb752f0aa20a2035 Mon Sep 17 00:00:00 2001 From: Michael Fitzmayer Date: Sun, 8 Dec 2024 22:21:40 +0100 Subject: pocketpy: update to version 2.0.3 - 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 Signed-off-by: Khem Raj --- .../recipes-devtools/pocketpy/pocketpy_2.0.2.bb | 32 ---------------------- .../recipes-devtools/pocketpy/pocketpy_2.0.3.bb | 32 ++++++++++++++++++++++ 2 files changed, 32 insertions(+), 32 deletions(-) delete mode 100644 meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.2.bb create mode 100644 meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.3.bb diff --git a/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.2.bb b/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.2.bb deleted file mode 100644 index 28ac67d8d6..0000000000 --- a/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.2.bb +++ /dev/null @@ -1,32 +0,0 @@ -SUMMARY = "A Portable Python 3.x Interpreter in Modern C." -DESCRIPTION = "pkpy is a lightweight(~15K LOC) Python 3.x \ - interpreter for game scripting, written in C11. \ - 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. \ - " -HOMEPAGE = "https://pocketpy.dev/" -BUGTRACKER = "https://github.com/pocketpy/pocketpy/issues" - -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=8cdfa87bc5e09bc07f8cf64135026d91" - -SRC_URI = "git://github.com/pocketpy/pocketpy.git;protocol=https;branch=main" -SRCREV = "b5a443efa11e7d6576025d1b9a397ead9e9260c9" - -S = "${WORKDIR}/git" - -inherit cmake - -do_install() { - install -d ${D}${libdir} - install -m 0644 ${B}/libpocketpy.so ${D}${libdir}/ - install -d ${D}${includedir}/pocketpy - cp -r ${S}/include/* ${D}${includedir}/pocketpy/ -} - -FILES:${PN} = "${libdir}/libpocketpy.so" -FILES:${PN}-dev = "${includedir}/pocketpy" -FILES:${PN}-dbg += "${libdir}/.debug/libpocketpy.so" diff --git a/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.3.bb b/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.3.bb new file mode 100644 index 0000000000..2c0ecf0e60 --- /dev/null +++ b/meta-oe/recipes-devtools/pocketpy/pocketpy_2.0.3.bb @@ -0,0 +1,32 @@ +SUMMARY = "A Portable Python 3.x Interpreter in Modern C." +DESCRIPTION = "pkpy is a lightweight(~15K LOC) Python 3.x \ + interpreter for game scripting, written in C11. \ + 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. \ + " +HOMEPAGE = "https://pocketpy.dev/" +BUGTRACKER = "https://github.com/pocketpy/pocketpy/issues" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=8cdfa87bc5e09bc07f8cf64135026d91" + +SRC_URI = "git://github.com/pocketpy/pocketpy.git;protocol=https;branch=main" +SRCREV = "3be557f95dbc706716b9a9947e41c1f2db92e251" + +S = "${WORKDIR}/git" + +inherit cmake + +do_install() { + install -d ${D}${libdir} + install -m 0644 ${B}/libpocketpy.so ${D}${libdir}/ + install -d ${D}${includedir}/pocketpy + cp -r ${S}/include/* ${D}${includedir}/pocketpy/ +} + +FILES:${PN} = "${libdir}/libpocketpy.so" +FILES:${PN}-dev = "${includedir}/pocketpy" +FILES:${PN}-dbg += "${libdir}/.debug/libpocketpy.so" -- cgit v1.2.3-54-g00ecf