forked from pool/micropython
Merge pull request 'v1.25.0 -> leap-16.0' (#1) from dheidler/micropython:leap-16.0 into leap-16.0
Reviewed-on: pool/micropython#1
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
From e73cf71a246ee456aac0f4d16167e0856846db6b Mon Sep 17 00:00:00 2001
|
||||
From: Alessandro Gatti <a.gatti@frob.it>
|
||||
Date: Sat, 4 Jan 2025 15:00:28 +0100
|
||||
Subject: [PATCH] tests/extmod/re_sub.py: Fix test execution on Python 3.13.
|
||||
|
||||
This commit fixes a test failure for `extmod/re_sub.py` where the code,
|
||||
whilst being correct, would not make the test pass due to a newer
|
||||
Python version than expected.
|
||||
|
||||
On Python 3.13, running `tests/extmod/re_sub.py` would yield a
|
||||
deprecation warning about `re.sub` not providing the match count as a
|
||||
keyword parameter. This warning would be embedded in the expected test
|
||||
result and thus the test would always fail.
|
||||
|
||||
Co-authored-by: stijn <stijn@ignitron.net>
|
||||
Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
|
||||
---
|
||||
tests/extmod/re_sub.py | 8 +++++++-
|
||||
1 file changed, 7 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/tests/extmod/re_sub.py b/tests/extmod/re_sub.py
|
||||
index 2c7c6c10f1a49..ecaa66d83d8a7 100644
|
||||
--- a/tests/extmod/re_sub.py
|
||||
+++ b/tests/extmod/re_sub.py
|
||||
@@ -10,6 +10,8 @@
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
+import sys
|
||||
+
|
||||
|
||||
def multiply(m):
|
||||
return str(int(m.group(0)) * 2)
|
||||
@@ -47,7 +49,11 @@ def A():
|
||||
print(re.sub("a", "b", "c"))
|
||||
|
||||
# with maximum substitution count specified
|
||||
-print(re.sub("a", "b", "1a2a3a", 2))
|
||||
+if sys.implementation.name != "micropython":
|
||||
+ # On CPython 3.13 and later the substitution count must be a keyword argument.
|
||||
+ print(re.sub("a", "b", "1a2a3a", count=2))
|
||||
+else:
|
||||
+ print(re.sub("a", "b", "1a2a3a", 2))
|
||||
|
||||
# invalid group
|
||||
try:
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d624a0b23389134d963b204601db9bc4ca57bfb615d13f13592bc2b5b494c03
|
||||
size 86842340
|
||||
BIN
micropython-1.25.0.tar.xz
LFS
Normal file
BIN
micropython-1.25.0.tar.xz
LFS
Normal file
Binary file not shown.
231
micropython-gcc15-string-initialization.patch
Normal file
231
micropython-gcc15-string-initialization.patch
Normal file
@@ -0,0 +1,231 @@
|
||||
From 531d4839d44a90447c232d51d1bee0cae45add9a Mon Sep 17 00:00:00 2001
|
||||
From: Angus Gratton <angus@redyak.com.au>
|
||||
Date: Fri, 9 May 2025 13:34:37 +1000
|
||||
Subject: [PATCH 1/3] extmod/moductypes: Refactor string literal as array
|
||||
initializer.
|
||||
|
||||
Avoids the new Wunterminated-string-literal when compiled with gcc 15.1.
|
||||
|
||||
Also split out the duplicate string to a top-level array (probably the
|
||||
duplicate string literal was interned, so unlikely to have any impact.)
|
||||
|
||||
This work was funded through GitHub Sponsors.
|
||||
|
||||
Signed-off-by: Angus Gratton <angus@redyak.com.au>
|
||||
---
|
||||
extmod/moductypes.c | 7 +++++--
|
||||
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/extmod/moductypes.c b/extmod/moductypes.c
|
||||
index bf45797658fa0..54abce79e06fe 100644
|
||||
--- a/extmod/moductypes.c
|
||||
+++ b/extmod/moductypes.c
|
||||
@@ -277,15 +277,18 @@ static mp_obj_t uctypes_struct_sizeof(size_t n_args, const mp_obj_t *args) {
|
||||
}
|
||||
static MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(uctypes_struct_sizeof_obj, 1, 2, uctypes_struct_sizeof);
|
||||
|
||||
+static const char type2char[16] = {
|
||||
+ 'B', 'b', 'H', 'h', 'I', 'i', 'Q', 'q',
|
||||
+ '-', '-', '-', '-', '-', '-', 'f', 'd'
|
||||
+};
|
||||
+
|
||||
static inline mp_obj_t get_unaligned(uint val_type, byte *p, int big_endian) {
|
||||
char struct_type = big_endian ? '>' : '<';
|
||||
- static const char type2char[16] = "BbHhIiQq------fd";
|
||||
return mp_binary_get_val(struct_type, type2char[val_type], p, &p);
|
||||
}
|
||||
|
||||
static inline void set_unaligned(uint val_type, byte *p, int big_endian, mp_obj_t val) {
|
||||
char struct_type = big_endian ? '>' : '<';
|
||||
- static const char type2char[16] = "BbHhIiQq------fd";
|
||||
mp_binary_set_val(struct_type, type2char[val_type], val, p, &p);
|
||||
}
|
||||
|
||||
|
||||
From 0398873d8c8096d2054db130efd1fcecba2a426d Mon Sep 17 00:00:00 2001
|
||||
From: Angus Gratton <angus@redyak.com.au>
|
||||
Date: Fri, 9 May 2025 13:36:05 +1000
|
||||
Subject: [PATCH 2/3] py/emitinlinethumb: Refactor string literal as array
|
||||
initializer.
|
||||
|
||||
Avoids the new Wunterminated-string-literal when compiled with gcc 15.1.
|
||||
|
||||
This work was funded through GitHub Sponsors.
|
||||
|
||||
Signed-off-by: Angus Gratton <angus@redyak.com.au>
|
||||
---
|
||||
py/emitinlinethumb.c | 108 +++++++++++++++++++++----------------------
|
||||
1 file changed, 54 insertions(+), 54 deletions(-)
|
||||
|
||||
diff --git a/py/emitinlinethumb.c b/py/emitinlinethumb.c
|
||||
index 7818bb4f46da8..d6596337ae5a6 100644
|
||||
--- a/py/emitinlinethumb.c
|
||||
+++ b/py/emitinlinethumb.c
|
||||
@@ -150,27 +150,27 @@ typedef struct _reg_name_t { byte reg;
|
||||
byte name[3];
|
||||
} reg_name_t;
|
||||
static const reg_name_t reg_name_table[] = {
|
||||
- {0, "r0\0"},
|
||||
- {1, "r1\0"},
|
||||
- {2, "r2\0"},
|
||||
- {3, "r3\0"},
|
||||
- {4, "r4\0"},
|
||||
- {5, "r5\0"},
|
||||
- {6, "r6\0"},
|
||||
- {7, "r7\0"},
|
||||
- {8, "r8\0"},
|
||||
- {9, "r9\0"},
|
||||
- {10, "r10"},
|
||||
- {11, "r11"},
|
||||
- {12, "r12"},
|
||||
- {13, "r13"},
|
||||
- {14, "r14"},
|
||||
- {15, "r15"},
|
||||
- {10, "sl\0"},
|
||||
- {11, "fp\0"},
|
||||
- {13, "sp\0"},
|
||||
- {14, "lr\0"},
|
||||
- {15, "pc\0"},
|
||||
+ {0, {'r', '0' }},
|
||||
+ {1, {'r', '1' }},
|
||||
+ {2, {'r', '2' }},
|
||||
+ {3, {'r', '3' }},
|
||||
+ {4, {'r', '4' }},
|
||||
+ {5, {'r', '5' }},
|
||||
+ {6, {'r', '6' }},
|
||||
+ {7, {'r', '7' }},
|
||||
+ {8, {'r', '8' }},
|
||||
+ {9, {'r', '9' }},
|
||||
+ {10, {'r', '1', '0' }},
|
||||
+ {11, {'r', '1', '1' }},
|
||||
+ {12, {'r', '1', '2' }},
|
||||
+ {13, {'r', '1', '3' }},
|
||||
+ {14, {'r', '1', '4' }},
|
||||
+ {15, {'r', '1', '5' }},
|
||||
+ {10, {'s', 'l' }},
|
||||
+ {11, {'f', 'p' }},
|
||||
+ {13, {'s', 'p' }},
|
||||
+ {14, {'l', 'r' }},
|
||||
+ {15, {'p', 'c' }},
|
||||
};
|
||||
|
||||
#define MAX_SPECIAL_REGISTER_NAME_LENGTH 7
|
||||
@@ -368,20 +368,20 @@ typedef struct _cc_name_t { byte cc;
|
||||
byte name[2];
|
||||
} cc_name_t;
|
||||
static const cc_name_t cc_name_table[] = {
|
||||
- { ASM_THUMB_CC_EQ, "eq" },
|
||||
- { ASM_THUMB_CC_NE, "ne" },
|
||||
- { ASM_THUMB_CC_CS, "cs" },
|
||||
- { ASM_THUMB_CC_CC, "cc" },
|
||||
- { ASM_THUMB_CC_MI, "mi" },
|
||||
- { ASM_THUMB_CC_PL, "pl" },
|
||||
- { ASM_THUMB_CC_VS, "vs" },
|
||||
- { ASM_THUMB_CC_VC, "vc" },
|
||||
- { ASM_THUMB_CC_HI, "hi" },
|
||||
- { ASM_THUMB_CC_LS, "ls" },
|
||||
- { ASM_THUMB_CC_GE, "ge" },
|
||||
- { ASM_THUMB_CC_LT, "lt" },
|
||||
- { ASM_THUMB_CC_GT, "gt" },
|
||||
- { ASM_THUMB_CC_LE, "le" },
|
||||
+ { ASM_THUMB_CC_EQ, { 'e', 'q' }},
|
||||
+ { ASM_THUMB_CC_NE, { 'n', 'e' }},
|
||||
+ { ASM_THUMB_CC_CS, { 'c', 's' }},
|
||||
+ { ASM_THUMB_CC_CC, { 'c', 'c' }},
|
||||
+ { ASM_THUMB_CC_MI, { 'm', 'i' }},
|
||||
+ { ASM_THUMB_CC_PL, { 'p', 'l' }},
|
||||
+ { ASM_THUMB_CC_VS, { 'v', 's' }},
|
||||
+ { ASM_THUMB_CC_VC, { 'v', 'c' }},
|
||||
+ { ASM_THUMB_CC_HI, { 'h', 'i' }},
|
||||
+ { ASM_THUMB_CC_LS, { 'l', 's' }},
|
||||
+ { ASM_THUMB_CC_GE, { 'g', 'e' }},
|
||||
+ { ASM_THUMB_CC_LT, { 'l', 't' }},
|
||||
+ { ASM_THUMB_CC_GT, { 'g', 't' }},
|
||||
+ { ASM_THUMB_CC_LE, { 'l', 'e' }},
|
||||
};
|
||||
|
||||
typedef struct _format_4_op_t { byte op;
|
||||
@@ -389,21 +389,21 @@ typedef struct _format_4_op_t { byte op;
|
||||
} format_4_op_t;
|
||||
#define X(x) (((x) >> 4) & 0xff) // only need 1 byte to distinguish these ops
|
||||
static const format_4_op_t format_4_op_table[] = {
|
||||
- { X(ASM_THUMB_FORMAT_4_EOR), "eor" },
|
||||
- { X(ASM_THUMB_FORMAT_4_LSL), "lsl" },
|
||||
- { X(ASM_THUMB_FORMAT_4_LSR), "lsr" },
|
||||
- { X(ASM_THUMB_FORMAT_4_ASR), "asr" },
|
||||
- { X(ASM_THUMB_FORMAT_4_ADC), "adc" },
|
||||
- { X(ASM_THUMB_FORMAT_4_SBC), "sbc" },
|
||||
- { X(ASM_THUMB_FORMAT_4_ROR), "ror" },
|
||||
- { X(ASM_THUMB_FORMAT_4_TST), "tst" },
|
||||
- { X(ASM_THUMB_FORMAT_4_NEG), "neg" },
|
||||
- { X(ASM_THUMB_FORMAT_4_CMP), "cmp" },
|
||||
- { X(ASM_THUMB_FORMAT_4_CMN), "cmn" },
|
||||
- { X(ASM_THUMB_FORMAT_4_ORR), "orr" },
|
||||
- { X(ASM_THUMB_FORMAT_4_MUL), "mul" },
|
||||
- { X(ASM_THUMB_FORMAT_4_BIC), "bic" },
|
||||
- { X(ASM_THUMB_FORMAT_4_MVN), "mvn" },
|
||||
+ { X(ASM_THUMB_FORMAT_4_EOR), {'e', 'o', 'r' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_LSL), {'l', 's', 'l' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_LSR), {'l', 's', 'r' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_ASR), {'a', 's', 'r' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_ADC), {'a', 'd', 'c' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_SBC), {'s', 'b', 'c' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_ROR), {'r', 'o', 'r' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_TST), {'t', 's', 't' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_NEG), {'n', 'e', 'g' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_CMP), {'c', 'm', 'p' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_CMN), {'c', 'm', 'n' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_ORR), {'o', 'r', 'r' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_MUL), {'m', 'u', 'l' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_BIC), {'b', 'i', 'c' }},
|
||||
+ { X(ASM_THUMB_FORMAT_4_MVN), {'m', 'v', 'n' }},
|
||||
};
|
||||
#undef X
|
||||
|
||||
@@ -428,10 +428,10 @@ typedef struct _format_vfp_op_t {
|
||||
char name[3];
|
||||
} format_vfp_op_t;
|
||||
static const format_vfp_op_t format_vfp_op_table[] = {
|
||||
- { 0x30, "add" },
|
||||
- { 0x34, "sub" },
|
||||
- { 0x20, "mul" },
|
||||
- { 0x80, "div" },
|
||||
+ { 0x30, {'a', 'd', 'd' }},
|
||||
+ { 0x34, {'s', 'u', 'b' }},
|
||||
+ { 0x20, {'m', 'u', 'l' }},
|
||||
+ { 0x80, {'d', 'i', 'v' }},
|
||||
};
|
||||
|
||||
// shorthand alias for whether we allow ARMv7-M instructions
|
||||
|
||||
From bfd5a0350a0d53f52695d373dae6ee367971b145 Mon Sep 17 00:00:00 2001
|
||||
From: Angus Gratton <angus@redyak.com.au>
|
||||
Date: Fri, 9 May 2025 14:34:09 +1000
|
||||
Subject: [PATCH 3/3] lib/littlefs: Fix string initializer in lfs1.c.
|
||||
|
||||
Avoids the new Wunterminated-string-literal when compiled with gcc 15.1.
|
||||
|
||||
It would be preferable to just disable this warning, but Clang
|
||||
-Wunknown-warning-option kicks in even when disabling warnings so this
|
||||
becomes fiddly to apply.
|
||||
|
||||
This work was funded through GitHub Sponsors.
|
||||
|
||||
Signed-off-by: Angus Gratton <angus@redyak.com.au>
|
||||
---
|
||||
lib/littlefs/lfs1.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/littlefs/lfs1.c b/lib/littlefs/lfs1.c
|
||||
index 6a3fd670012cc..ec18dc470258c 100644
|
||||
--- a/lib/littlefs/lfs1.c
|
||||
+++ b/lib/littlefs/lfs1.c
|
||||
@@ -2141,7 +2141,7 @@ int lfs1_format(lfs1_t *lfs1, const struct lfs1_config *cfg) {
|
||||
.d.elen = sizeof(superblock.d) - sizeof(superblock.d.magic) - 4,
|
||||
.d.nlen = sizeof(superblock.d.magic),
|
||||
.d.version = LFS1_DISK_VERSION,
|
||||
- .d.magic = {"littlefs"},
|
||||
+ .d.magic = {'l', 'i', 't', 't', 'l', 'e', 'f', 's'},
|
||||
.d.block_size = lfs1->cfg->block_size,
|
||||
.d.block_count = lfs1->cfg->block_count,
|
||||
.d.root = {lfs1->root[0], lfs1->root[1]},
|
||||
@@ -1,3 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 10 20:22:14 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Add micropython-gcc15-string-initialization.patch: Refactor
|
||||
string literal as array initializer
|
||||
(gh#micropython/micropython#17269).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 26 11:53:07 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||
|
||||
- Add script to delete some 3rd party libraries from the src tar
|
||||
that are not needed to build the unix port in order to
|
||||
make the legal review easier
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 16 11:59:42 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||
|
||||
- Update to 1.25.0
|
||||
* Add ROMFS support (see also "mpremote romfs" cmd with "query", "build", and "deploy" sub-commands)
|
||||
ROMFS defines a read-only, memory-mappable, extensible filesystem that can contain arbitrary resources,
|
||||
including precompiled mpy files, and allows executing bytecode directly from the filesystem.
|
||||
This makes importing significantly faster and use a lot less memory.
|
||||
* Inline assembler now supports 32-bit RISC-V assembly code via the newly implemented @micropython.asm_rv32 decorator.
|
||||
* Datagram TLS (DTLS) is now supported by the tls module and enabled on the alif, mimxrt, renesas-ra, rp2, stm32 and unix ports.
|
||||
* mpremote command-line tool now supports recursive remove via the new "rm -r"
|
||||
* mpremote now supports relative URLs in the package.json for installing from the local filesystem
|
||||
* "mpremote mount" has optimised readline support
|
||||
* full support for tuples and start/end arguments in str.startswith() and str.endswith() methods
|
||||
* vfs.mount() with no arguments now returns a list of mounted filesystems
|
||||
* marshal module has been added with dumps() and loads() functions
|
||||
* MicroPython native linker mpy_ld.py now includes support for linking in static libraries automatically
|
||||
* native modules now support 32-bit RISC-V code
|
||||
* force _FILE_OFFSET_BITS=64 to fix 32-bit file ABI
|
||||
* enable VfsRom on standard and coverage variants
|
||||
* use the bare metal mbedTLS config in the coverage buiid
|
||||
* add recursive mutex support
|
||||
* main: add coverage test for mounting ROMFS filesystem at startup
|
||||
- Drop fix_re_sub_test_on_python3.13.patch as not needed anymore
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 17 12:24:36 UTC 2025 - Dominik Heidler <dheidler@suse.de>
|
||||
|
||||
|
||||
@@ -20,13 +20,15 @@
|
||||
%{?sle15_python_module_pythons}
|
||||
|
||||
Name: micropython
|
||||
Version: 1.24.1
|
||||
Version: 1.25.0
|
||||
Release: 0
|
||||
Summary: Implementation of Python 3 with very low memory footprint
|
||||
License: MIT
|
||||
URL: https://micropython.org/
|
||||
Source: https://micropython.org/resources/source/%{name}-%{version}.tar.xz
|
||||
Patch1: fix_re_sub_test_on_python3.13.patch
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source1: prepare.sh
|
||||
# PATCH-FIX-UPSTREAM
|
||||
Patch0: https://patch-diff.githubusercontent.com/raw/micropython/micropython/pull/17269.patch#/micropython-gcc15-string-initialization.patch
|
||||
BuildRequires: openssl
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3
|
||||
|
||||
36
prepare.sh
Normal file
36
prepare.sh
Normal file
@@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
|
||||
# this removes some 3rd party libraries from the src tar that are not needed to build the unix port
|
||||
# in order to make the legal review easier
|
||||
|
||||
set -e
|
||||
|
||||
version=$(rpmspec --query micropython.spec | head -1 | cut -d- -f2)
|
||||
|
||||
rm -fv micropython-*.tar.xz
|
||||
wget "https://micropython.org/resources/source/micropython-${version}.tar.xz" -O "micropython-${version}.tar.xz"
|
||||
tar xf "micropython-${version}.tar.xz"
|
||||
pushd "micropython-${version}"
|
||||
rm -rv "lib/fsp"
|
||||
rm -rv "lib/alif-security-toolkit"
|
||||
rm -rv "lib/alif_ensemble-cmsis-dfp"
|
||||
rm -rv "lib/asf4"
|
||||
rm -rv "lib/cyw43-driver"
|
||||
rm -rv "lib/axtls"
|
||||
rm -rv "lib/tinyusb"
|
||||
rm -rv "lib/stm32lib"
|
||||
rm -rv "lib/btstack"
|
||||
rm -rv "lib/pico-sdk"
|
||||
rm -rv "lib/nrfx"
|
||||
rm -rv "lib/lwip"
|
||||
rm -rv "lib/libffi"
|
||||
rm -rv "lib/protobuf-c"
|
||||
rm -rv "lib/nxp_driver"
|
||||
rm -rv "lib/arduino-lib"
|
||||
rm -rv "lib/mynewt-nimble"
|
||||
pushd "ports"
|
||||
find . -maxdepth 1 -type d | grep -v unix | grep -v esp | grep -v rp2 | grep -v minimal | grep -v qemu | grep -v webassembly | xargs rm -rv || :
|
||||
popd
|
||||
popd
|
||||
tar caf "micropython-${version}.tar.xz" "micropython-${version}"
|
||||
rm -r "micropython-${version}"
|
||||
Reference in New Issue
Block a user